R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.

When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

summary(cars)
##      speed           dist       
##  Min.   : 4.0   Min.   :  2.00  
##  1st Qu.:12.0   1st Qu.: 26.00  
##  Median :15.0   Median : 36.00  
##  Mean   :15.4   Mean   : 42.98  
##  3rd Qu.:19.0   3rd Qu.: 56.00  
##  Max.   :25.0   Max.   :120.00

Including Plots

You can also embed plots, for example:

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.

#1. Merge the datasets Customers, Product Hierarchy and Transactions as Customer_Final. Ensure to keep all customers who have done transactions with us and select the join type accordingly. a. Use the base merge() b. Dplyr merge functions

setwd("F:\\Analytix_Labs\\R for Data Science\\R Case Studies\\R - Retail Case study\\R case study 1 (Retail)")
getwd()
## [1] "F:/Analytix_Labs/R for Data Science/R Case Studies/R - Retail Case study/R case study 1 (Retail)"
prod_cat_info <- read.csv("prod_cat_info.csv")
Transactions <- read.csv("Transactions.csv")
Customer <- read.csv("Customer.csv")
head(prod_cat_info)
head(Transactions)
head(Customer)
prod1 <- merge.data.frame(x = Transactions,y = prod_cat_info,by.x ="prod_subcat_code",by.y ="prod_cat_code")

is.null(prod1)
## [1] FALSE
unique(prod1)
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
prod1 %>% distinct()
Customer_Final <- merge.data.frame(x = prod1,y = Customer,by.x = "cust_id",by.y = "customer_Id")


library(dplyr)


prod2<- left_join(x = Transactions,y = prod_cat_info,by=c("prod_subcat_code"="prod_cat_code"))

prod2%>% distinct()
sum(is.na(prod2))
## [1] 30240
Customer_Final2<- left_join(x = prod2,y = Customer,by=c("cust_id"="customer_Id"))

#2. Prepare a summary report for the merged data set. #a. Get the column names and their corresponding data types

str(Customer_Final)
## 'data.frame':    44914 obs. of  16 variables:
##  $ cust_id          : int  266783 266783 266783 266783 266783 266783 266783 266783 266783 266783 ...
##  $ prod_subcat_code : int  1 1 4 1 1 4 1 4 4 1 ...
##  $ transaction_id   : num  2.59e+10 2.59e+10 9.85e+10 2.59e+10 2.59e+10 ...
##  $ tran_date        : chr  "24-09-2011" "23-09-2011" "21-10-2012" "24-09-2011" ...
##  $ prod_cat_code    : int  2 2 1 2 2 1 2 1 1 2 ...
##  $ Qty              : int  -4 4 3 -4 -4 1 4 3 1 4 ...
##  $ Rate             : int  -1321 1321 93 -1321 -1321 869 1321 93 869 1321 ...
##  $ Tax              : num  554.8 554.8 29.3 554.8 554.8 ...
##  $ total_amt        : num  -5839 5839 308 -5839 -5839 ...
##  $ Store_type       : chr  "e-Shop" "e-Shop" "TeleShop" "e-Shop" ...
##  $ prod_cat         : chr  "Clothing" "Clothing" "Bags" "Clothing" ...
##  $ prod_sub_cat_code: int  4 4 1 1 3 4 3 4 1 1 ...
##  $ prod_subcat      : chr  "Mens" "Mens" "Mens" "Women" ...
##  $ DOB              : chr  "01-05-1974" "01-05-1974" "01-05-1974" "01-05-1974" ...
##  $ Gender           : chr  "M" "M" "M" "M" ...
##  $ city_code        : int  4 4 4 4 4 4 4 4 4 4 ...

#b. Top/Bottom 10 observations

head(Customer_Final)
tail(Customer_Final)

#c. “Five-number summary” for continuous variables (min, Q1, median, Q3 and max)

str(Customer_Final)
## 'data.frame':    44914 obs. of  16 variables:
##  $ cust_id          : int  266783 266783 266783 266783 266783 266783 266783 266783 266783 266783 ...
##  $ prod_subcat_code : int  1 1 4 1 1 4 1 4 4 1 ...
##  $ transaction_id   : num  2.59e+10 2.59e+10 9.85e+10 2.59e+10 2.59e+10 ...
##  $ tran_date        : chr  "24-09-2011" "23-09-2011" "21-10-2012" "24-09-2011" ...
##  $ prod_cat_code    : int  2 2 1 2 2 1 2 1 1 2 ...
##  $ Qty              : int  -4 4 3 -4 -4 1 4 3 1 4 ...
##  $ Rate             : int  -1321 1321 93 -1321 -1321 869 1321 93 869 1321 ...
##  $ Tax              : num  554.8 554.8 29.3 554.8 554.8 ...
##  $ total_amt        : num  -5839 5839 308 -5839 -5839 ...
##  $ Store_type       : chr  "e-Shop" "e-Shop" "TeleShop" "e-Shop" ...
##  $ prod_cat         : chr  "Clothing" "Clothing" "Bags" "Clothing" ...
##  $ prod_sub_cat_code: int  4 4 1 1 3 4 3 4 1 1 ...
##  $ prod_subcat      : chr  "Mens" "Mens" "Mens" "Women" ...
##  $ DOB              : chr  "01-05-1974" "01-05-1974" "01-05-1974" "01-05-1974" ...
##  $ Gender           : chr  "M" "M" "M" "M" ...
##  $ city_code        : int  4 4 4 4 4 4 4 4 4 4 ...
info1 <- Customer_Final[,c(1,2,3,5,6,7,8,9)]
summary(info1)
##     cust_id       prod_subcat_code transaction_id      prod_cat_code  
##  Min.   :266783   Min.   :1.000    Min.   :1.086e+07   Min.   :1.000  
##  1st Qu.:268901   1st Qu.:2.000    1st Qu.:2.449e+10   1st Qu.:2.000  
##  Median :270968   Median :3.000    Median :5.046e+10   Median :3.000  
##  Mean   :271003   Mean   :3.237    Mean   :5.015e+10   Mean   :3.054  
##  3rd Qu.:273119   3rd Qu.:4.000    3rd Qu.:7.597e+10   3rd Qu.:5.000  
##  Max.   :275265   Max.   :6.000    Max.   :9.999e+10   Max.   :6.000  
##       Qty             Rate              Tax           total_amt      
##  Min.   :-5.00   Min.   :-1499.0   Min.   :  7.35   Min.   :-8270.9  
##  1st Qu.: 1.00   1st Qu.:  315.0   1st Qu.: 99.44   1st Qu.:  764.7  
##  Median : 3.00   Median :  712.0   Median :199.08   Median : 1741.5  
##  Mean   : 2.42   Mean   :  637.6   Mean   :248.92   Mean   : 2096.3  
##  3rd Qu.: 4.00   3rd Qu.: 1116.0   3rd Qu.:366.66   3rd Qu.: 3552.6  
##  Max.   : 5.00   Max.   : 1500.0   Max.   :787.50   Max.   : 8287.5

#d. Frequency tables for all the categorical variables

class(Customer_Final)
## [1] "data.frame"
as.data.frame(Customer_Final)
sapply(Customer_Final, class)
##           cust_id  prod_subcat_code    transaction_id         tran_date 
##         "integer"         "integer"         "numeric"       "character" 
##     prod_cat_code               Qty              Rate               Tax 
##         "integer"         "integer"         "integer"         "numeric" 
##         total_amt        Store_type          prod_cat prod_sub_cat_code 
##         "numeric"       "character"       "character"         "integer" 
##       prod_subcat               DOB            Gender         city_code 
##       "character"       "character"       "character"         "integer"
str(Customer_Final)
## 'data.frame':    44914 obs. of  16 variables:
##  $ cust_id          : int  266783 266783 266783 266783 266783 266783 266783 266783 266783 266783 ...
##  $ prod_subcat_code : int  1 1 4 1 1 4 1 4 4 1 ...
##  $ transaction_id   : num  2.59e+10 2.59e+10 9.85e+10 2.59e+10 2.59e+10 ...
##  $ tran_date        : chr  "24-09-2011" "23-09-2011" "21-10-2012" "24-09-2011" ...
##  $ prod_cat_code    : int  2 2 1 2 2 1 2 1 1 2 ...
##  $ Qty              : int  -4 4 3 -4 -4 1 4 3 1 4 ...
##  $ Rate             : int  -1321 1321 93 -1321 -1321 869 1321 93 869 1321 ...
##  $ Tax              : num  554.8 554.8 29.3 554.8 554.8 ...
##  $ total_amt        : num  -5839 5839 308 -5839 -5839 ...
##  $ Store_type       : chr  "e-Shop" "e-Shop" "TeleShop" "e-Shop" ...
##  $ prod_cat         : chr  "Clothing" "Clothing" "Bags" "Clothing" ...
##  $ prod_sub_cat_code: int  4 4 1 1 3 4 3 4 1 1 ...
##  $ prod_subcat      : chr  "Mens" "Mens" "Mens" "Women" ...
##  $ DOB              : chr  "01-05-1974" "01-05-1974" "01-05-1974" "01-05-1974" ...
##  $ Gender           : chr  "M" "M" "M" "M" ...
##  $ city_code        : int  4 4 4 4 4 4 4 4 4 4 ...
sapply(Customer_Final, is.factor)
##           cust_id  prod_subcat_code    transaction_id         tran_date 
##             FALSE             FALSE             FALSE             FALSE 
##     prod_cat_code               Qty              Rate               Tax 
##             FALSE             FALSE             FALSE             FALSE 
##         total_amt        Store_type          prod_cat prod_sub_cat_code 
##             FALSE             FALSE             FALSE             FALSE 
##       prod_subcat               DOB            Gender         city_code 
##             FALSE             FALSE             FALSE             FALSE
as.factor(Customer_Final$Store_type)
##     [1] e-Shop         e-Shop         TeleShop       e-Shop        
##     [5] e-Shop         e-Shop         e-Shop         TeleShop      
##     [9] e-Shop         e-Shop         Flagship store Flagship store
##    [13] Flagship store Flagship store e-Shop         TeleShop      
##    [17] TeleShop       Flagship store Flagship store e-Shop        
##    [21] TeleShop       Flagship store TeleShop       Flagship store
##    [25] TeleShop       e-Shop         e-Shop         e-Shop        
##    [29] e-Shop         e-Shop         MBR            MBR           
##    [33] MBR            e-Shop         e-Shop         e-Shop        
##    [37] e-Shop         e-Shop         MBR            e-Shop        
##    [41] MBR            e-Shop         e-Shop         MBR           
##    [45] e-Shop         MBR            e-Shop         e-Shop        
##    [49] e-Shop         MBR            e-Shop         e-Shop        
##    [53] MBR            e-Shop         e-Shop         e-Shop        
##    [57] MBR            e-Shop         Flagship store Flagship store
##    [61] Flagship store Flagship store Flagship store Flagship store
##    [65] e-Shop         e-Shop         e-Shop         e-Shop        
##    [69] e-Shop         e-Shop         e-Shop         e-Shop        
##    [73] e-Shop         e-Shop         Flagship store e-Shop        
##    [77] Flagship store e-Shop         Flagship store Flagship store
##    [81] e-Shop         e-Shop         Flagship store e-Shop        
##    [85] Flagship store Flagship store e-Shop         e-Shop        
##    [89] Flagship store MBR            e-Shop         TeleShop      
##    [93] MBR            e-Shop         e-Shop         MBR           
##    [97] e-Shop         TeleShop       MBR            MBR           
##   [101] e-Shop         TeleShop       TeleShop       TeleShop      
##   [105] e-Shop         e-Shop         e-Shop         e-Shop        
##   [109] Flagship store Flagship store Flagship store e-Shop        
##   [113] e-Shop         e-Shop         e-Shop         e-Shop        
##   [117] e-Shop         Flagship store e-Shop         e-Shop        
##   [121] Flagship store Flagship store MBR            e-Shop        
##   [125] MBR            e-Shop         MBR            MBR           
##   [129] MBR            MBR            e-Shop         MBR           
##   [133] MBR            e-Shop         MBR            Flagship store
##   [137] Flagship store Flagship store Flagship store Flagship store
##   [141] e-Shop         Flagship store e-Shop         e-Shop        
##   [145] e-Shop         e-Shop         e-Shop         Flagship store
##   [149] e-Shop         e-Shop         e-Shop         Flagship store
##   [153] Flagship store Flagship store Flagship store Flagship store
##   [157] MBR            MBR            MBR            MBR           
##   [161] MBR            MBR            MBR            MBR           
##   [165] MBR            MBR            TeleShop       Flagship store
##   [169] Flagship store Flagship store Flagship store TeleShop      
##   [173] TeleShop       e-Shop         Flagship store Flagship store
##   [177] Flagship store e-Shop         Flagship store MBR           
##   [181] MBR            e-Shop         e-Shop         e-Shop        
##   [185] e-Shop         e-Shop         e-Shop         e-Shop        
##   [189] MBR            MBR            e-Shop         MBR           
##   [193] e-Shop         MBR            e-Shop         MBR           
##   [197] MBR            e-Shop         e-Shop         MBR           
##   [201] e-Shop         MBR            MBR            MBR           
##   [205] e-Shop         TeleShop       TeleShop       TeleShop      
##   [209] TeleShop       e-Shop         e-Shop         e-Shop        
##   [213] e-Shop         e-Shop         TeleShop       e-Shop        
##   [217] e-Shop         e-Shop         e-Shop         e-Shop        
##   [221] e-Shop         e-Shop         e-Shop         MBR           
##   [225] e-Shop         e-Shop         MBR            e-Shop        
##   [229] e-Shop         e-Shop         e-Shop         Flagship store
##   [233] Flagship store Flagship store Flagship store Flagship store
##   [237] Flagship store Flagship store e-Shop         e-Shop        
##   [241] Flagship store Flagship store MBR            e-Shop        
##   [245] MBR            e-Shop         e-Shop         Flagship store
##   [249] Flagship store Flagship store e-Shop         TeleShop      
##   [253] Flagship store e-Shop         Flagship store TeleShop      
##   [257] Flagship store TeleShop       e-Shop         TeleShop      
##   [261] TeleShop       e-Shop         TeleShop       e-Shop        
##   [265] TeleShop       e-Shop         TeleShop       e-Shop        
##   [269] TeleShop       e-Shop         e-Shop         e-Shop        
##   [273] Flagship store TeleShop       Flagship store Flagship store
##   [277] TeleShop       Flagship store TeleShop       Flagship store
##   [281] e-Shop         e-Shop         e-Shop         e-Shop        
##   [285] e-Shop         MBR            e-Shop         e-Shop        
##   [289] e-Shop         e-Shop         e-Shop         e-Shop        
##   [293] MBR            e-Shop         MBR            e-Shop        
##   [297] MBR            e-Shop         MBR            MBR           
##   [301] MBR            MBR            MBR            MBR           
##   [305] e-Shop         e-Shop         e-Shop         e-Shop        
##   [309] e-Shop         e-Shop         Flagship store Flagship store
##   [313] e-Shop         Flagship store Flagship store e-Shop        
##   [317] e-Shop         e-Shop         e-Shop         e-Shop        
##   [321] e-Shop         e-Shop         e-Shop         e-Shop        
##   [325] Flagship store e-Shop         Flagship store MBR           
##   [329] e-Shop         Flagship store Flagship store MBR           
##   [333] Flagship store Flagship store MBR            Flagship store
##   [337] e-Shop         MBR            MBR            e-Shop        
##   [341] MBR            MBR            MBR            e-Shop        
##   [345] MBR            MBR            MBR            TeleShop      
##   [349] e-Shop         TeleShop       TeleShop       TeleShop      
##   [353] TeleShop       TeleShop       e-Shop         e-Shop        
##   [357] e-Shop         e-Shop         TeleShop       TeleShop      
##   [361] TeleShop       TeleShop       TeleShop       Flagship store
##   [365] Flagship store Flagship store Flagship store TeleShop      
##   [369] TeleShop       TeleShop       TeleShop       Flagship store
##   [373] Flagship store Flagship store TeleShop       Flagship store
##   [377] Flagship store Flagship store MBR            MBR           
##   [381] MBR            MBR            e-Shop         Flagship store
##   [385] e-Shop         e-Shop         e-Shop         e-Shop        
##   [389] Flagship store Flagship store Flagship store Flagship store
##   [393] e-Shop         e-Shop         e-Shop         e-Shop        
##   [397] e-Shop         e-Shop         e-Shop         e-Shop        
##   [401] e-Shop         e-Shop         TeleShop       TeleShop      
##   [405] e-Shop         TeleShop       e-Shop         e-Shop        
##   [409] e-Shop         MBR            e-Shop         e-Shop        
##   [413] e-Shop         e-Shop         e-Shop         MBR           
##   [417] e-Shop         Flagship store e-Shop         Flagship store
##   [421] e-Shop         Flagship store e-Shop         e-Shop        
##   [425] e-Shop         MBR            MBR            MBR           
##   [429] e-Shop         e-Shop         e-Shop         e-Shop        
##   [433] e-Shop         TeleShop       e-Shop         TeleShop      
##   [437] e-Shop         e-Shop         e-Shop         TeleShop      
##   [441] TeleShop       e-Shop         e-Shop         e-Shop        
##   [445] e-Shop         e-Shop         e-Shop         MBR           
##   [449] MBR            MBR            TeleShop       TeleShop      
##   [453] TeleShop       TeleShop       TeleShop       MBR           
##   [457] TeleShop       MBR            TeleShop       TeleShop      
##   [461] TeleShop       MBR            TeleShop       MBR           
##   [465] MBR            TeleShop       TeleShop       TeleShop      
##   [469] MBR            MBR            TeleShop       MBR           
##   [473] Flagship store Flagship store Flagship store e-Shop        
##   [477] Flagship store e-Shop         e-Shop         e-Shop        
##   [481] Flagship store MBR            Flagship store Flagship store
##   [485] Flagship store Flagship store MBR            Flagship store
##   [489] Flagship store Flagship store e-Shop         Flagship store
##   [493] MBR            e-Shop         Flagship store Flagship store
##   [497] Flagship store Flagship store MBR            Flagship store
##   [501] Flagship store Flagship store MBR            e-Shop        
##   [505] MBR            TeleShop       MBR            MBR           
##   [509] MBR            MBR            MBR            TeleShop      
##   [513] Flagship store Flagship store Flagship store e-Shop        
##   [517] e-Shop         TeleShop       TeleShop       MBR           
##   [521] Flagship store TeleShop       MBR            TeleShop      
##   [525] Flagship store MBR            TeleShop       MBR           
##   [529] MBR            e-Shop         e-Shop         e-Shop        
##   [533] e-Shop         e-Shop         e-Shop         e-Shop        
##   [537] e-Shop         TeleShop       MBR            TeleShop      
##   [541] MBR            TeleShop       TeleShop       TeleShop      
##   [545] e-Shop         TeleShop       e-Shop         TeleShop      
##   [549] e-Shop         e-Shop         Flagship store MBR           
##   [553] Flagship store Flagship store Flagship store e-Shop        
##   [557] MBR            Flagship store Flagship store Flagship store
##   [561] Flagship store e-Shop         MBR            Flagship store
##   [565] MBR            MBR            MBR            TeleShop      
##   [569] TeleShop       TeleShop       TeleShop       TeleShop      
##   [573] TeleShop       TeleShop       TeleShop       TeleShop      
##   [577] TeleShop       e-Shop         e-Shop         e-Shop        
##   [581] Flagship store e-Shop         e-Shop         e-Shop        
##   [585] Flagship store e-Shop         Flagship store e-Shop        
##   [589] Flagship store e-Shop         e-Shop         e-Shop        
##   [593] e-Shop         Flagship store e-Shop         e-Shop        
##   [597] Flagship store Flagship store Flagship store MBR           
##   [601] e-Shop         e-Shop         Flagship store MBR           
##   [605] MBR            Flagship store e-Shop         e-Shop        
##   [609] e-Shop         Flagship store MBR            Flagship store
##   [613] MBR            MBR            MBR            MBR           
##   [617] Flagship store Flagship store Flagship store Flagship store
##   [621] Flagship store Flagship store Flagship store MBR           
##   [625] MBR            Flagship store TeleShop       TeleShop      
##   [629] e-Shop         Flagship store e-Shop         e-Shop        
##   [633] TeleShop       TeleShop       Flagship store TeleShop      
##   [637] TeleShop       MBR            MBR            MBR           
##   [641] MBR            e-Shop         MBR            TeleShop      
##   [645] e-Shop         MBR            e-Shop         TeleShop      
##   [649] TeleShop       MBR            e-Shop         TeleShop      
##   [653] TeleShop       TeleShop       e-Shop         e-Shop        
##   [657] Flagship store Flagship store TeleShop       e-Shop        
##   [661] TeleShop       Flagship store TeleShop       Flagship store
##   [665] Flagship store Flagship store TeleShop       Flagship store
##   [669] Flagship store e-Shop         Flagship store e-Shop        
##   [673] TeleShop       TeleShop       TeleShop       TeleShop      
##   [677] TeleShop       TeleShop       e-Shop         e-Shop        
##   [681] e-Shop         TeleShop       TeleShop       TeleShop      
##   [685] e-Shop         TeleShop       TeleShop       TeleShop      
##   [689] TeleShop       e-Shop         TeleShop       TeleShop      
##   [693] e-Shop         e-Shop         TeleShop       TeleShop      
##   [697] e-Shop         e-Shop         e-Shop         e-Shop        
##   [701] e-Shop         e-Shop         e-Shop         e-Shop        
##   [705] e-Shop         e-Shop         e-Shop         e-Shop        
##   [709] e-Shop         e-Shop         e-Shop         e-Shop        
##   [713] MBR            MBR            e-Shop         MBR           
##   [717] e-Shop         TeleShop       e-Shop         e-Shop        
##   [721] e-Shop         MBR            TeleShop       MBR           
##   [725] e-Shop         MBR            TeleShop       TeleShop      
##   [729] Flagship store TeleShop       e-Shop         Flagship store
##   [733] TeleShop       TeleShop       TeleShop       e-Shop        
##   [737] MBR            MBR            MBR            e-Shop        
##   [741] e-Shop         MBR            MBR            e-Shop        
##   [745] MBR            e-Shop         e-Shop         MBR           
##   [749] MBR            MBR            e-Shop         e-Shop        
##   [753] e-Shop         e-Shop         e-Shop         MBR           
##   [757] MBR            Flagship store Flagship store MBR           
##   [761] Flagship store Flagship store e-Shop         MBR           
##   [765] MBR            Flagship store e-Shop         Flagship store
##   [769] Flagship store Flagship store e-Shop         e-Shop        
##   [773] e-Shop         e-Shop         e-Shop         e-Shop        
##   [777] e-Shop         e-Shop         e-Shop         e-Shop        
##   [781] e-Shop         e-Shop         Flagship store Flagship store
##   [785] e-Shop         Flagship store Flagship store e-Shop        
##   [789] e-Shop         Flagship store Flagship store Flagship store
##   [793] Flagship store Flagship store Flagship store Flagship store
##   [797] e-Shop         Flagship store Flagship store e-Shop        
##   [801] e-Shop         e-Shop         e-Shop         e-Shop        
##   [805] e-Shop         e-Shop         MBR            TeleShop      
##   [809] TeleShop       e-Shop         e-Shop         MBR           
##   [813] e-Shop         TeleShop       TeleShop       TeleShop      
##   [817] e-Shop         e-Shop         TeleShop       MBR           
##   [821] e-Shop         e-Shop         e-Shop         e-Shop        
##   [825] e-Shop         e-Shop         e-Shop         e-Shop        
##   [829] e-Shop         e-Shop         e-Shop         e-Shop        
##   [833] Flagship store e-Shop         e-Shop         Flagship store
##   [837] Flagship store e-Shop         Flagship store e-Shop        
##   [841] e-Shop         e-Shop         e-Shop         e-Shop        
##   [845] e-Shop         e-Shop         e-Shop         e-Shop        
##   [849] e-Shop         e-Shop         e-Shop         e-Shop        
##   [853] e-Shop         e-Shop         e-Shop         e-Shop        
##   [857] e-Shop         TeleShop       TeleShop       Flagship store
##   [861] Flagship store e-Shop         TeleShop       TeleShop      
##   [865] e-Shop         e-Shop         TeleShop       e-Shop        
##   [869] e-Shop         e-Shop         TeleShop       e-Shop        
##   [873] TeleShop       TeleShop       TeleShop       e-Shop        
##   [877] e-Shop         e-Shop         e-Shop         e-Shop        
##   [881] e-Shop         e-Shop         MBR            e-Shop        
##   [885] e-Shop         e-Shop         e-Shop         TeleShop      
##   [889] e-Shop         e-Shop         MBR            e-Shop        
##   [893] MBR            e-Shop         TeleShop       MBR           
##   [897] e-Shop         e-Shop         TeleShop       TeleShop      
##   [901] MBR            TeleShop       MBR            TeleShop      
##   [905] e-Shop         Flagship store Flagship store e-Shop        
##   [909] e-Shop         e-Shop         e-Shop         e-Shop        
##   [913] e-Shop         Flagship store Flagship store e-Shop        
##   [917] e-Shop         e-Shop         MBR            e-Shop        
##   [921] MBR            e-Shop         MBR            e-Shop        
##   [925] MBR            e-Shop         e-Shop         e-Shop        
##   [929] e-Shop         e-Shop         e-Shop         e-Shop        
##   [933] e-Shop         TeleShop       e-Shop         TeleShop      
##   [937] TeleShop       e-Shop         TeleShop       e-Shop        
##   [941] e-Shop         e-Shop         MBR            MBR           
##   [945] e-Shop         e-Shop         MBR            MBR           
##   [949] MBR            e-Shop         MBR            MBR           
##   [953] MBR            MBR            MBR            e-Shop        
##   [957] e-Shop         e-Shop         MBR            MBR           
##   [961] MBR            MBR            e-Shop         e-Shop        
##   [965] e-Shop         e-Shop         e-Shop         e-Shop        
##   [969] Flagship store Flagship store Flagship store Flagship store
##   [973] Flagship store Flagship store Flagship store Flagship store
##   [977] Flagship store Flagship store e-Shop         e-Shop        
##   [981] e-Shop         e-Shop         e-Shop         e-Shop        
##   [985] e-Shop         e-Shop         e-Shop         e-Shop        
##   [989] e-Shop         e-Shop         e-Shop         e-Shop        
##   [993] e-Shop         TeleShop       TeleShop       TeleShop      
##   [997] TeleShop       TeleShop       e-Shop         MBR           
##  [1001] MBR            MBR            e-Shop         Flagship store
##  [1005] MBR            Flagship store Flagship store MBR           
##  [1009] MBR            TeleShop       TeleShop       TeleShop      
##  [1013] e-Shop         e-Shop         e-Shop         MBR           
##  [1017] e-Shop         e-Shop         MBR            e-Shop        
##  [1021] e-Shop         MBR            MBR            MBR           
##  [1025] e-Shop         e-Shop         e-Shop         MBR           
##  [1029] MBR            TeleShop       e-Shop         TeleShop      
##  [1033] e-Shop         e-Shop         e-Shop         TeleShop      
##  [1037] e-Shop         e-Shop         Flagship store e-Shop        
##  [1041] Flagship store MBR            Flagship store Flagship store
##  [1045] Flagship store TeleShop       MBR            Flagship store
##  [1049] Flagship store Flagship store Flagship store Flagship store
##  [1053] TeleShop       Flagship store TeleShop       Flagship store
##  [1057] Flagship store Flagship store Flagship store Flagship store
##  [1061] Flagship store Flagship store Flagship store Flagship store
##  [1065] Flagship store TeleShop       e-Shop         TeleShop      
##  [1069] TeleShop       TeleShop       e-Shop         e-Shop        
##  [1073] TeleShop       e-Shop         e-Shop         TeleShop      
##  [1077] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1081] e-Shop         e-Shop         e-Shop         Flagship store
##  [1085] Flagship store Flagship store Flagship store e-Shop        
##  [1089] Flagship store Flagship store Flagship store MBR           
##  [1093] MBR            Flagship store MBR            MBR           
##  [1097] MBR            Flagship store Flagship store Flagship store
##  [1101] TeleShop       TeleShop       MBR            TeleShop      
##  [1105] TeleShop       MBR            MBR            e-Shop        
##  [1109] e-Shop         TeleShop       TeleShop       TeleShop      
##  [1113] TeleShop       TeleShop       TeleShop       MBR           
##  [1117] TeleShop       MBR            TeleShop       TeleShop      
##  [1121] TeleShop       TeleShop       TeleShop       MBR           
##  [1125] MBR            MBR            TeleShop       MBR           
##  [1129] TeleShop       MBR            MBR            TeleShop      
##  [1133] Flagship store Flagship store MBR            MBR           
##  [1137] MBR            MBR            MBR            TeleShop      
##  [1141] MBR            MBR            MBR            MBR           
##  [1145] MBR            MBR            MBR            TeleShop      
##  [1149] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1153] TeleShop       MBR            MBR            TeleShop      
##  [1157] Flagship store Flagship store Flagship store MBR           
##  [1161] Flagship store Flagship store MBR            MBR           
##  [1165] MBR            MBR            MBR            MBR           
##  [1169] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1173] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1177] TeleShop       TeleShop       e-Shop         TeleShop      
##  [1181] e-Shop         TeleShop       TeleShop       e-Shop        
##  [1185] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1189] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1193] TeleShop       e-Shop         e-Shop         TeleShop      
##  [1197] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1201] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1205] e-Shop         TeleShop       TeleShop       TeleShop      
##  [1209] TeleShop       TeleShop       e-Shop         MBR           
##  [1213] e-Shop         e-Shop         MBR            e-Shop        
##  [1217] e-Shop         e-Shop         e-Shop         MBR           
##  [1221] Flagship store e-Shop         MBR            MBR           
##  [1225] MBR            e-Shop         Flagship store e-Shop        
##  [1229] e-Shop         e-Shop         MBR            Flagship store
##  [1233] Flagship store Flagship store MBR            MBR           
##  [1237] MBR            Flagship store MBR            Flagship store
##  [1241] MBR            MBR            MBR            TeleShop      
##  [1245] Flagship store TeleShop       Flagship store TeleShop      
##  [1249] TeleShop       Flagship store MBR            MBR           
##  [1253] TeleShop       Flagship store Flagship store Flagship store
##  [1257] Flagship store e-Shop         e-Shop         e-Shop        
##  [1261] MBR            e-Shop         MBR            e-Shop        
##  [1265] TeleShop       e-Shop         e-Shop         e-Shop        
##  [1269] TeleShop       e-Shop         TeleShop       e-Shop        
##  [1273] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1277] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1281] Flagship store TeleShop       Flagship store e-Shop        
##  [1285] TeleShop       Flagship store e-Shop         e-Shop        
##  [1289] Flagship store Flagship store e-Shop         e-Shop        
##  [1293] e-Shop         TeleShop       e-Shop         TeleShop      
##  [1297] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1301] TeleShop       TeleShop       e-Shop         MBR           
##  [1305] Flagship store TeleShop       e-Shop         Flagship store
##  [1309] e-Shop         e-Shop         e-Shop         MBR           
##  [1313] Flagship store TeleShop       TeleShop       e-Shop        
##  [1317] Flagship store e-Shop         Flagship store TeleShop      
##  [1321] TeleShop       e-Shop         TeleShop       TeleShop      
##  [1325] Flagship store e-Shop         e-Shop         e-Shop        
##  [1329] e-Shop         e-Shop         Flagship store TeleShop      
##  [1333] TeleShop       e-Shop         TeleShop       e-Shop        
##  [1337] e-Shop         MBR            e-Shop         TeleShop      
##  [1341] TeleShop       MBR            e-Shop         TeleShop      
##  [1345] TeleShop       e-Shop         MBR            MBR           
##  [1349] MBR            e-Shop         MBR            e-Shop        
##  [1353] MBR            e-Shop         MBR            e-Shop        
##  [1357] Flagship store e-Shop         Flagship store Flagship store
##  [1361] e-Shop         Flagship store e-Shop         e-Shop        
##  [1365] Flagship store Flagship store e-Shop         e-Shop        
##  [1369] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1373] MBR            Flagship store Flagship store e-Shop        
##  [1377] Flagship store e-Shop         e-Shop         MBR           
##  [1381] e-Shop         e-Shop         MBR            MBR           
##  [1385] MBR            MBR            TeleShop       TeleShop      
##  [1389] e-Shop         e-Shop         TeleShop       TeleShop      
##  [1393] TeleShop       e-Shop         e-Shop         TeleShop      
##  [1397] e-Shop         MBR            e-Shop         MBR           
##  [1401] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1405] MBR            MBR            e-Shop         e-Shop        
##  [1409] TeleShop       e-Shop         TeleShop       e-Shop        
##  [1413] e-Shop         e-Shop         e-Shop         TeleShop      
##  [1417] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1421] e-Shop         Flagship store Flagship store e-Shop        
##  [1425] e-Shop         e-Shop         Flagship store e-Shop        
##  [1429] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1433] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1437] e-Shop         MBR            TeleShop       TeleShop      
##  [1441] TeleShop       TeleShop       MBR            TeleShop      
##  [1445] MBR            MBR            MBR            TeleShop      
##  [1449] MBR            MBR            MBR            TeleShop      
##  [1453] TeleShop       TeleShop       MBR            TeleShop      
##  [1457] MBR            MBR            TeleShop       TeleShop      
##  [1461] TeleShop       TeleShop       e-Shop         e-Shop        
##  [1465] e-Shop         e-Shop         e-Shop         TeleShop      
##  [1469] TeleShop       Flagship store Flagship store TeleShop      
##  [1473] TeleShop       Flagship store TeleShop       TeleShop      
##  [1477] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1481] TeleShop       TeleShop       TeleShop       MBR           
##  [1485] MBR            MBR            MBR            MBR           
##  [1489] MBR            MBR            MBR            MBR           
##  [1493] e-Shop         e-Shop         MBR            e-Shop        
##  [1497] MBR            MBR            MBR            MBR           
##  [1501] e-Shop         e-Shop         e-Shop         MBR           
##  [1505] Flagship store e-Shop         Flagship store e-Shop        
##  [1509] e-Shop         e-Shop         e-Shop         Flagship store
##  [1513] Flagship store Flagship store Flagship store Flagship store
##  [1517] Flagship store TeleShop       TeleShop       MBR           
##  [1521] TeleShop       Flagship store Flagship store TeleShop      
##  [1525] MBR            TeleShop       e-Shop         Flagship store
##  [1529] Flagship store MBR            TeleShop       e-Shop        
##  [1533] TeleShop       Flagship store e-Shop         Flagship store
##  [1537] TeleShop       Flagship store Flagship store TeleShop      
##  [1541] TeleShop       Flagship store TeleShop       TeleShop      
##  [1545] e-Shop         e-Shop         TeleShop       e-Shop        
##  [1549] TeleShop       e-Shop         e-Shop         e-Shop        
##  [1553] MBR            e-Shop         e-Shop         e-Shop        
##  [1557] TeleShop       MBR            e-Shop         e-Shop        
##  [1561] e-Shop         e-Shop         TeleShop       MBR           
##  [1565] e-Shop         e-Shop         TeleShop       e-Shop        
##  [1569] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1573] TeleShop       MBR            TeleShop       TeleShop      
##  [1577] TeleShop       MBR            MBR            MBR           
##  [1581] TeleShop       MBR            TeleShop       MBR           
##  [1585] MBR            e-Shop         MBR            e-Shop        
##  [1589] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1593] e-Shop         e-Shop         e-Shop         MBR           
##  [1597] MBR            TeleShop       MBR            TeleShop      
##  [1601] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1605] TeleShop       TeleShop       e-Shop         TeleShop      
##  [1609] MBR            MBR            TeleShop       e-Shop        
##  [1613] e-Shop         TeleShop       TeleShop       e-Shop        
##  [1617] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1621] TeleShop       e-Shop         e-Shop         e-Shop        
##  [1625] TeleShop       e-Shop         e-Shop         TeleShop      
##  [1629] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1633] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1637] TeleShop       MBR            MBR            MBR           
##  [1641] MBR            MBR            MBR            MBR           
##  [1645] TeleShop       e-Shop         e-Shop         TeleShop      
##  [1649] MBR            e-Shop         e-Shop         TeleShop      
##  [1653] e-Shop         e-Shop         MBR            MBR           
##  [1657] MBR            MBR            MBR            TeleShop      
##  [1661] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1665] TeleShop       TeleShop       TeleShop       e-Shop        
##  [1669] Flagship store Flagship store Flagship store Flagship store
##  [1673] e-Shop         e-Shop         MBR            e-Shop        
##  [1677] MBR            Flagship store e-Shop         MBR           
##  [1681] MBR            Flagship store Flagship store MBR           
##  [1685] MBR            Flagship store Flagship store MBR           
##  [1689] e-Shop         MBR            e-Shop         Flagship store
##  [1693] Flagship store Flagship store TeleShop       e-Shop        
##  [1697] Flagship store Flagship store Flagship store TeleShop      
##  [1701] TeleShop       e-Shop         TeleShop       Flagship store
##  [1705] e-Shop         TeleShop       Flagship store Flagship store
##  [1709] MBR            MBR            Flagship store MBR           
##  [1713] MBR            MBR            e-Shop         e-Shop        
##  [1717] e-Shop         e-Shop         TeleShop       e-Shop        
##  [1721] TeleShop       MBR            e-Shop         e-Shop        
##  [1725] TeleShop       MBR            TeleShop       MBR           
##  [1729] Flagship store Flagship store Flagship store e-Shop        
##  [1733] e-Shop         e-Shop         Flagship store Flagship store
##  [1737] Flagship store Flagship store Flagship store MBR           
##  [1741] MBR            e-Shop         MBR            MBR           
##  [1745] e-Shop         MBR            MBR            e-Shop        
##  [1749] e-Shop         MBR            MBR            e-Shop        
##  [1753] MBR            MBR            Flagship store Flagship store
##  [1757] Flagship store Flagship store Flagship store Flagship store
##  [1761] Flagship store Flagship store Flagship store Flagship store
##  [1765] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1769] TeleShop       e-Shop         TeleShop       e-Shop        
##  [1773] e-Shop         TeleShop       e-Shop         e-Shop        
##  [1777] TeleShop       e-Shop         e-Shop         e-Shop        
##  [1781] Flagship store e-Shop         Flagship store Flagship store
##  [1785] Flagship store e-Shop         e-Shop         MBR           
##  [1789] MBR            e-Shop         e-Shop         e-Shop        
##  [1793] e-Shop         e-Shop         MBR            e-Shop        
##  [1797] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1801] e-Shop         MBR            e-Shop         e-Shop        
##  [1805] MBR            e-Shop         e-Shop         Flagship store
##  [1809] MBR            e-Shop         MBR            Flagship store
##  [1813] Flagship store MBR            Flagship store Flagship store
##  [1817] MBR            e-Shop         e-Shop         Flagship store
##  [1821] e-Shop         e-Shop         Flagship store e-Shop        
##  [1825] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1829] e-Shop         Flagship store Flagship store e-Shop        
##  [1833] e-Shop         e-Shop         Flagship store Flagship store
##  [1837] Flagship store e-Shop         e-Shop         e-Shop        
##  [1841] MBR            MBR            e-Shop         e-Shop        
##  [1845] e-Shop         e-Shop         MBR            MBR           
##  [1849] e-Shop         e-Shop         MBR            e-Shop        
##  [1853] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1857] MBR            e-Shop         e-Shop         e-Shop        
##  [1861] e-Shop         Flagship store Flagship store Flagship store
##  [1865] Flagship store Flagship store e-Shop         e-Shop        
##  [1869] e-Shop         Flagship store Flagship store Flagship store
##  [1873] Flagship store Flagship store Flagship store e-Shop        
##  [1877] Flagship store e-Shop         e-Shop         MBR           
##  [1881] MBR            Flagship store MBR            MBR           
##  [1885] MBR            MBR            MBR            MBR           
##  [1889] Flagship store MBR            MBR            Flagship store
##  [1893] MBR            Flagship store MBR            MBR           
##  [1897] Flagship store MBR            MBR            MBR           
##  [1901] MBR            TeleShop       e-Shop         TeleShop      
##  [1905] TeleShop       e-Shop         TeleShop       TeleShop      
##  [1909] TeleShop       TeleShop       TeleShop       Flagship store
##  [1913] TeleShop       TeleShop       TeleShop       TeleShop      
##  [1917] TeleShop       Flagship store MBR            MBR           
##  [1921] MBR            MBR            MBR            MBR           
##  [1925] TeleShop       Flagship store TeleShop       e-Shop        
##  [1929] Flagship store TeleShop       TeleShop       e-Shop        
##  [1933] Flagship store Flagship store TeleShop       TeleShop      
##  [1937] TeleShop       TeleShop       MBR            MBR           
##  [1941] MBR            TeleShop       MBR            TeleShop      
##  [1945] TeleShop       Flagship store Flagship store Flagship store
##  [1949] Flagship store Flagship store MBR            e-Shop        
##  [1953] MBR            MBR            e-Shop         e-Shop        
##  [1957] Flagship store MBR            e-Shop         Flagship store
##  [1961] e-Shop         e-Shop         e-Shop         e-Shop        
##  [1965] e-Shop         e-Shop         e-Shop         MBR           
##  [1969] MBR            MBR            e-Shop         MBR           
##  [1973] MBR            TeleShop       e-Shop         e-Shop        
##  [1977] TeleShop       TeleShop       e-Shop         e-Shop        
##  [1981] e-Shop         e-Shop         MBR            MBR           
##  [1985] e-Shop         e-Shop         e-Shop         MBR           
##  [1989] MBR            e-Shop         e-Shop         e-Shop        
##  [1993] e-Shop         e-Shop         e-Shop         MBR           
##  [1997] MBR            MBR            MBR            MBR           
##  [2001] MBR            MBR            MBR            Flagship store
##  [2005] e-Shop         e-Shop         e-Shop         MBR           
##  [2009] Flagship store MBR            e-Shop         e-Shop        
##  [2013] e-Shop         Flagship store Flagship store e-Shop        
##  [2017] TeleShop       TeleShop       Flagship store Flagship store
##  [2021] TeleShop       Flagship store Flagship store Flagship store
##  [2025] Flagship store e-Shop         e-Shop         e-Shop        
##  [2029] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2033] TeleShop       TeleShop       MBR            e-Shop        
##  [2037] MBR            e-Shop         MBR            MBR           
##  [2041] MBR            e-Shop         e-Shop         e-Shop        
##  [2045] e-Shop         e-Shop         e-Shop         TeleShop      
##  [2049] e-Shop         TeleShop       e-Shop         TeleShop      
##  [2053] e-Shop         e-Shop         TeleShop       TeleShop      
##  [2057] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2061] e-Shop         e-Shop         MBR            e-Shop        
##  [2065] MBR            MBR            MBR            e-Shop        
##  [2069] e-Shop         MBR            MBR            MBR           
##  [2073] MBR            e-Shop         MBR            e-Shop        
##  [2077] MBR            MBR            TeleShop       TeleShop      
##  [2081] MBR            TeleShop       e-Shop         e-Shop        
##  [2085] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2089] e-Shop         e-Shop         Flagship store Flagship store
##  [2093] Flagship store Flagship store Flagship store Flagship store
##  [2097] e-Shop         e-Shop         MBR            e-Shop        
##  [2101] TeleShop       TeleShop       e-Shop         MBR           
##  [2105] TeleShop       e-Shop         TeleShop       TeleShop      
##  [2109] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2113] TeleShop       TeleShop       MBR            MBR           
##  [2117] e-Shop         e-Shop         TeleShop       e-Shop        
##  [2121] TeleShop       MBR            e-Shop         e-Shop        
##  [2125] e-Shop         MBR            MBR            Flagship store
##  [2129] MBR            e-Shop         Flagship store Flagship store
##  [2133] e-Shop         Flagship store e-Shop         e-Shop        
##  [2137] e-Shop         e-Shop         e-Shop         Flagship store
##  [2141] Flagship store e-Shop         Flagship store Flagship store
##  [2145] e-Shop         Flagship store Flagship store Flagship store
##  [2149] Flagship store e-Shop         MBR            Flagship store
##  [2153] e-Shop         Flagship store e-Shop         e-Shop        
##  [2157] TeleShop       Flagship store Flagship store MBR           
##  [2161] TeleShop       TeleShop       Flagship store e-Shop        
##  [2165] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2169] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2173] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2177] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2181] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2185] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2189] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2193] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2197] e-Shop         e-Shop         TeleShop       TeleShop      
##  [2201] e-Shop         e-Shop         TeleShop       e-Shop        
##  [2205] TeleShop       Flagship store Flagship store Flagship store
##  [2209] Flagship store e-Shop         Flagship store e-Shop        
##  [2213] Flagship store Flagship store e-Shop         TeleShop      
##  [2217] e-Shop         TeleShop       TeleShop       TeleShop      
##  [2221] TeleShop       TeleShop       e-Shop         TeleShop      
##  [2225] e-Shop         MBR            e-Shop         MBR           
##  [2229] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2233] e-Shop         e-Shop         e-Shop         MBR           
##  [2237] e-Shop         TeleShop       MBR            TeleShop      
##  [2241] MBR            TeleShop       MBR            e-Shop        
##  [2245] TeleShop       TeleShop       TeleShop       e-Shop        
##  [2249] e-Shop         MBR            MBR            TeleShop      
##  [2253] TeleShop       TeleShop       TeleShop       TeleShop      
##  [2257] TeleShop       TeleShop       TeleShop       Flagship store
##  [2261] Flagship store Flagship store Flagship store TeleShop      
##  [2265] e-Shop         Flagship store e-Shop         TeleShop      
##  [2269] TeleShop       TeleShop       MBR            MBR           
##  [2273] TeleShop       MBR            TeleShop       TeleShop      
##  [2277] MBR            TeleShop       TeleShop       TeleShop      
##  [2281] TeleShop       TeleShop       TeleShop       TeleShop      
##  [2285] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2289] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2293] e-Shop         Flagship store Flagship store Flagship store
##  [2297] MBR            e-Shop         e-Shop         Flagship store
##  [2301] Flagship store Flagship store e-Shop         Flagship store
##  [2305] e-Shop         e-Shop         Flagship store MBR           
##  [2309] e-Shop         Flagship store Flagship store MBR           
##  [2313] MBR            MBR            e-Shop         Flagship store
##  [2317] Flagship store e-Shop         MBR            MBR           
##  [2321] e-Shop         MBR            MBR            Flagship store
##  [2325] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2329] e-Shop         e-Shop         TeleShop       TeleShop      
##  [2333] TeleShop       TeleShop       Flagship store TeleShop      
##  [2337] TeleShop       Flagship store TeleShop       TeleShop      
##  [2341] TeleShop       TeleShop       TeleShop       Flagship store
##  [2345] TeleShop       Flagship store Flagship store TeleShop      
##  [2349] TeleShop       TeleShop       TeleShop       TeleShop      
##  [2353] MBR            MBR            Flagship store Flagship store
##  [2357] Flagship store Flagship store Flagship store MBR           
##  [2361] MBR            MBR            e-Shop         e-Shop        
##  [2365] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2369] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2373] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2377] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2381] e-Shop         e-Shop         Flagship store Flagship store
##  [2385] e-Shop         Flagship store Flagship store MBR           
##  [2389] Flagship store Flagship store Flagship store Flagship store
##  [2393] MBR            e-Shop         e-Shop         TeleShop      
##  [2397] e-Shop         e-Shop         TeleShop       e-Shop        
##  [2401] TeleShop       MBR            TeleShop       TeleShop      
##  [2405] MBR            MBR            MBR            MBR           
##  [2409] TeleShop       e-Shop         MBR            e-Shop        
##  [2413] MBR            MBR            MBR            e-Shop        
##  [2417] MBR            e-Shop         e-Shop         MBR           
##  [2421] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2425] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2429] TeleShop       TeleShop       TeleShop       MBR           
##  [2433] e-Shop         e-Shop         MBR            e-Shop        
##  [2437] e-Shop         TeleShop       MBR            TeleShop      
##  [2441] e-Shop         MBR            TeleShop       TeleShop      
##  [2445] TeleShop       MBR            e-Shop         e-Shop        
##  [2449] MBR            e-Shop         TeleShop       e-Shop        
##  [2453] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2457] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2461] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2465] e-Shop         TeleShop       TeleShop       e-Shop        
##  [2469] TeleShop       TeleShop       e-Shop         TeleShop      
##  [2473] TeleShop       e-Shop         TeleShop       TeleShop      
##  [2477] e-Shop         TeleShop       TeleShop       Flagship store
##  [2481] Flagship store Flagship store Flagship store MBR           
##  [2485] MBR            Flagship store Flagship store e-Shop        
##  [2489] Flagship store e-Shop         Flagship store Flagship store
##  [2493] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2497] e-Shop         e-Shop         Flagship store Flagship store
##  [2501] Flagship store e-Shop         e-Shop         e-Shop        
##  [2505] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2509] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2513] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2517] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2521] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2525] e-Shop         TeleShop       e-Shop         MBR           
##  [2529] MBR            TeleShop       e-Shop         e-Shop        
##  [2533] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2537] e-Shop         e-Shop         MBR            TeleShop      
##  [2541] MBR            MBR            TeleShop       e-Shop        
##  [2545] TeleShop       e-Shop         e-Shop         TeleShop      
##  [2549] TeleShop       TeleShop       e-Shop         e-Shop        
##  [2553] e-Shop         e-Shop         TeleShop       TeleShop      
##  [2557] TeleShop       TeleShop       TeleShop       e-Shop        
##  [2561] Flagship store Flagship store Flagship store e-Shop        
##  [2565] Flagship store e-Shop         Flagship store e-Shop        
##  [2569] e-Shop         TeleShop       Flagship store Flagship store
##  [2573] TeleShop       Flagship store Flagship store Flagship store
##  [2577] Flagship store e-Shop         Flagship store MBR           
##  [2581] MBR            e-Shop         MBR            e-Shop        
##  [2585] e-Shop         MBR            MBR            MBR           
##  [2589] MBR            MBR            MBR            e-Shop        
##  [2593] e-Shop         e-Shop         MBR            e-Shop        
##  [2597] MBR            e-Shop         e-Shop         e-Shop        
##  [2601] e-Shop         e-Shop         MBR            MBR           
##  [2605] Flagship store MBR            Flagship store MBR           
##  [2609] MBR            Flagship store Flagship store Flagship store
##  [2613] Flagship store MBR            Flagship store MBR           
##  [2617] MBR            Flagship store MBR            Flagship store
##  [2621] MBR            MBR            Flagship store Flagship store
##  [2625] MBR            MBR            MBR            Flagship store
##  [2629] MBR            MBR            Flagship store Flagship store
##  [2633] TeleShop       TeleShop       Flagship store TeleShop      
##  [2637] TeleShop       TeleShop       TeleShop       e-Shop        
##  [2641] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2645] e-Shop         e-Shop         TeleShop       Flagship store
##  [2649] Flagship store TeleShop       MBR            MBR           
##  [2653] MBR            MBR            TeleShop       MBR           
##  [2657] MBR            TeleShop       TeleShop       MBR           
##  [2661] TeleShop       Flagship store e-Shop         e-Shop        
##  [2665] Flagship store Flagship store e-Shop         Flagship store
##  [2669] Flagship store MBR            MBR            MBR           
##  [2673] MBR            MBR            MBR            MBR           
##  [2677] MBR            MBR            MBR            MBR           
##  [2681] e-Shop         MBR            e-Shop         e-Shop        
##  [2685] MBR            MBR            e-Shop         e-Shop        
##  [2689] e-Shop         e-Shop         TeleShop       TeleShop      
##  [2693] TeleShop       TeleShop       TeleShop       TeleShop      
##  [2697] e-Shop         e-Shop         TeleShop       TeleShop      
##  [2701] e-Shop         TeleShop       TeleShop       e-Shop        
##  [2705] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2709] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2713] e-Shop         TeleShop       e-Shop         e-Shop        
##  [2717] e-Shop         e-Shop         TeleShop       e-Shop        
##  [2721] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2725] TeleShop       e-Shop         TeleShop       e-Shop        
##  [2729] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2733] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2737] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2741] e-Shop         TeleShop       e-Shop         e-Shop        
##  [2745] TeleShop       e-Shop         e-Shop         e-Shop        
##  [2749] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2753] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2757] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2761] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2765] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2769] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2773] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2777] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2781] TeleShop       TeleShop       e-Shop         TeleShop      
##  [2785] e-Shop         e-Shop         e-Shop         TeleShop      
##  [2789] TeleShop       e-Shop         e-Shop         e-Shop        
##  [2793] MBR            MBR            MBR            e-Shop        
##  [2797] MBR            MBR            MBR            e-Shop        
##  [2801] e-Shop         e-Shop         e-Shop         MBR           
##  [2805] Flagship store MBR            e-Shop         e-Shop        
##  [2809] MBR            Flagship store MBR            Flagship store
##  [2813] Flagship store Flagship store Flagship store Flagship store
##  [2817] Flagship store e-Shop         Flagship store e-Shop        
##  [2821] MBR            MBR            e-Shop         e-Shop        
##  [2825] Flagship store Flagship store e-Shop         Flagship store
##  [2829] Flagship store e-Shop         Flagship store e-Shop        
##  [2833] Flagship store e-Shop         Flagship store e-Shop        
##  [2837] Flagship store e-Shop         e-Shop         e-Shop        
##  [2841] e-Shop         e-Shop         Flagship store e-Shop        
##  [2845] Flagship store e-Shop         e-Shop         Flagship store
##  [2849] Flagship store Flagship store Flagship store Flagship store
##  [2853] Flagship store Flagship store e-Shop         e-Shop        
##  [2857] MBR            e-Shop         e-Shop         e-Shop        
##  [2861] e-Shop         e-Shop         e-Shop         MBR           
##  [2865] MBR            e-Shop         e-Shop         MBR           
##  [2869] TeleShop       TeleShop       TeleShop       Flagship store
##  [2873] MBR            e-Shop         MBR            e-Shop        
##  [2877] MBR            e-Shop         MBR            MBR           
##  [2881] e-Shop         e-Shop         Flagship store MBR           
##  [2885] MBR            e-Shop         TeleShop       e-Shop        
##  [2889] e-Shop         e-Shop         TeleShop       TeleShop      
##  [2893] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2897] e-Shop         e-Shop         TeleShop       e-Shop        
##  [2901] e-Shop         TeleShop       e-Shop         e-Shop        
##  [2905] e-Shop         TeleShop       TeleShop       TeleShop      
##  [2909] e-Shop         TeleShop       e-Shop         TeleShop      
##  [2913] Flagship store Flagship store Flagship store Flagship store
##  [2917] Flagship store TeleShop       TeleShop       TeleShop      
##  [2921] Flagship store Flagship store TeleShop       Flagship store
##  [2925] TeleShop       e-Shop         e-Shop         TeleShop      
##  [2929] e-Shop         TeleShop       TeleShop       e-Shop        
##  [2933] TeleShop       TeleShop       e-Shop         TeleShop      
##  [2937] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2941] e-Shop         e-Shop         Flagship store Flagship store
##  [2945] e-Shop         e-Shop         TeleShop       TeleShop      
##  [2949] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2953] e-Shop         e-Shop         TeleShop       TeleShop      
##  [2957] TeleShop       e-Shop         TeleShop       e-Shop        
##  [2961] TeleShop       TeleShop       e-Shop         e-Shop        
##  [2965] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2969] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2973] e-Shop         MBR            MBR            MBR           
##  [2977] MBR            TeleShop       Flagship store TeleShop      
##  [2981] MBR            TeleShop       Flagship store e-Shop        
##  [2985] e-Shop         MBR            MBR            MBR           
##  [2989] e-Shop         e-Shop         e-Shop         e-Shop        
##  [2993] MBR            MBR            Flagship store Flagship store
##  [2997] Flagship store e-Shop         e-Shop         Flagship store
##  [3001] Flagship store Flagship store MBR            MBR           
##  [3005] MBR            MBR            MBR            MBR           
##  [3009] MBR            MBR            MBR            Flagship store
##  [3013] e-Shop         Flagship store Flagship store MBR           
##  [3017] e-Shop         Flagship store Flagship store MBR           
##  [3021] e-Shop         e-Shop         Flagship store MBR           
##  [3025] Flagship store Flagship store Flagship store MBR           
##  [3029] TeleShop       TeleShop       MBR            TeleShop      
##  [3033] MBR            TeleShop       TeleShop       TeleShop      
##  [3037] MBR            MBR            MBR            MBR           
##  [3041] MBR            MBR            MBR            e-Shop        
##  [3045] e-Shop         MBR            MBR            MBR           
##  [3049] MBR            MBR            MBR            e-Shop        
##  [3053] MBR            e-Shop         e-Shop         e-Shop        
##  [3057] e-Shop         e-Shop         TeleShop       Flagship store
##  [3061] e-Shop         Flagship store e-Shop         TeleShop      
##  [3065] Flagship store Flagship store Flagship store Flagship store
##  [3069] e-Shop         TeleShop       TeleShop       e-Shop        
##  [3073] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3077] TeleShop       TeleShop       TeleShop       TeleShop      
##  [3081] TeleShop       TeleShop       TeleShop       TeleShop      
##  [3085] TeleShop       TeleShop       e-Shop         e-Shop        
##  [3089] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3093] e-Shop         e-Shop         e-Shop         MBR           
##  [3097] MBR            MBR            MBR            MBR           
##  [3101] Flagship store Flagship store Flagship store e-Shop        
##  [3105] e-Shop         Flagship store e-Shop         Flagship store
##  [3109] Flagship store e-Shop         e-Shop         e-Shop        
##  [3113] Flagship store e-Shop         e-Shop         e-Shop        
##  [3117] e-Shop         Flagship store Flagship store Flagship store
##  [3121] Flagship store Flagship store Flagship store Flagship store
##  [3125] Flagship store MBR            MBR            Flagship store
##  [3129] MBR            Flagship store e-Shop         e-Shop        
##  [3133] MBR            Flagship store Flagship store MBR           
##  [3137] Flagship store Flagship store MBR            e-Shop        
##  [3141] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3145] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3149] e-Shop         MBR            e-Shop         e-Shop        
##  [3153] e-Shop         MBR            e-Shop         TeleShop      
##  [3157] e-Shop         MBR            TeleShop       e-Shop        
##  [3161] e-Shop         TeleShop       TeleShop       e-Shop        
##  [3165] e-Shop         TeleShop       e-Shop         e-Shop        
##  [3169] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3173] e-Shop         e-Shop         MBR            MBR           
##  [3177] MBR            Flagship store Flagship store Flagship store
##  [3181] Flagship store Flagship store Flagship store Flagship store
##  [3185] Flagship store Flagship store Flagship store Flagship store
##  [3189] e-Shop         e-Shop         Flagship store e-Shop        
##  [3193] e-Shop         Flagship store e-Shop         e-Shop        
##  [3197] MBR            MBR            MBR            MBR           
##  [3201] Flagship store MBR            Flagship store MBR           
##  [3205] MBR            MBR            MBR            MBR           
##  [3209] MBR            Flagship store e-Shop         e-Shop        
##  [3213] e-Shop         MBR            MBR            MBR           
##  [3217] MBR            e-Shop         Flagship store e-Shop        
##  [3221] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3225] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3229] TeleShop       MBR            MBR            Flagship store
##  [3233] TeleShop       e-Shop         Flagship store Flagship store
##  [3237] TeleShop       TeleShop       e-Shop         Flagship store
##  [3241] e-Shop         TeleShop       Flagship store e-Shop        
##  [3245] Flagship store MBR            e-Shop         MBR           
##  [3249] TeleShop       TeleShop       e-Shop         e-Shop        
##  [3253] TeleShop       e-Shop         MBR            e-Shop        
##  [3257] MBR            MBR            TeleShop       e-Shop        
##  [3261] MBR            MBR            TeleShop       e-Shop        
##  [3265] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3269] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3273] e-Shop         TeleShop       TeleShop       TeleShop      
##  [3277] TeleShop       TeleShop       TeleShop       TeleShop      
##  [3281] TeleShop       TeleShop       TeleShop       TeleShop      
##  [3285] TeleShop       TeleShop       TeleShop       TeleShop      
##  [3289] Flagship store Flagship store Flagship store Flagship store
##  [3293] MBR            MBR            Flagship store MBR           
##  [3297] Flagship store MBR            MBR            Flagship store
##  [3301] Flagship store Flagship store Flagship store Flagship store
##  [3305] Flagship store MBR            MBR            MBR           
##  [3309] e-Shop         Flagship store e-Shop         MBR           
##  [3313] Flagship store Flagship store Flagship store MBR           
##  [3317] MBR            Flagship store MBR            Flagship store
##  [3321] e-Shop         Flagship store Flagship store e-Shop        
##  [3325] Flagship store e-Shop         MBR            e-Shop        
##  [3329] Flagship store MBR            e-Shop         MBR           
##  [3333] Flagship store MBR            MBR            e-Shop        
##  [3337] e-Shop         e-Shop         e-Shop         TeleShop      
##  [3341] e-Shop         MBR            e-Shop         MBR           
##  [3345] MBR            TeleShop       MBR            TeleShop      
##  [3349] MBR            MBR            TeleShop       TeleShop      
##  [3353] e-Shop         Flagship store e-Shop         e-Shop        
##  [3357] e-Shop         Flagship store Flagship store e-Shop        
##  [3361] Flagship store Flagship store e-Shop         e-Shop        
##  [3365] e-Shop         Flagship store e-Shop         Flagship store
##  [3369] Flagship store e-Shop         e-Shop         Flagship store
##  [3373] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3377] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3381] MBR            TeleShop       MBR            MBR           
##  [3385] MBR            TeleShop       Flagship store Flagship store
##  [3389] TeleShop       MBR            MBR            TeleShop      
##  [3393] MBR            MBR            TeleShop       Flagship store
##  [3397] TeleShop       TeleShop       MBR            MBR           
##  [3401] MBR            TeleShop       MBR            Flagship store
##  [3405] TeleShop       MBR            e-Shop         TeleShop      
##  [3409] MBR            TeleShop       MBR            TeleShop      
##  [3413] MBR            e-Shop         TeleShop       TeleShop      
##  [3417] TeleShop       MBR            TeleShop       TeleShop      
##  [3421] MBR            MBR            MBR            TeleShop      
##  [3425] MBR            MBR            MBR            MBR           
##  [3429] e-Shop         e-Shop         MBR            MBR           
##  [3433] MBR            e-Shop         MBR            MBR           
##  [3437] MBR            MBR            MBR            MBR           
##  [3441] MBR            MBR            MBR            MBR           
##  [3445] e-Shop         e-Shop         MBR            e-Shop        
##  [3449] MBR            MBR            MBR            MBR           
##  [3453] MBR            MBR            MBR            e-Shop        
##  [3457] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3461] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3465] MBR            MBR            e-Shop         e-Shop        
##  [3469] TeleShop       TeleShop       TeleShop       TeleShop      
##  [3473] TeleShop       TeleShop       TeleShop       TeleShop      
##  [3477] TeleShop       TeleShop       TeleShop       TeleShop      
##  [3481] e-Shop         e-Shop         Flagship store Flagship store
##  [3485] e-Shop         e-Shop         Flagship store e-Shop        
##  [3489] e-Shop         e-Shop         MBR            MBR           
##  [3493] MBR            e-Shop         MBR            Flagship store
##  [3497] Flagship store e-Shop         e-Shop         Flagship store
##  [3501] e-Shop         Flagship store Flagship store e-Shop        
##  [3505] e-Shop         e-Shop         Flagship store Flagship store
##  [3509] TeleShop       Flagship store Flagship store TeleShop      
##  [3513] TeleShop       Flagship store TeleShop       Flagship store
##  [3517] Flagship store Flagship store TeleShop       e-Shop        
##  [3521] e-Shop         e-Shop         e-Shop         Flagship store
##  [3525] Flagship store Flagship store e-Shop         TeleShop      
##  [3529] e-Shop         e-Shop         e-Shop         TeleShop      
##  [3533] e-Shop         Flagship store Flagship store e-Shop        
##  [3537] e-Shop         e-Shop         TeleShop       TeleShop      
##  [3541] e-Shop         TeleShop       e-Shop         Flagship store
##  [3545] Flagship store TeleShop       e-Shop         TeleShop      
##  [3549] Flagship store e-Shop         Flagship store Flagship store
##  [3553] Flagship store e-Shop         e-Shop         e-Shop        
##  [3557] e-Shop         e-Shop         Flagship store e-Shop        
##  [3561] Flagship store e-Shop         e-Shop         e-Shop        
##  [3565] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3569] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3573] MBR            Flagship store MBR            MBR           
##  [3577] Flagship store e-Shop         e-Shop         Flagship store
##  [3581] e-Shop         Flagship store Flagship store Flagship store
##  [3585] Flagship store Flagship store Flagship store e-Shop        
##  [3589] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3593] e-Shop         e-Shop         Flagship store Flagship store
##  [3597] Flagship store Flagship store MBR            e-Shop        
##  [3601] MBR            Flagship store MBR            MBR           
##  [3605] MBR            e-Shop         e-Shop         e-Shop        
##  [3609] Flagship store Flagship store MBR            Flagship store
##  [3613] e-Shop         e-Shop         e-Shop         MBR           
##  [3617] e-Shop         e-Shop         Flagship store e-Shop        
##  [3621] e-Shop         e-Shop         Flagship store e-Shop        
##  [3625] MBR            MBR            MBR            MBR           
##  [3629] e-Shop         MBR            MBR            e-Shop        
##  [3633] MBR            MBR            MBR            MBR           
##  [3637] e-Shop         Flagship store e-Shop         e-Shop        
##  [3641] Flagship store e-Shop         e-Shop         e-Shop        
##  [3645] e-Shop         e-Shop         MBR            TeleShop      
##  [3649] MBR            TeleShop       MBR            e-Shop        
##  [3653] e-Shop         e-Shop         e-Shop         Flagship store
##  [3657] Flagship store Flagship store e-Shop         Flagship store
##  [3661] e-Shop         e-Shop         TeleShop       Flagship store
##  [3665] TeleShop       Flagship store e-Shop         Flagship store
##  [3669] Flagship store Flagship store Flagship store TeleShop      
##  [3673] TeleShop       MBR            MBR            MBR           
##  [3677] MBR            MBR            MBR            MBR           
##  [3681] MBR            Flagship store MBR            MBR           
##  [3685] MBR            MBR            TeleShop       Flagship store
##  [3689] MBR            TeleShop       TeleShop       Flagship store
##  [3693] TeleShop       MBR            e-Shop         TeleShop      
##  [3697] TeleShop       e-Shop         MBR            MBR           
##  [3701] MBR            TeleShop       MBR            e-Shop        
##  [3705] Flagship store e-Shop         e-Shop         TeleShop      
##  [3709] Flagship store e-Shop         e-Shop         e-Shop        
##  [3713] e-Shop         e-Shop         TeleShop       Flagship store
##  [3717] TeleShop       Flagship store Flagship store Flagship store
##  [3721] TeleShop       TeleShop       Flagship store Flagship store
##  [3725] TeleShop       Flagship store Flagship store TeleShop      
##  [3729] TeleShop       TeleShop       e-Shop         e-Shop        
##  [3733] e-Shop         Flagship store Flagship store Flagship store
##  [3737] e-Shop         Flagship store Flagship store Flagship store
##  [3741] Flagship store Flagship store Flagship store Flagship store
##  [3745] Flagship store Flagship store e-Shop         e-Shop        
##  [3749] e-Shop         TeleShop       e-Shop         TeleShop      
##  [3753] TeleShop       e-Shop         e-Shop         e-Shop        
##  [3757] e-Shop         TeleShop       TeleShop       e-Shop        
##  [3761] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3765] TeleShop       e-Shop         e-Shop         e-Shop        
##  [3769] TeleShop       e-Shop         e-Shop         e-Shop        
##  [3773] TeleShop       e-Shop         TeleShop       TeleShop      
##  [3777] e-Shop         MBR            MBR            TeleShop      
##  [3781] TeleShop       TeleShop       e-Shop         e-Shop        
##  [3785] e-Shop         TeleShop       TeleShop       e-Shop        
##  [3789] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3793] e-Shop         e-Shop         Flagship store Flagship store
##  [3797] Flagship store Flagship store Flagship store MBR           
##  [3801] e-Shop         MBR            MBR            e-Shop        
##  [3805] MBR            MBR            MBR            e-Shop        
##  [3809] e-Shop         e-Shop         MBR            MBR           
##  [3813] e-Shop         e-Shop         MBR            e-Shop        
##  [3817] TeleShop       TeleShop       TeleShop       TeleShop      
##  [3821] MBR            TeleShop       TeleShop       TeleShop      
##  [3825] TeleShop       TeleShop       MBR            TeleShop      
##  [3829] TeleShop       MBR            e-Shop         TeleShop      
##  [3833] TeleShop       MBR            MBR            e-Shop        
##  [3837] TeleShop       e-Shop         MBR            TeleShop      
##  [3841] MBR            MBR            e-Shop         MBR           
##  [3845] MBR            MBR            e-Shop         TeleShop      
##  [3849] e-Shop         MBR            TeleShop       MBR           
##  [3853] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3857] e-Shop         e-Shop         TeleShop       TeleShop      
##  [3861] TeleShop       TeleShop       TeleShop       Flagship store
##  [3865] TeleShop       TeleShop       Flagship store TeleShop      
##  [3869] Flagship store e-Shop         e-Shop         e-Shop        
##  [3873] e-Shop         Flagship store TeleShop       TeleShop      
##  [3877] TeleShop       TeleShop       Flagship store TeleShop      
##  [3881] Flagship store Flagship store e-Shop         e-Shop        
##  [3885] e-Shop         Flagship store Flagship store Flagship store
##  [3889] Flagship store e-Shop         e-Shop         Flagship store
##  [3893] e-Shop         Flagship store Flagship store e-Shop        
##  [3897] e-Shop         Flagship store e-Shop         Flagship store
##  [3901] Flagship store Flagship store Flagship store Flagship store
##  [3905] TeleShop       Flagship store TeleShop       Flagship store
##  [3909] TeleShop       TeleShop       Flagship store Flagship store
##  [3913] Flagship store Flagship store Flagship store Flagship store
##  [3917] Flagship store Flagship store TeleShop       Flagship store
##  [3921] Flagship store Flagship store TeleShop       e-Shop        
##  [3925] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3929] e-Shop         e-Shop         Flagship store e-Shop        
##  [3933] Flagship store MBR            MBR            MBR           
##  [3937] Flagship store Flagship store Flagship store Flagship store
##  [3941] Flagship store e-Shop         e-Shop         e-Shop        
##  [3945] e-Shop         e-Shop         TeleShop       TeleShop      
##  [3949] TeleShop       TeleShop       TeleShop       e-Shop        
##  [3953] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3957] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3961] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3965] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3969] e-Shop         e-Shop         e-Shop         e-Shop        
##  [3973] e-Shop         TeleShop       TeleShop       TeleShop      
##  [3977] TeleShop       TeleShop       TeleShop       Flagship store
##  [3981] e-Shop         Flagship store e-Shop         MBR           
##  [3985] MBR            Flagship store Flagship store Flagship store
##  [3989] Flagship store e-Shop         e-Shop         e-Shop        
##  [3993] e-Shop         MBR            e-Shop         e-Shop        
##  [3997] e-Shop         MBR            MBR            e-Shop        
##  [4001] MBR            MBR            e-Shop         e-Shop        
##  [4005] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4009] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4013] MBR            MBR            MBR            MBR           
##  [4017] MBR            MBR            e-Shop         e-Shop        
##  [4021] e-Shop         Flagship store Flagship store e-Shop        
##  [4025] TeleShop       MBR            TeleShop       TeleShop      
##  [4029] MBR            Flagship store e-Shop         e-Shop        
##  [4033] e-Shop         TeleShop       Flagship store TeleShop      
##  [4037] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4041] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4045] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4049] Flagship store TeleShop       e-Shop         TeleShop      
##  [4053] TeleShop       Flagship store TeleShop       TeleShop      
##  [4057] e-Shop         Flagship store Flagship store e-Shop        
##  [4061] Flagship store e-Shop         e-Shop         Flagship store
##  [4065] Flagship store e-Shop         e-Shop         e-Shop        
##  [4069] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4073] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4077] e-Shop         MBR            TeleShop       TeleShop      
##  [4081] MBR            MBR            e-Shop         e-Shop        
##  [4085] MBR            TeleShop       TeleShop       MBR           
##  [4089] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4093] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4097] e-Shop         e-Shop         e-Shop         MBR           
##  [4101] e-Shop         e-Shop         MBR            e-Shop        
##  [4105] MBR            MBR            e-Shop         e-Shop        
##  [4109] MBR            e-Shop         e-Shop         e-Shop        
##  [4113] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4117] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4121] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4125] e-Shop         e-Shop         Flagship store Flagship store
##  [4129] Flagship store Flagship store Flagship store Flagship store
##  [4133] Flagship store Flagship store e-Shop         e-Shop        
##  [4137] Flagship store Flagship store Flagship store Flagship store
##  [4141] Flagship store TeleShop       e-Shop         TeleShop      
##  [4145] e-Shop         TeleShop       e-Shop         e-Shop        
##  [4149] e-Shop         Flagship store TeleShop       TeleShop      
##  [4153] Flagship store e-Shop         e-Shop         e-Shop        
##  [4157] e-Shop         e-Shop         Flagship store e-Shop        
##  [4161] Flagship store Flagship store e-Shop         Flagship store
##  [4165] MBR            e-Shop         Flagship store MBR           
##  [4169] e-Shop         Flagship store Flagship store e-Shop        
##  [4173] Flagship store e-Shop         Flagship store Flagship store
##  [4177] TeleShop       MBR            TeleShop       MBR           
##  [4181] e-Shop         MBR            TeleShop       TeleShop      
##  [4185] MBR            TeleShop       e-Shop         e-Shop        
##  [4189] TeleShop       TeleShop       e-Shop         TeleShop      
##  [4193] e-Shop         Flagship store e-Shop         e-Shop        
##  [4197] TeleShop       Flagship store Flagship store TeleShop      
##  [4201] TeleShop       Flagship store Flagship store Flagship store
##  [4205] MBR            e-Shop         MBR            e-Shop        
##  [4209] e-Shop         TeleShop       e-Shop         e-Shop        
##  [4213] TeleShop       TeleShop       Flagship store Flagship store
##  [4217] Flagship store Flagship store TeleShop       Flagship store
##  [4221] Flagship store Flagship store Flagship store Flagship store
##  [4225] Flagship store MBR            Flagship store MBR           
##  [4229] Flagship store Flagship store e-Shop         e-Shop        
##  [4233] e-Shop         e-Shop         e-Shop         MBR           
##  [4237] TeleShop       e-Shop         TeleShop       TeleShop      
##  [4241] TeleShop       e-Shop         e-Shop         e-Shop        
##  [4245] e-Shop         TeleShop       e-Shop         e-Shop        
##  [4249] e-Shop         e-Shop         e-Shop         MBR           
##  [4253] MBR            MBR            MBR            MBR           
##  [4257] TeleShop       TeleShop       TeleShop       TeleShop      
##  [4261] MBR            TeleShop       Flagship store Flagship store
##  [4265] Flagship store Flagship store Flagship store Flagship store
##  [4269] TeleShop       e-Shop         TeleShop       e-Shop        
##  [4273] e-Shop         TeleShop       Flagship store Flagship store
##  [4277] e-Shop         Flagship store e-Shop         Flagship store
##  [4281] e-Shop         e-Shop         e-Shop         MBR           
##  [4285] MBR            e-Shop         MBR            MBR           
##  [4289] TeleShop       TeleShop       MBR            TeleShop      
##  [4293] Flagship store MBR            Flagship store MBR           
##  [4297] MBR            e-Shop         MBR            MBR           
##  [4301] MBR            MBR            MBR            e-Shop        
##  [4305] MBR            MBR            e-Shop         MBR           
##  [4309] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4313] e-Shop         e-Shop         e-Shop         Flagship store
##  [4317] e-Shop         e-Shop         Flagship store Flagship store
##  [4321] e-Shop         MBR            TeleShop       TeleShop      
##  [4325] MBR            TeleShop       MBR            Flagship store
##  [4329] MBR            MBR            Flagship store Flagship store
##  [4333] Flagship store Flagship store Flagship store Flagship store
##  [4337] Flagship store Flagship store Flagship store Flagship store
##  [4341] TeleShop       TeleShop       TeleShop       Flagship store
##  [4345] Flagship store Flagship store e-Shop         MBR           
##  [4349] TeleShop       MBR            TeleShop       MBR           
##  [4353] e-Shop         e-Shop         e-Shop         TeleShop      
##  [4357] e-Shop         TeleShop       MBR            TeleShop      
##  [4361] MBR            MBR            e-Shop         TeleShop      
##  [4365] MBR            e-Shop         e-Shop         e-Shop        
##  [4369] e-Shop         e-Shop         MBR            e-Shop        
##  [4373] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4377] e-Shop         e-Shop         Flagship store e-Shop        
##  [4381] Flagship store e-Shop         e-Shop         e-Shop        
##  [4385] Flagship store e-Shop         e-Shop         Flagship store
##  [4389] e-Shop         Flagship store e-Shop         e-Shop        
##  [4393] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4397] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4401] e-Shop         e-Shop         e-Shop         MBR           
##  [4405] MBR            TeleShop       TeleShop       TeleShop      
##  [4409] TeleShop       TeleShop       TeleShop       TeleShop      
##  [4413] TeleShop       TeleShop       TeleShop       TeleShop      
##  [4417] TeleShop       Flagship store Flagship store TeleShop      
##  [4421] Flagship store Flagship store TeleShop       TeleShop      
##  [4425] Flagship store MBR            MBR            MBR           
##  [4429] MBR            MBR            MBR            e-Shop        
##  [4433] Flagship store Flagship store TeleShop       TeleShop      
##  [4437] e-Shop         Flagship store TeleShop       TeleShop      
##  [4441] TeleShop       Flagship store Flagship store TeleShop      
##  [4445] e-Shop         Flagship store Flagship store e-Shop        
##  [4449] Flagship store MBR            MBR            MBR           
##  [4453] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4457] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4461] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4465] e-Shop         e-Shop         e-Shop         MBR           
##  [4469] MBR            MBR            MBR            Flagship store
##  [4473] MBR            MBR            Flagship store Flagship store
##  [4477] MBR            MBR            Flagship store Flagship store
##  [4481] Flagship store MBR            MBR            MBR           
##  [4485] Flagship store Flagship store Flagship store MBR           
##  [4489] e-Shop         e-Shop         TeleShop       TeleShop      
##  [4493] TeleShop       TeleShop       TeleShop       e-Shop        
##  [4497] e-Shop         e-Shop         e-Shop         MBR           
##  [4501] MBR            TeleShop       TeleShop       TeleShop      
##  [4505] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4509] Flagship store e-Shop         e-Shop         Flagship store
##  [4513] MBR            e-Shop         e-Shop         e-Shop        
##  [4517] e-Shop         e-Shop         e-Shop         MBR           
##  [4521] Flagship store e-Shop         e-Shop         e-Shop        
##  [4525] Flagship store e-Shop         e-Shop         Flagship store
##  [4529] e-Shop         MBR            MBR            MBR           
##  [4533] e-Shop         TeleShop       e-Shop         MBR           
##  [4537] MBR            TeleShop       e-Shop         TeleShop      
##  [4541] TeleShop       MBR            MBR            TeleShop      
##  [4545] e-Shop         TeleShop       e-Shop         e-Shop        
##  [4549] e-Shop         TeleShop       e-Shop         e-Shop        
##  [4553] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4557] TeleShop       e-Shop         e-Shop         e-Shop        
##  [4561] TeleShop       e-Shop         e-Shop         e-Shop        
##  [4565] e-Shop         Flagship store e-Shop         Flagship store
##  [4569] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4573] e-Shop         Flagship store Flagship store Flagship store
##  [4577] MBR            MBR            MBR            MBR           
##  [4581] MBR            MBR            MBR            MBR           
##  [4585] MBR            MBR            MBR            MBR           
##  [4589] MBR            MBR            MBR            TeleShop      
##  [4593] TeleShop       TeleShop       TeleShop       TeleShop      
##  [4597] TeleShop       Flagship store Flagship store Flagship store
##  [4601] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4605] Flagship store Flagship store e-Shop         e-Shop        
##  [4609] MBR            MBR            MBR            Flagship store
##  [4613] e-Shop         e-Shop         e-Shop         Flagship store
##  [4617] e-Shop         MBR            e-Shop         MBR           
##  [4621] e-Shop         e-Shop         TeleShop       e-Shop        
##  [4625] TeleShop       TeleShop       e-Shop         e-Shop        
##  [4629] MBR            Flagship store Flagship store e-Shop        
##  [4633] e-Shop         Flagship store e-Shop         Flagship store
##  [4637] MBR            MBR            TeleShop       TeleShop      
##  [4641] e-Shop         e-Shop         TeleShop       e-Shop        
##  [4645] e-Shop         e-Shop         TeleShop       e-Shop        
##  [4649] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4653] e-Shop         e-Shop         MBR            Flagship store
##  [4657] MBR            Flagship store Flagship store Flagship store
##  [4661] Flagship store Flagship store Flagship store Flagship store
##  [4665] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4669] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4673] e-Shop         e-Shop         MBR            e-Shop        
##  [4677] e-Shop         MBR            e-Shop         TeleShop      
##  [4681] TeleShop       TeleShop       TeleShop       TeleShop      
##  [4685] Flagship store Flagship store e-Shop         e-Shop        
##  [4689] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4693] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4697] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4701] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4705] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4709] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4713] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4717] MBR            TeleShop       MBR            MBR           
##  [4721] MBR            MBR            MBR            MBR           
##  [4725] MBR            TeleShop       MBR            TeleShop      
##  [4729] TeleShop       MBR            MBR            MBR           
##  [4733] MBR            e-Shop         e-Shop         e-Shop        
##  [4737] e-Shop         e-Shop         MBR            TeleShop      
##  [4741] MBR            MBR            TeleShop       TeleShop      
##  [4745] TeleShop       TeleShop       TeleShop       Flagship store
##  [4749] e-Shop         Flagship store TeleShop       e-Shop        
##  [4753] Flagship store Flagship store Flagship store MBR           
##  [4757] e-Shop         Flagship store Flagship store Flagship store
##  [4761] MBR            MBR            Flagship store Flagship store
##  [4765] Flagship store Flagship store Flagship store e-Shop        
##  [4769] TeleShop       e-Shop         Flagship store Flagship store
##  [4773] Flagship store e-Shop         Flagship store TeleShop      
##  [4777] e-Shop         Flagship store MBR            Flagship store
##  [4781] MBR            MBR            MBR            MBR           
##  [4785] MBR            Flagship store e-Shop         e-Shop        
##  [4789] e-Shop         e-Shop         Flagship store Flagship store
##  [4793] e-Shop         Flagship store Flagship store e-Shop        
##  [4797] e-Shop         Flagship store Flagship store Flagship store
##  [4801] Flagship store e-Shop         e-Shop         Flagship store
##  [4805] e-Shop         Flagship store Flagship store e-Shop        
##  [4809] e-Shop         e-Shop         MBR            MBR           
##  [4813] MBR            MBR            MBR            e-Shop        
##  [4817] MBR            MBR            MBR            e-Shop        
##  [4821] e-Shop         e-Shop         MBR            TeleShop      
##  [4825] TeleShop       Flagship store Flagship store e-Shop        
##  [4829] e-Shop         e-Shop         TeleShop       TeleShop      
##  [4833] Flagship store e-Shop         e-Shop         Flagship store
##  [4837] Flagship store Flagship store e-Shop         e-Shop        
##  [4841] Flagship store e-Shop         TeleShop       e-Shop        
##  [4845] e-Shop         e-Shop         Flagship store e-Shop        
##  [4849] Flagship store e-Shop         e-Shop         e-Shop        
##  [4853] TeleShop       Flagship store Flagship store e-Shop        
##  [4857] Flagship store Flagship store TeleShop       Flagship store
##  [4861] Flagship store MBR            MBR            MBR           
##  [4865] MBR            MBR            MBR            MBR           
##  [4869] MBR            MBR            MBR            MBR           
##  [4873] e-Shop         TeleShop       e-Shop         e-Shop        
##  [4877] e-Shop         TeleShop       TeleShop       TeleShop      
##  [4881] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4885] e-Shop         MBR            MBR            MBR           
##  [4889] MBR            MBR            MBR            MBR           
##  [4893] MBR            MBR            MBR            MBR           
##  [4897] e-Shop         e-Shop         MBR            MBR           
##  [4901] TeleShop       TeleShop       TeleShop       e-Shop        
##  [4905] TeleShop       Flagship store Flagship store Flagship store
##  [4909] e-Shop         Flagship store Flagship store Flagship store
##  [4913] Flagship store Flagship store Flagship store Flagship store
##  [4917] Flagship store Flagship store TeleShop       TeleShop      
##  [4921] e-Shop         Flagship store Flagship store Flagship store
##  [4925] Flagship store Flagship store TeleShop       Flagship store
##  [4929] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4933] e-Shop         MBR            e-Shop         MBR           
##  [4937] MBR            e-Shop         MBR            MBR           
##  [4941] MBR            MBR            e-Shop         e-Shop        
##  [4945] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4949] e-Shop         e-Shop         Flagship store MBR           
##  [4953] MBR            MBR            Flagship store e-Shop        
##  [4957] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4961] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4965] e-Shop         e-Shop         e-Shop         e-Shop        
##  [4969] TeleShop       TeleShop       TeleShop       TeleShop      
##  [4973] TeleShop       TeleShop       TeleShop       TeleShop      
##  [4977] TeleShop       TeleShop       TeleShop       TeleShop      
##  [4981] TeleShop       TeleShop       TeleShop       e-Shop        
##  [4985] e-Shop         e-Shop         TeleShop       e-Shop        
##  [4989] e-Shop         TeleShop       e-Shop         TeleShop      
##  [4993] e-Shop         e-Shop         TeleShop       Flagship store
##  [4997] e-Shop         Flagship store e-Shop         TeleShop      
##  [5001] e-Shop         Flagship store Flagship store TeleShop      
##  [5005] TeleShop       Flagship store Flagship store Flagship store
##  [5009] Flagship store Flagship store Flagship store Flagship store
##  [5013] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5017] e-Shop         e-Shop         e-Shop         Flagship store
##  [5021] Flagship store Flagship store Flagship store e-Shop        
##  [5025] Flagship store e-Shop         e-Shop         Flagship store
##  [5029] MBR            Flagship store MBR            e-Shop        
##  [5033] e-Shop         TeleShop       e-Shop         e-Shop        
##  [5037] e-Shop         TeleShop       TeleShop       e-Shop        
##  [5041] e-Shop         TeleShop       e-Shop         e-Shop        
##  [5045] Flagship store e-Shop         Flagship store e-Shop        
##  [5049] Flagship store Flagship store Flagship store Flagship store
##  [5053] Flagship store e-Shop         e-Shop         e-Shop        
##  [5057] MBR            Flagship store Flagship store e-Shop        
##  [5061] Flagship store Flagship store MBR            MBR           
##  [5065] MBR            MBR            e-Shop         e-Shop        
##  [5069] Flagship store Flagship store Flagship store Flagship store
##  [5073] Flagship store Flagship store Flagship store TeleShop      
##  [5077] TeleShop       TeleShop       TeleShop       Flagship store
##  [5081] Flagship store Flagship store Flagship store TeleShop      
##  [5085] e-Shop         Flagship store Flagship store e-Shop        
##  [5089] e-Shop         e-Shop         e-Shop         Flagship store
##  [5093] e-Shop         MBR            e-Shop         e-Shop        
##  [5097] MBR            e-Shop         e-Shop         e-Shop        
##  [5101] e-Shop         e-Shop         MBR            e-Shop        
##  [5105] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5109] e-Shop         Flagship store e-Shop         Flagship store
##  [5113] e-Shop         e-Shop         Flagship store Flagship store
##  [5117] Flagship store Flagship store TeleShop       TeleShop      
##  [5121] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5125] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5129] TeleShop       TeleShop       TeleShop       e-Shop        
##  [5133] TeleShop       e-Shop         TeleShop       MBR           
##  [5137] MBR            MBR            e-Shop         e-Shop        
##  [5141] e-Shop         MBR            MBR            MBR           
##  [5145] MBR            MBR            MBR            MBR           
##  [5149] MBR            MBR            Flagship store e-Shop        
##  [5153] MBR            MBR            MBR            MBR           
##  [5157] Flagship store Flagship store MBR            Flagship store
##  [5161] MBR            e-Shop         e-Shop         MBR           
##  [5165] e-Shop         Flagship store e-Shop         e-Shop        
##  [5169] MBR            Flagship store MBR            Flagship store
##  [5173] Flagship store MBR            MBR            e-Shop        
##  [5177] e-Shop         e-Shop         e-Shop         MBR           
##  [5181] e-Shop         e-Shop         Flagship store e-Shop        
##  [5185] e-Shop         Flagship store Flagship store e-Shop        
##  [5189] e-Shop         e-Shop         e-Shop         MBR           
##  [5193] e-Shop         Flagship store e-Shop         e-Shop        
##  [5197] Flagship store Flagship store Flagship store Flagship store
##  [5201] Flagship store Flagship store Flagship store MBR           
##  [5205] MBR            e-Shop         e-Shop         e-Shop        
##  [5209] e-Shop         e-Shop         Flagship store e-Shop        
##  [5213] e-Shop         Flagship store e-Shop         e-Shop        
##  [5217] Flagship store e-Shop         e-Shop         e-Shop        
##  [5221] Flagship store Flagship store MBR            e-Shop        
##  [5225] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5229] MBR            e-Shop         e-Shop         MBR           
##  [5233] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5237] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5241] e-Shop         TeleShop       TeleShop       e-Shop        
##  [5245] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5249] e-Shop         e-Shop         MBR            TeleShop      
##  [5253] e-Shop         MBR            MBR            e-Shop        
##  [5257] TeleShop       e-Shop         MBR            e-Shop        
##  [5261] MBR            e-Shop         MBR            e-Shop        
##  [5265] e-Shop         MBR            TeleShop       TeleShop      
##  [5269] TeleShop       TeleShop       MBR            Flagship store
##  [5273] TeleShop       MBR            Flagship store MBR           
##  [5277] MBR            Flagship store MBR            MBR           
##  [5281] MBR            MBR            MBR            MBR           
##  [5285] MBR            Flagship store Flagship store Flagship store
##  [5289] MBR            Flagship store TeleShop       MBR           
##  [5293] TeleShop       e-Shop         e-Shop         MBR           
##  [5297] TeleShop       TeleShop       TeleShop       TeleShop      
##  [5301] e-Shop         Flagship store Flagship store Flagship store
##  [5305] Flagship store Flagship store Flagship store e-Shop        
##  [5309] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5313] TeleShop       TeleShop       TeleShop       TeleShop      
##  [5317] TeleShop       MBR            TeleShop       TeleShop      
##  [5321] e-Shop         Flagship store MBR            e-Shop        
##  [5325] e-Shop         TeleShop       Flagship store e-Shop        
##  [5329] MBR            MBR            MBR            MBR           
##  [5333] MBR            MBR            Flagship store Flagship store
##  [5337] e-Shop         e-Shop         e-Shop         Flagship store
##  [5341] Flagship store Flagship store Flagship store Flagship store
##  [5345] Flagship store Flagship store e-Shop         e-Shop        
##  [5349] e-Shop         TeleShop       TeleShop       e-Shop        
##  [5353] Flagship store Flagship store e-Shop         TeleShop      
##  [5357] e-Shop         e-Shop         Flagship store Flagship store
##  [5361] Flagship store e-Shop         Flagship store Flagship store
##  [5365] Flagship store Flagship store Flagship store e-Shop        
##  [5369] Flagship store Flagship store e-Shop         TeleShop      
##  [5373] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5377] TeleShop       e-Shop         e-Shop         e-Shop        
##  [5381] e-Shop         e-Shop         MBR            MBR           
##  [5385] MBR            MBR            MBR            MBR           
##  [5389] e-Shop         e-Shop         Flagship store Flagship store
##  [5393] Flagship store MBR            Flagship store Flagship store
##  [5397] Flagship store Flagship store e-Shop         e-Shop        
##  [5401] e-Shop         MBR            Flagship store e-Shop        
##  [5405] e-Shop         e-Shop         MBR            e-Shop        
##  [5409] e-Shop         e-Shop         MBR            e-Shop        
##  [5413] e-Shop         MBR            MBR            MBR           
##  [5417] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5421] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5425] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5429] e-Shop         e-Shop         e-Shop         Flagship store
##  [5433] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5437] e-Shop         Flagship store e-Shop         e-Shop        
##  [5441] e-Shop         MBR            e-Shop         MBR           
##  [5445] MBR            Flagship store MBR            Flagship store
##  [5449] Flagship store Flagship store e-Shop         e-Shop        
##  [5453] Flagship store e-Shop         Flagship store Flagship store
##  [5457] e-Shop         MBR            e-Shop         Flagship store
##  [5461] e-Shop         Flagship store Flagship store Flagship store
##  [5465] Flagship store Flagship store Flagship store Flagship store
##  [5469] Flagship store Flagship store Flagship store Flagship store
##  [5473] Flagship store Flagship store Flagship store Flagship store
##  [5477] Flagship store Flagship store TeleShop       TeleShop      
##  [5481] TeleShop       TeleShop       TeleShop       Flagship store
##  [5485] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5489] Flagship store e-Shop         e-Shop         MBR           
##  [5493] MBR            e-Shop         e-Shop         e-Shop        
##  [5497] MBR            MBR            MBR            MBR           
##  [5501] e-Shop         MBR            MBR            e-Shop        
##  [5505] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5509] MBR            MBR            MBR            MBR           
##  [5513] MBR            TeleShop       TeleShop       TeleShop      
##  [5517] TeleShop       e-Shop         MBR            e-Shop        
##  [5521] e-Shop         MBR            MBR            e-Shop        
##  [5525] MBR            e-Shop         MBR            e-Shop        
##  [5529] e-Shop         e-Shop         e-Shop         MBR           
##  [5533] MBR            TeleShop       MBR            TeleShop      
##  [5537] MBR            MBR            MBR            MBR           
##  [5541] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5545] e-Shop         Flagship store e-Shop         e-Shop        
##  [5549] Flagship store e-Shop         Flagship store TeleShop      
##  [5553] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5557] TeleShop       TeleShop       e-Shop         e-Shop        
##  [5561] TeleShop       e-Shop         e-Shop         Flagship store
##  [5565] TeleShop       Flagship store Flagship store Flagship store
##  [5569] TeleShop       Flagship store TeleShop       TeleShop      
##  [5573] TeleShop       Flagship store Flagship store Flagship store
##  [5577] Flagship store Flagship store Flagship store Flagship store
##  [5581] MBR            MBR            MBR            MBR           
##  [5585] MBR            MBR            Flagship store MBR           
##  [5589] MBR            MBR            MBR            MBR           
##  [5593] Flagship store MBR            Flagship store Flagship store
##  [5597] MBR            MBR            MBR            e-Shop        
##  [5601] e-Shop         MBR            MBR            MBR           
##  [5605] e-Shop         e-Shop         MBR            MBR           
##  [5609] MBR            e-Shop         e-Shop         e-Shop        
##  [5613] e-Shop         MBR            e-Shop         MBR           
##  [5617] MBR            e-Shop         MBR            MBR           
##  [5621] MBR            MBR            e-Shop         e-Shop        
##  [5625] Flagship store Flagship store Flagship store Flagship store
##  [5629] Flagship store MBR            MBR            MBR           
##  [5633] MBR            MBR            MBR            MBR           
##  [5637] TeleShop       MBR            TeleShop       Flagship store
##  [5641] MBR            MBR            Flagship store e-Shop        
##  [5645] e-Shop         e-Shop         TeleShop       e-Shop        
##  [5649] e-Shop         TeleShop       TeleShop       e-Shop        
##  [5653] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5657] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5661] Flagship store e-Shop         e-Shop         Flagship store
##  [5665] e-Shop         Flagship store Flagship store Flagship store
##  [5669] Flagship store Flagship store Flagship store Flagship store
##  [5673] Flagship store TeleShop       TeleShop       TeleShop      
##  [5677] TeleShop       TeleShop       e-Shop         e-Shop        
##  [5681] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5685] MBR            TeleShop       MBR            MBR           
##  [5689] MBR            e-Shop         TeleShop       e-Shop        
##  [5693] MBR            MBR            e-Shop         e-Shop        
##  [5697] TeleShop       e-Shop         e-Shop         e-Shop        
##  [5701] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5705] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5709] e-Shop         e-Shop         TeleShop       e-Shop        
##  [5713] TeleShop       TeleShop       TeleShop       MBR           
##  [5717] e-Shop         TeleShop       e-Shop         e-Shop        
##  [5721] e-Shop         TeleShop       MBR            MBR           
##  [5725] TeleShop       MBR            MBR            e-Shop        
##  [5729] e-Shop         TeleShop       e-Shop         MBR           
##  [5733] e-Shop         TeleShop       MBR            e-Shop        
##  [5737] TeleShop       e-Shop         TeleShop       MBR           
##  [5741] Flagship store Flagship store Flagship store Flagship store
##  [5745] Flagship store TeleShop       e-Shop         Flagship store
##  [5749] MBR            TeleShop       e-Shop         e-Shop        
##  [5753] Flagship store e-Shop         TeleShop       e-Shop        
##  [5757] Flagship store TeleShop       TeleShop       MBR           
##  [5761] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5765] MBR            e-Shop         MBR            e-Shop        
##  [5769] MBR            MBR            e-Shop         e-Shop        
##  [5773] MBR            e-Shop         MBR            MBR           
##  [5777] e-Shop         MBR            TeleShop       e-Shop        
##  [5781] e-Shop         e-Shop         e-Shop         MBR           
##  [5785] TeleShop       e-Shop         e-Shop         e-Shop        
##  [5789] Flagship store Flagship store Flagship store TeleShop      
##  [5793] TeleShop       e-Shop         e-Shop         e-Shop        
##  [5797] e-Shop         TeleShop       TeleShop       e-Shop        
##  [5801] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5805] e-Shop         e-Shop         MBR            MBR           
##  [5809] TeleShop       TeleShop       MBR            TeleShop      
##  [5813] TeleShop       MBR            TeleShop       TeleShop      
##  [5817] TeleShop       MBR            e-Shop         e-Shop        
##  [5821] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5825] e-Shop         MBR            MBR            e-Shop        
##  [5829] Flagship store Flagship store e-Shop         Flagship store
##  [5833] Flagship store Flagship store Flagship store Flagship store
##  [5837] Flagship store e-Shop         Flagship store e-Shop        
##  [5841] e-Shop         Flagship store Flagship store e-Shop        
##  [5845] e-Shop         MBR            MBR            Flagship store
##  [5849] Flagship store e-Shop         e-Shop         e-Shop        
##  [5853] e-Shop         e-Shop         e-Shop         MBR           
##  [5857] MBR            e-Shop         MBR            e-Shop        
##  [5861] e-Shop         e-Shop         MBR            TeleShop      
##  [5865] TeleShop       e-Shop         e-Shop         TeleShop      
##  [5869] TeleShop       TeleShop       MBR            e-Shop        
##  [5873] MBR            TeleShop       TeleShop       TeleShop      
##  [5877] TeleShop       TeleShop       TeleShop       TeleShop      
##  [5881] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5885] TeleShop       e-Shop         e-Shop         e-Shop        
##  [5889] TeleShop       TeleShop       e-Shop         e-Shop        
##  [5893] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5897] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5901] Flagship store Flagship store Flagship store e-Shop        
##  [5905] Flagship store Flagship store Flagship store Flagship store
##  [5909] e-Shop         Flagship store e-Shop         MBR           
##  [5913] TeleShop       e-Shop         MBR            TeleShop      
##  [5917] e-Shop         MBR            e-Shop         TeleShop      
##  [5921] MBR            MBR            TeleShop       TeleShop      
##  [5925] e-Shop         e-Shop         TeleShop       TeleShop      
##  [5929] TeleShop       MBR            MBR            MBR           
##  [5933] TeleShop       TeleShop       TeleShop       TeleShop      
##  [5937] TeleShop       TeleShop       TeleShop       TeleShop      
##  [5941] MBR            e-Shop         MBR            MBR           
##  [5945] MBR            e-Shop         MBR            e-Shop        
##  [5949] e-Shop         e-Shop         MBR            e-Shop        
##  [5953] MBR            MBR            MBR            e-Shop        
##  [5957] e-Shop         MBR            e-Shop         e-Shop        
##  [5961] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5965] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5969] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5973] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5977] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5981] e-Shop         e-Shop         e-Shop         e-Shop        
##  [5985] e-Shop         e-Shop         Flagship store e-Shop        
##  [5989] e-Shop         TeleShop       Flagship store e-Shop        
##  [5993] e-Shop         TeleShop       TeleShop       TeleShop      
##  [5997] TeleShop       Flagship store TeleShop       e-Shop        
##  [6001] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6005] TeleShop       TeleShop       e-Shop         e-Shop        
##  [6009] TeleShop       TeleShop       e-Shop         e-Shop        
##  [6013] e-Shop         MBR            e-Shop         e-Shop        
##  [6017] MBR            e-Shop         e-Shop         MBR           
##  [6021] e-Shop         MBR            Flagship store TeleShop      
##  [6025] TeleShop       TeleShop       TeleShop       MBR           
##  [6029] MBR            MBR            Flagship store TeleShop      
##  [6033] MBR            MBR            TeleShop       TeleShop      
##  [6037] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6041] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6045] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6049] TeleShop       Flagship store Flagship store TeleShop      
##  [6053] e-Shop         TeleShop       e-Shop         e-Shop        
##  [6057] TeleShop       TeleShop       TeleShop       e-Shop        
##  [6061] e-Shop         MBR            MBR            e-Shop        
##  [6065] e-Shop         MBR            MBR            e-Shop        
##  [6069] MBR            MBR            MBR            e-Shop        
##  [6073] MBR            MBR            e-Shop         MBR           
##  [6077] e-Shop         MBR            e-Shop         e-Shop        
##  [6081] e-Shop         MBR            MBR            e-Shop        
##  [6085] MBR            e-Shop         MBR            MBR           
##  [6089] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6093] MBR            TeleShop       TeleShop       TeleShop      
##  [6097] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6101] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6105] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6109] TeleShop       TeleShop       TeleShop       MBR           
##  [6113] MBR            MBR            MBR            MBR           
##  [6117] MBR            MBR            MBR            Flagship store
##  [6121] e-Shop         Flagship store Flagship store Flagship store
##  [6125] Flagship store MBR            Flagship store Flagship store
##  [6129] Flagship store e-Shop         Flagship store e-Shop        
##  [6133] MBR            e-Shop         MBR            e-Shop        
##  [6137] e-Shop         MBR            e-Shop         Flagship store
##  [6141] e-Shop         e-Shop         e-Shop         MBR           
##  [6145] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6149] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6153] e-Shop         e-Shop         MBR            e-Shop        
##  [6157] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6161] e-Shop         TeleShop       e-Shop         TeleShop      
##  [6165] TeleShop       TeleShop       e-Shop         TeleShop      
##  [6169] TeleShop       TeleShop       MBR            MBR           
##  [6173] MBR            Flagship store Flagship store Flagship store
##  [6177] TeleShop       Flagship store TeleShop       Flagship store
##  [6181] Flagship store Flagship store TeleShop       e-Shop        
##  [6185] TeleShop       e-Shop         e-Shop         TeleShop      
##  [6189] e-Shop         e-Shop         e-Shop         MBR           
##  [6193] MBR            MBR            e-Shop         MBR           
##  [6197] MBR            e-Shop         e-Shop         e-Shop        
##  [6201] e-Shop         e-Shop         Flagship store Flagship store
##  [6205] Flagship store e-Shop         e-Shop         Flagship store
##  [6209] Flagship store e-Shop         Flagship store Flagship store
##  [6213] Flagship store Flagship store e-Shop         e-Shop        
##  [6217] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6221] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6225] MBR            e-Shop         e-Shop         e-Shop        
##  [6229] MBR            MBR            e-Shop         e-Shop        
##  [6233] Flagship store MBR            Flagship store MBR           
##  [6237] MBR            e-Shop         e-Shop         e-Shop        
##  [6241] MBR            MBR            e-Shop         Flagship store
##  [6245] Flagship store Flagship store Flagship store Flagship store
##  [6249] MBR            Flagship store e-Shop         e-Shop        
##  [6253] MBR            TeleShop       TeleShop       e-Shop        
##  [6257] TeleShop       TeleShop       e-Shop         TeleShop      
##  [6261] TeleShop       TeleShop       Flagship store TeleShop      
##  [6265] e-Shop         TeleShop       e-Shop         Flagship store
##  [6269] Flagship store e-Shop         TeleShop       MBR           
##  [6273] MBR            Flagship store TeleShop       TeleShop      
##  [6277] MBR            Flagship store TeleShop       Flagship store
##  [6281] Flagship store Flagship store TeleShop       e-Shop        
##  [6285] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6289] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6293] e-Shop         TeleShop       TeleShop       Flagship store
##  [6297] Flagship store Flagship store Flagship store e-Shop        
##  [6301] e-Shop         MBR            MBR            MBR           
##  [6305] MBR            MBR            Flagship store TeleShop      
##  [6309] e-Shop         Flagship store e-Shop         MBR           
##  [6313] e-Shop         MBR            e-Shop         TeleShop      
##  [6317] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6321] TeleShop       e-Shop         e-Shop         MBR           
##  [6325] MBR            MBR            Flagship store Flagship store
##  [6329] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6333] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6337] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6341] e-Shop         e-Shop         e-Shop         TeleShop      
##  [6345] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6349] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6353] Flagship store TeleShop       TeleShop       TeleShop      
##  [6357] TeleShop       Flagship store TeleShop       MBR           
##  [6361] MBR            MBR            e-Shop         e-Shop        
##  [6365] MBR            MBR            e-Shop         TeleShop      
##  [6369] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6373] e-Shop         e-Shop         TeleShop       e-Shop        
##  [6377] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6381] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6385] Flagship store Flagship store Flagship store MBR           
##  [6389] MBR            Flagship store MBR            Flagship store
##  [6393] MBR            Flagship store Flagship store MBR           
##  [6397] MBR            Flagship store Flagship store Flagship store
##  [6401] MBR            e-Shop         e-Shop         MBR           
##  [6405] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6409] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6413] e-Shop         MBR            MBR            e-Shop        
##  [6417] MBR            e-Shop         e-Shop         e-Shop        
##  [6421] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6425] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6429] TeleShop       e-Shop         TeleShop       e-Shop        
##  [6433] e-Shop         e-Shop         e-Shop         Flagship store
##  [6437] Flagship store Flagship store TeleShop       TeleShop      
##  [6441] Flagship store e-Shop         e-Shop         e-Shop        
##  [6445] MBR            e-Shop         e-Shop         MBR           
##  [6449] Flagship store Flagship store Flagship store Flagship store
##  [6453] Flagship store Flagship store e-Shop         e-Shop        
##  [6457] TeleShop       Flagship store Flagship store Flagship store
##  [6461] e-Shop         Flagship store TeleShop       TeleShop      
##  [6465] e-Shop         TeleShop       TeleShop       e-Shop        
##  [6469] e-Shop         e-Shop         Flagship store TeleShop      
##  [6473] e-Shop         TeleShop       e-Shop         e-Shop        
##  [6477] TeleShop       TeleShop       TeleShop       e-Shop        
##  [6481] e-Shop         e-Shop         e-Shop         MBR           
##  [6485] MBR            e-Shop         e-Shop         e-Shop        
##  [6489] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6493] e-Shop         e-Shop         TeleShop       TeleShop      
##  [6497] Flagship store TeleShop       TeleShop       TeleShop      
##  [6501] Flagship store Flagship store MBR            e-Shop        
##  [6505] e-Shop         Flagship store e-Shop         e-Shop        
##  [6509] MBR            e-Shop         Flagship store Flagship store
##  [6513] e-Shop         e-Shop         MBR            MBR           
##  [6517] e-Shop         Flagship store e-Shop         MBR           
##  [6521] e-Shop         Flagship store Flagship store MBR           
##  [6525] MBR            Flagship store Flagship store e-Shop        
##  [6529] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6533] e-Shop         e-Shop         e-Shop         MBR           
##  [6537] e-Shop         MBR            e-Shop         e-Shop        
##  [6541] e-Shop         MBR            MBR            e-Shop        
##  [6545] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6549] e-Shop         MBR            e-Shop         e-Shop        
##  [6553] MBR            MBR            e-Shop         e-Shop        
##  [6557] e-Shop         e-Shop         e-Shop         Flagship store
##  [6561] Flagship store Flagship store Flagship store TeleShop      
##  [6565] TeleShop       TeleShop       Flagship store TeleShop      
##  [6569] TeleShop       Flagship store TeleShop       TeleShop      
##  [6573] TeleShop       TeleShop       TeleShop       MBR           
##  [6577] MBR            MBR            Flagship store Flagship store
##  [6581] Flagship store Flagship store MBR            Flagship store
##  [6585] Flagship store Flagship store e-Shop         Flagship store
##  [6589] Flagship store e-Shop         MBR            MBR           
##  [6593] MBR            e-Shop         MBR            MBR           
##  [6597] Flagship store Flagship store Flagship store Flagship store
##  [6601] Flagship store MBR            MBR            Flagship store
##  [6605] Flagship store Flagship store Flagship store Flagship store
##  [6609] MBR            e-Shop         e-Shop         MBR           
##  [6613] MBR            e-Shop         e-Shop         Flagship store
##  [6617] Flagship store Flagship store Flagship store Flagship store
##  [6621] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6625] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6629] TeleShop       TeleShop       MBR            TeleShop      
##  [6633] TeleShop       MBR            MBR            e-Shop        
##  [6637] e-Shop         MBR            MBR            MBR           
##  [6641] MBR            MBR            MBR            MBR           
##  [6645] MBR            MBR            Flagship store MBR           
##  [6649] Flagship store Flagship store Flagship store Flagship store
##  [6653] MBR            Flagship store Flagship store MBR           
##  [6657] TeleShop       MBR            TeleShop       TeleShop      
##  [6661] TeleShop       MBR            MBR            MBR           
##  [6665] MBR            MBR            MBR            MBR           
##  [6669] MBR            MBR            MBR            MBR           
##  [6673] MBR            MBR            MBR            e-Shop        
##  [6677] MBR            MBR            MBR            e-Shop        
##  [6681] e-Shop         MBR            e-Shop         e-Shop        
##  [6685] e-Shop         e-Shop         Flagship store Flagship store
##  [6689] MBR            e-Shop         Flagship store Flagship store
##  [6693] MBR            e-Shop         e-Shop         Flagship store
##  [6697] Flagship store e-Shop         e-Shop         e-Shop        
##  [6701] Flagship store e-Shop         Flagship store Flagship store
##  [6705] MBR            e-Shop         e-Shop         e-Shop        
##  [6709] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6713] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6717] MBR            e-Shop         MBR            e-Shop        
##  [6721] MBR            MBR            e-Shop         MBR           
##  [6725] MBR            TeleShop       TeleShop       Flagship store
##  [6729] Flagship store TeleShop       Flagship store Flagship store
##  [6733] TeleShop       Flagship store TeleShop       TeleShop      
##  [6737] Flagship store TeleShop       TeleShop       MBR           
##  [6741] MBR            TeleShop       TeleShop       TeleShop      
##  [6745] TeleShop       Flagship store Flagship store Flagship store
##  [6749] Flagship store TeleShop       Flagship store TeleShop      
##  [6753] TeleShop       MBR            TeleShop       MBR           
##  [6757] TeleShop       MBR            MBR            TeleShop      
##  [6761] TeleShop       MBR            MBR            TeleShop      
##  [6765] TeleShop       TeleShop       MBR            TeleShop      
##  [6769] MBR            TeleShop       MBR            MBR           
##  [6773] e-Shop         e-Shop         MBR            MBR           
##  [6777] e-Shop         e-Shop         MBR            e-Shop        
##  [6781] MBR            e-Shop         MBR            e-Shop        
##  [6785] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6789] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6793] TeleShop       e-Shop         e-Shop         e-Shop        
##  [6797] TeleShop       e-Shop         TeleShop       e-Shop        
##  [6801] e-Shop         TeleShop       Flagship store TeleShop      
##  [6805] TeleShop       Flagship store e-Shop         e-Shop        
##  [6809] Flagship store Flagship store e-Shop         Flagship store
##  [6813] e-Shop         TeleShop       Flagship store Flagship store
##  [6817] Flagship store TeleShop       TeleShop       e-Shop        
##  [6821] Flagship store Flagship store e-Shop         e-Shop        
##  [6825] e-Shop         e-Shop         e-Shop         Flagship store
##  [6829] e-Shop         Flagship store Flagship store e-Shop        
##  [6833] Flagship store e-Shop         Flagship store e-Shop        
##  [6837] Flagship store e-Shop         Flagship store e-Shop        
##  [6841] e-Shop         e-Shop         TeleShop       e-Shop        
##  [6845] e-Shop         TeleShop       e-Shop         e-Shop        
##  [6849] TeleShop       e-Shop         TeleShop       e-Shop        
##  [6853] e-Shop         TeleShop       e-Shop         e-Shop        
##  [6857] e-Shop         TeleShop       e-Shop         TeleShop      
##  [6861] TeleShop       e-Shop         e-Shop         e-Shop        
##  [6865] MBR            TeleShop       TeleShop       e-Shop        
##  [6869] e-Shop         Flagship store TeleShop       TeleShop      
##  [6873] MBR            e-Shop         Flagship store MBR           
##  [6877] TeleShop       MBR            MBR            TeleShop      
##  [6881] TeleShop       e-Shop         Flagship store Flagship store
##  [6885] e-Shop         e-Shop         e-Shop         TeleShop      
##  [6889] e-Shop         e-Shop         e-Shop         TeleShop      
##  [6893] e-Shop         e-Shop         e-Shop         e-Shop        
##  [6897] TeleShop       Flagship store TeleShop       Flagship store
##  [6901] TeleShop       Flagship store TeleShop       TeleShop      
##  [6905] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6909] TeleShop       MBR            MBR            TeleShop      
##  [6913] e-Shop         MBR            e-Shop         MBR           
##  [6917] MBR            e-Shop         e-Shop         MBR           
##  [6921] e-Shop         MBR            e-Shop         e-Shop        
##  [6925] e-Shop         e-Shop         MBR            e-Shop        
##  [6929] MBR            MBR            e-Shop         e-Shop        
##  [6933] e-Shop         e-Shop         e-Shop         Flagship store
##  [6937] MBR            Flagship store MBR            MBR           
##  [6941] Flagship store Flagship store Flagship store e-Shop        
##  [6945] e-Shop         e-Shop         MBR            e-Shop        
##  [6949] MBR            e-Shop         Flagship store Flagship store
##  [6953] Flagship store Flagship store e-Shop         Flagship store
##  [6957] e-Shop         e-Shop         TeleShop       TeleShop      
##  [6961] TeleShop       TeleShop       TeleShop       TeleShop      
##  [6965] MBR            TeleShop       TeleShop       MBR           
##  [6969] TeleShop       e-Shop         e-Shop         MBR           
##  [6973] MBR            e-Shop         MBR            MBR           
##  [6977] e-Shop         MBR            e-Shop         e-Shop        
##  [6981] MBR            e-Shop         e-Shop         e-Shop        
##  [6985] Flagship store Flagship store Flagship store MBR           
##  [6989] Flagship store MBR            MBR            MBR           
##  [6993] Flagship store MBR            MBR            e-Shop        
##  [6997] e-Shop         MBR            e-Shop         e-Shop        
##  [7001] MBR            Flagship store MBR            Flagship store
##  [7005] e-Shop         Flagship store Flagship store Flagship store
##  [7009] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7013] TeleShop       e-Shop         e-Shop         e-Shop        
##  [7017] Flagship store TeleShop       Flagship store TeleShop      
##  [7021] Flagship store Flagship store TeleShop       e-Shop        
##  [7025] e-Shop         e-Shop         MBR            MBR           
##  [7029] e-Shop         e-Shop         e-Shop         Flagship store
##  [7033] e-Shop         e-Shop         e-Shop         Flagship store
##  [7037] e-Shop         e-Shop         e-Shop         Flagship store
##  [7041] e-Shop         e-Shop         e-Shop         Flagship store
##  [7045] Flagship store Flagship store e-Shop         e-Shop        
##  [7049] e-Shop         Flagship store e-Shop         e-Shop        
##  [7053] e-Shop         e-Shop         Flagship store TeleShop      
##  [7057] Flagship store Flagship store Flagship store Flagship store
##  [7061] Flagship store Flagship store e-Shop         e-Shop        
##  [7065] Flagship store TeleShop       Flagship store Flagship store
##  [7069] Flagship store e-Shop         e-Shop         e-Shop        
##  [7073] e-Shop         Flagship store e-Shop         Flagship store
##  [7077] e-Shop         e-Shop         e-Shop         MBR           
##  [7081] e-Shop         e-Shop         MBR            e-Shop        
##  [7085] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7089] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7093] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7097] e-Shop         e-Shop         TeleShop       TeleShop      
##  [7101] Flagship store e-Shop         TeleShop       Flagship store
##  [7105] e-Shop         e-Shop         e-Shop         MBR           
##  [7109] e-Shop         e-Shop         MBR            e-Shop        
##  [7113] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7117] e-Shop         e-Shop         MBR            e-Shop        
##  [7121] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7125] e-Shop         e-Shop         e-Shop         TeleShop      
##  [7129] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7133] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7137] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7141] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7145] TeleShop       TeleShop       MBR            MBR           
##  [7149] MBR            MBR            e-Shop         e-Shop        
##  [7153] MBR            MBR            e-Shop         e-Shop        
##  [7157] e-Shop         e-Shop         TeleShop       e-Shop        
##  [7161] TeleShop       TeleShop       TeleShop       e-Shop        
##  [7165] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7169] e-Shop         e-Shop         TeleShop       e-Shop        
##  [7173] e-Shop         TeleShop       TeleShop       e-Shop        
##  [7177] e-Shop         TeleShop       e-Shop         TeleShop      
##  [7181] e-Shop         e-Shop         e-Shop         TeleShop      
##  [7185] MBR            TeleShop       MBR            e-Shop        
##  [7189] TeleShop       Flagship store MBR            e-Shop        
##  [7193] e-Shop         e-Shop         Flagship store e-Shop        
##  [7197] TeleShop       TeleShop       TeleShop       Flagship store
##  [7201] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7205] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7209] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7213] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7217] TeleShop       TeleShop       e-Shop         TeleShop      
##  [7221] e-Shop         e-Shop         TeleShop       Flagship store
##  [7225] e-Shop         e-Shop         Flagship store Flagship store
##  [7229] MBR            MBR            MBR            MBR           
##  [7233] MBR            e-Shop         e-Shop         e-Shop        
##  [7237] MBR            e-Shop         MBR            MBR           
##  [7241] e-Shop         MBR            Flagship store e-Shop        
##  [7245] e-Shop         Flagship store MBR            TeleShop      
##  [7249] Flagship store TeleShop       TeleShop       MBR           
##  [7253] TeleShop       MBR            MBR            Flagship store
##  [7257] MBR            MBR            MBR            MBR           
##  [7261] MBR            Flagship store Flagship store Flagship store
##  [7265] Flagship store Flagship store Flagship store Flagship store
##  [7269] Flagship store Flagship store Flagship store e-Shop        
##  [7273] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7277] TeleShop       Flagship store e-Shop         TeleShop      
##  [7281] e-Shop         TeleShop       Flagship store TeleShop      
##  [7285] Flagship store e-Shop         e-Shop         e-Shop        
##  [7289] e-Shop         e-Shop         TeleShop       e-Shop        
##  [7293] e-Shop         e-Shop         TeleShop       e-Shop        
##  [7297] e-Shop         TeleShop       TeleShop       e-Shop        
##  [7301] e-Shop         TeleShop       e-Shop         e-Shop        
##  [7305] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7309] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7313] e-Shop         e-Shop         Flagship store Flagship store
##  [7317] Flagship store Flagship store TeleShop       TeleShop      
##  [7321] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7325] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7329] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7333] TeleShop       e-Shop         e-Shop         e-Shop        
##  [7337] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7341] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7345] e-Shop         Flagship store e-Shop         Flagship store
##  [7349] Flagship store e-Shop         Flagship store Flagship store
##  [7353] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7357] e-Shop         e-Shop         Flagship store e-Shop        
##  [7361] Flagship store e-Shop         Flagship store Flagship store
##  [7365] e-Shop         Flagship store e-Shop         e-Shop        
##  [7369] Flagship store TeleShop       Flagship store Flagship store
##  [7373] Flagship store Flagship store TeleShop       TeleShop      
##  [7377] Flagship store Flagship store Flagship store e-Shop        
##  [7381] MBR            e-Shop         MBR            MBR           
##  [7385] e-Shop         MBR            MBR            e-Shop        
##  [7389] MBR            e-Shop         e-Shop         TeleShop      
##  [7393] TeleShop       TeleShop       Flagship store Flagship store
##  [7397] Flagship store Flagship store e-Shop         e-Shop        
##  [7401] Flagship store e-Shop         Flagship store TeleShop      
##  [7405] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7409] TeleShop       TeleShop       MBR            MBR           
##  [7413] MBR            MBR            MBR            MBR           
##  [7417] Flagship store MBR            Flagship store MBR           
##  [7421] MBR            e-Shop         e-Shop         MBR           
##  [7425] TeleShop       e-Shop         Flagship store MBR           
##  [7429] Flagship store Flagship store Flagship store TeleShop      
##  [7433] e-Shop         Flagship store TeleShop       TeleShop      
##  [7437] TeleShop       e-Shop         TeleShop       TeleShop      
##  [7441] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7445] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7449] e-Shop         e-Shop         e-Shop         Flagship store
##  [7453] e-Shop         Flagship store Flagship store Flagship store
##  [7457] MBR            e-Shop         Flagship store MBR           
##  [7461] e-Shop         Flagship store Flagship store Flagship store
##  [7465] Flagship store e-Shop         e-Shop         Flagship store
##  [7469] Flagship store Flagship store e-Shop         e-Shop        
##  [7473] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7477] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7481] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7485] MBR            MBR            MBR            TeleShop      
##  [7489] e-Shop         TeleShop       e-Shop         e-Shop        
##  [7493] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7497] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7501] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7505] e-Shop         e-Shop         Flagship store e-Shop        
##  [7509] e-Shop         e-Shop         e-Shop         Flagship store
##  [7513] e-Shop         e-Shop         Flagship store Flagship store
##  [7517] Flagship store e-Shop         e-Shop         e-Shop        
##  [7521] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7525] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7529] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7533] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7537] e-Shop         Flagship store Flagship store Flagship store
##  [7541] e-Shop         Flagship store TeleShop       MBR           
##  [7545] TeleShop       TeleShop       MBR            MBR           
##  [7549] MBR            e-Shop         Flagship store Flagship store
##  [7553] e-Shop         TeleShop       Flagship store TeleShop      
##  [7557] TeleShop       TeleShop       e-Shop         e-Shop        
##  [7561] MBR            MBR            MBR            MBR           
##  [7565] MBR            e-Shop         MBR            Flagship store
##  [7569] e-Shop         e-Shop         e-Shop         Flagship store
##  [7573] MBR            e-Shop         Flagship store Flagship store
##  [7577] e-Shop         e-Shop         e-Shop         MBR           
##  [7581] e-Shop         e-Shop         MBR            Flagship store
##  [7585] MBR            MBR            MBR            MBR           
##  [7589] MBR            e-Shop         MBR            e-Shop        
##  [7593] MBR            MBR            MBR            MBR           
##  [7597] MBR            MBR            MBR            e-Shop        
##  [7601] e-Shop         MBR            MBR            Flagship store
##  [7605] MBR            MBR            Flagship store MBR           
##  [7609] MBR            TeleShop       TeleShop       e-Shop        
##  [7613] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7617] Flagship store Flagship store Flagship store Flagship store
##  [7621] Flagship store e-Shop         e-Shop         e-Shop        
##  [7625] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7629] e-Shop         TeleShop       TeleShop       e-Shop        
##  [7633] e-Shop         e-Shop         TeleShop       TeleShop      
##  [7637] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7641] e-Shop         TeleShop       e-Shop         TeleShop      
##  [7645] TeleShop       e-Shop         e-Shop         e-Shop        
##  [7649] TeleShop       e-Shop         MBR            MBR           
##  [7653] e-Shop         MBR            e-Shop         Flagship store
##  [7657] MBR            Flagship store e-Shop         e-Shop        
##  [7661] e-Shop         e-Shop         Flagship store Flagship store
##  [7665] Flagship store MBR            MBR            MBR           
##  [7669] TeleShop       TeleShop       MBR            MBR           
##  [7673] MBR            MBR            MBR            MBR           
##  [7677] MBR            MBR            MBR            MBR           
##  [7681] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7685] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7689] TeleShop       TeleShop       e-Shop         TeleShop      
##  [7693] e-Shop         TeleShop       Flagship store Flagship store
##  [7697] Flagship store Flagship store TeleShop       TeleShop      
##  [7701] TeleShop       TeleShop       MBR            e-Shop        
##  [7705] TeleShop       e-Shop         MBR            e-Shop        
##  [7709] e-Shop         e-Shop         Flagship store Flagship store
##  [7713] TeleShop       MBR            Flagship store Flagship store
##  [7717] Flagship store MBR            Flagship store Flagship store
##  [7721] MBR            MBR            Flagship store Flagship store
##  [7725] MBR            MBR            MBR            MBR           
##  [7729] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7733] e-Shop         e-Shop         e-Shop         MBR           
##  [7737] MBR            e-Shop         MBR            MBR           
##  [7741] MBR            Flagship store Flagship store e-Shop        
##  [7745] e-Shop         Flagship store e-Shop         Flagship store
##  [7749] Flagship store e-Shop         MBR            Flagship store
##  [7753] Flagship store Flagship store Flagship store Flagship store
##  [7757] Flagship store MBR            MBR            Flagship store
##  [7761] Flagship store MBR            MBR            Flagship store
##  [7765] MBR            MBR            TeleShop       e-Shop        
##  [7769] e-Shop         e-Shop         e-Shop         TeleShop      
##  [7773] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7777] e-Shop         TeleShop       TeleShop       TeleShop      
##  [7781] TeleShop       TeleShop       TeleShop       e-Shop        
##  [7785] TeleShop       TeleShop       TeleShop       e-Shop        
##  [7789] Flagship store Flagship store Flagship store Flagship store
##  [7793] Flagship store Flagship store Flagship store Flagship store
##  [7797] MBR            MBR            MBR            MBR           
##  [7801] MBR            MBR            MBR            MBR           
##  [7805] MBR            MBR            MBR            MBR           
##  [7809] TeleShop       TeleShop       MBR            TeleShop      
##  [7813] MBR            TeleShop       MBR            MBR           
##  [7817] TeleShop       TeleShop       Flagship store Flagship store
##  [7821] Flagship store Flagship store Flagship store Flagship store
##  [7825] TeleShop       TeleShop       TeleShop       e-Shop        
##  [7829] e-Shop         TeleShop       TeleShop       e-Shop        
##  [7833] e-Shop         e-Shop         e-Shop         MBR           
##  [7837] MBR            MBR            MBR            MBR           
##  [7841] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7845] TeleShop       TeleShop       Flagship store Flagship store
##  [7849] Flagship store TeleShop       Flagship store Flagship store
##  [7853] Flagship store e-Shop         e-Shop         Flagship store
##  [7857] Flagship store e-Shop         MBR            TeleShop      
##  [7861] e-Shop         e-Shop         e-Shop         TeleShop      
##  [7865] MBR            TeleShop       e-Shop         Flagship store
##  [7869] Flagship store TeleShop       TeleShop       Flagship store
##  [7873] Flagship store Flagship store TeleShop       TeleShop      
##  [7877] TeleShop       Flagship store MBR            Flagship store
##  [7881] MBR            TeleShop       MBR            MBR           
##  [7885] MBR            TeleShop       Flagship store MBR           
##  [7889] Flagship store MBR            MBR            MBR           
##  [7893] MBR            MBR            MBR            Flagship store
##  [7897] MBR            MBR            MBR            Flagship store
##  [7901] e-Shop         MBR            TeleShop       TeleShop      
##  [7905] e-Shop         e-Shop         TeleShop       MBR           
##  [7909] TeleShop       MBR            TeleShop       e-Shop        
##  [7913] MBR            TeleShop       e-Shop         e-Shop        
##  [7917] Flagship store MBR            TeleShop       MBR           
##  [7921] TeleShop       MBR            MBR            Flagship store
##  [7925] MBR            MBR            e-Shop         e-Shop        
##  [7929] e-Shop         e-Shop         e-Shop         e-Shop        
##  [7933] e-Shop         e-Shop         e-Shop         TeleShop      
##  [7937] MBR            MBR            TeleShop       MBR           
##  [7941] MBR            MBR            MBR            Flagship store
##  [7945] MBR            MBR            MBR            Flagship store
##  [7949] Flagship store MBR            MBR            MBR           
##  [7953] MBR            MBR            e-Shop         MBR           
##  [7957] Flagship store e-Shop         MBR            MBR           
##  [7961] MBR            MBR            MBR            MBR           
##  [7965] MBR            Flagship store TeleShop       TeleShop      
##  [7969] TeleShop       TeleShop       TeleShop       TeleShop      
##  [7973] TeleShop       TeleShop       TeleShop       e-Shop        
##  [7977] TeleShop       TeleShop       TeleShop       e-Shop        
##  [7981] e-Shop         TeleShop       e-Shop         MBR           
##  [7985] e-Shop         MBR            e-Shop         e-Shop        
##  [7989] MBR            MBR            MBR            MBR           
##  [7993] MBR            e-Shop         e-Shop         e-Shop        
##  [7997] e-Shop         e-Shop         TeleShop       e-Shop        
##  [8001] e-Shop         e-Shop         e-Shop         TeleShop      
##  [8005] Flagship store Flagship store Flagship store Flagship store
##  [8009] Flagship store TeleShop       TeleShop       e-Shop        
##  [8013] e-Shop         Flagship store Flagship store Flagship store
##  [8017] Flagship store Flagship store Flagship store Flagship store
##  [8021] TeleShop       e-Shop         TeleShop       TeleShop      
##  [8025] TeleShop       TeleShop       e-Shop         TeleShop      
##  [8029] TeleShop       e-Shop         e-Shop         e-Shop        
##  [8033] e-Shop         e-Shop         TeleShop       TeleShop      
##  [8037] e-Shop         TeleShop       e-Shop         e-Shop        
##  [8041] TeleShop       e-Shop         e-Shop         e-Shop        
##  [8045] e-Shop         Flagship store e-Shop         Flagship store
##  [8049] Flagship store e-Shop         e-Shop         e-Shop        
##  [8053] TeleShop       e-Shop         TeleShop       TeleShop      
##  [8057] e-Shop         TeleShop       TeleShop       TeleShop      
##  [8061] TeleShop       TeleShop       TeleShop       TeleShop      
##  [8065] TeleShop       TeleShop       TeleShop       TeleShop      
##  [8069] Flagship store MBR            MBR            Flagship store
##  [8073] Flagship store MBR            MBR            TeleShop      
##  [8077] Flagship store Flagship store MBR            TeleShop      
##  [8081] TeleShop       e-Shop         e-Shop         e-Shop        
##  [8085] Flagship store Flagship store e-Shop         e-Shop        
##  [8089] e-Shop         e-Shop         MBR            MBR           
##  [8093] MBR            MBR            e-Shop         MBR           
##  [8097] Flagship store Flagship store Flagship store Flagship store
##  [8101] Flagship store Flagship store Flagship store Flagship store
##  [8105] Flagship store Flagship store e-Shop         e-Shop        
##  [8109] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8113] e-Shop         e-Shop         e-Shop         MBR           
##  [8117] MBR            e-Shop         e-Shop         e-Shop        
##  [8121] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8125] e-Shop         e-Shop         MBR            e-Shop        
##  [8129] MBR            e-Shop         e-Shop         e-Shop        
##  [8133] e-Shop         TeleShop       TeleShop       e-Shop        
##  [8137] TeleShop       e-Shop         TeleShop       TeleShop      
##  [8141] e-Shop         e-Shop         TeleShop       e-Shop        
##  [8145] Flagship store Flagship store e-Shop         e-Shop        
##  [8149] e-Shop         Flagship store e-Shop         MBR           
##  [8153] MBR            e-Shop         e-Shop         e-Shop        
##  [8157] e-Shop         e-Shop         e-Shop         Flagship store
##  [8161] Flagship store Flagship store e-Shop         e-Shop        
##  [8165] Flagship store e-Shop         e-Shop         Flagship store
##  [8169] e-Shop         e-Shop         e-Shop         Flagship store
##  [8173] Flagship store Flagship store Flagship store Flagship store
##  [8177] Flagship store MBR            Flagship store MBR           
##  [8181] MBR            MBR            MBR            e-Shop        
##  [8185] e-Shop         e-Shop         MBR            MBR           
##  [8189] MBR            e-Shop         e-Shop         TeleShop      
##  [8193] e-Shop         e-Shop         TeleShop       e-Shop        
##  [8197] Flagship store TeleShop       TeleShop       TeleShop      
##  [8201] TeleShop       Flagship store TeleShop       TeleShop      
##  [8205] TeleShop       TeleShop       TeleShop       TeleShop      
##  [8209] Flagship store TeleShop       Flagship store TeleShop      
##  [8213] Flagship store MBR            Flagship store MBR           
##  [8217] MBR            MBR            Flagship store Flagship store
##  [8221] e-Shop         Flagship store Flagship store e-Shop        
##  [8225] e-Shop         MBR            e-Shop         TeleShop      
##  [8229] e-Shop         MBR            TeleShop       MBR           
##  [8233] MBR            MBR            MBR            MBR           
##  [8237] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8241] TeleShop       e-Shop         e-Shop         e-Shop        
##  [8245] TeleShop       e-Shop         TeleShop       MBR           
##  [8249] MBR            TeleShop       TeleShop       e-Shop        
##  [8253] TeleShop       TeleShop       e-Shop         e-Shop        
##  [8257] TeleShop       TeleShop       e-Shop         e-Shop        
##  [8261] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8265] e-Shop         TeleShop       e-Shop         e-Shop        
##  [8269] TeleShop       TeleShop       TeleShop       MBR           
##  [8273] MBR            MBR            Flagship store Flagship store
##  [8277] Flagship store MBR            MBR            MBR           
##  [8281] MBR            MBR            Flagship store MBR           
##  [8285] Flagship store e-Shop         Flagship store MBR           
##  [8289] MBR            MBR            MBR            e-Shop        
##  [8293] Flagship store e-Shop         Flagship store e-Shop        
##  [8297] e-Shop         Flagship store Flagship store Flagship store
##  [8301] Flagship store e-Shop         Flagship store e-Shop        
##  [8305] TeleShop       TeleShop       Flagship store e-Shop        
##  [8309] TeleShop       TeleShop       Flagship store Flagship store
##  [8313] Flagship store TeleShop       TeleShop       Flagship store
##  [8317] Flagship store Flagship store Flagship store Flagship store
##  [8321] Flagship store Flagship store Flagship store Flagship store
##  [8325] Flagship store Flagship store MBR            MBR           
##  [8329] e-Shop         e-Shop         MBR            MBR           
##  [8333] MBR            MBR            MBR            MBR           
##  [8337] MBR            MBR            MBR            MBR           
##  [8341] MBR            MBR            Flagship store Flagship store
##  [8345] TeleShop       TeleShop       TeleShop       TeleShop      
##  [8349] TeleShop       Flagship store MBR            Flagship store
##  [8353] Flagship store Flagship store MBR            TeleShop      
##  [8357] Flagship store Flagship store Flagship store MBR           
##  [8361] Flagship store Flagship store Flagship store Flagship store
##  [8365] TeleShop       TeleShop       MBR            MBR           
##  [8369] TeleShop       MBR            TeleShop       MBR           
##  [8373] TeleShop       MBR            e-Shop         e-Shop        
##  [8377] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8381] e-Shop         MBR            MBR            MBR           
##  [8385] TeleShop       TeleShop       MBR            TeleShop      
##  [8389] MBR            MBR            MBR            MBR           
##  [8393] TeleShop       TeleShop       MBR            MBR           
##  [8397] TeleShop       TeleShop       e-Shop         e-Shop        
##  [8401] TeleShop       TeleShop       TeleShop       TeleShop      
##  [8405] MBR            TeleShop       MBR            e-Shop        
##  [8409] TeleShop       MBR            Flagship store Flagship store
##  [8413] e-Shop         e-Shop         e-Shop         Flagship store
##  [8417] e-Shop         e-Shop         Flagship store Flagship store
##  [8421] Flagship store Flagship store e-Shop         e-Shop        
##  [8425] Flagship store TeleShop       TeleShop       e-Shop        
##  [8429] e-Shop         MBR            MBR            MBR           
##  [8433] e-Shop         e-Shop         MBR            TeleShop      
##  [8437] TeleShop       e-Shop         TeleShop       e-Shop        
##  [8441] e-Shop         TeleShop       Flagship store Flagship store
##  [8445] e-Shop         e-Shop         e-Shop         Flagship store
##  [8449] Flagship store Flagship store Flagship store Flagship store
##  [8453] e-Shop         e-Shop         e-Shop         TeleShop      
##  [8457] TeleShop       TeleShop       e-Shop         TeleShop      
##  [8461] TeleShop       TeleShop       TeleShop       e-Shop        
##  [8465] e-Shop         e-Shop         MBR            e-Shop        
##  [8469] e-Shop         e-Shop         e-Shop         MBR           
##  [8473] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8477] e-Shop         e-Shop         MBR            MBR           
##  [8481] MBR            MBR            MBR            MBR           
##  [8485] MBR            MBR            MBR            TeleShop      
##  [8489] MBR            TeleShop       TeleShop       TeleShop      
##  [8493] MBR            MBR            MBR            MBR           
##  [8497] MBR            TeleShop       e-Shop         e-Shop        
##  [8501] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8505] e-Shop         TeleShop       e-Shop         e-Shop        
##  [8509] e-Shop         e-Shop         TeleShop       e-Shop        
##  [8513] e-Shop         TeleShop       TeleShop       TeleShop      
##  [8517] e-Shop         e-Shop         TeleShop       Flagship store
##  [8521] e-Shop         Flagship store e-Shop         MBR           
##  [8525] MBR            MBR            MBR            MBR           
##  [8529] e-Shop         MBR            MBR            MBR           
##  [8533] e-Shop         MBR            MBR            MBR           
##  [8537] MBR            MBR            MBR            MBR           
##  [8541] MBR            MBR            MBR            MBR           
##  [8545] MBR            MBR            TeleShop       Flagship store
##  [8549] TeleShop       Flagship store Flagship store Flagship store
##  [8553] Flagship store Flagship store Flagship store Flagship store
##  [8557] Flagship store TeleShop       TeleShop       Flagship store
##  [8561] TeleShop       Flagship store TeleShop       TeleShop      
##  [8565] Flagship store Flagship store MBR            e-Shop        
##  [8569] MBR            MBR            e-Shop         MBR           
##  [8573] MBR            MBR            MBR            MBR           
##  [8577] MBR            MBR            e-Shop         MBR           
##  [8581] MBR            e-Shop         MBR            MBR           
##  [8585] e-Shop         e-Shop         MBR            e-Shop        
##  [8589] e-Shop         MBR            e-Shop         e-Shop        
##  [8593] Flagship store e-Shop         Flagship store e-Shop        
##  [8597] e-Shop         Flagship store e-Shop         Flagship store
##  [8601] e-Shop         Flagship store Flagship store e-Shop        
##  [8605] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8609] MBR            MBR            Flagship store Flagship store
##  [8613] MBR            MBR            TeleShop       MBR           
##  [8617] TeleShop       Flagship store TeleShop       MBR           
##  [8621] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8625] e-Shop         e-Shop         e-Shop         Flagship store
##  [8629] e-Shop         Flagship store Flagship store e-Shop        
##  [8633] TeleShop       TeleShop       TeleShop       e-Shop        
##  [8637] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8641] e-Shop         Flagship store Flagship store MBR           
##  [8645] e-Shop         e-Shop         TeleShop       TeleShop      
##  [8649] TeleShop       TeleShop       e-Shop         TeleShop      
##  [8653] e-Shop         e-Shop         TeleShop       MBR           
##  [8657] TeleShop       TeleShop       TeleShop       TeleShop      
##  [8661] TeleShop       TeleShop       TeleShop       TeleShop      
##  [8665] TeleShop       TeleShop       e-Shop         e-Shop        
##  [8669] TeleShop       TeleShop       e-Shop         e-Shop        
##  [8673] e-Shop         e-Shop         TeleShop       e-Shop        
##  [8677] TeleShop       TeleShop       e-Shop         e-Shop        
##  [8681] e-Shop         e-Shop         e-Shop         TeleShop      
##  [8685] TeleShop       TeleShop       TeleShop       e-Shop        
##  [8689] TeleShop       MBR            MBR            e-Shop        
##  [8693] MBR            e-Shop         MBR            e-Shop        
##  [8697] MBR            MBR            e-Shop         e-Shop        
##  [8701] MBR            MBR            MBR            MBR           
##  [8705] MBR            e-Shop         MBR            MBR           
##  [8709] e-Shop         TeleShop       TeleShop       TeleShop      
##  [8713] TeleShop       TeleShop       TeleShop       TeleShop      
##  [8717] TeleShop       TeleShop       TeleShop       TeleShop      
##  [8721] TeleShop       e-Shop         e-Shop         MBR           
##  [8725] Flagship store TeleShop       TeleShop       MBR           
##  [8729] e-Shop         TeleShop       e-Shop         e-Shop        
##  [8733] MBR            Flagship store e-Shop         TeleShop      
##  [8737] TeleShop       e-Shop         MBR            e-Shop        
##  [8741] e-Shop         MBR            MBR            e-Shop        
##  [8745] e-Shop         MBR            e-Shop         e-Shop        
##  [8749] MBR            MBR            e-Shop         e-Shop        
##  [8753] e-Shop         e-Shop         e-Shop         TeleShop      
##  [8757] MBR            MBR            MBR            e-Shop        
##  [8761] MBR            e-Shop         e-Shop         e-Shop        
##  [8765] MBR            e-Shop         e-Shop         MBR           
##  [8769] TeleShop       e-Shop         Flagship store TeleShop      
##  [8773] e-Shop         Flagship store Flagship store e-Shop        
##  [8777] TeleShop       TeleShop       TeleShop       e-Shop        
##  [8781] Flagship store e-Shop         e-Shop         Flagship store
##  [8785] Flagship store Flagship store e-Shop         TeleShop      
##  [8789] Flagship store e-Shop         Flagship store Flagship store
##  [8793] e-Shop         MBR            MBR            e-Shop        
##  [8797] e-Shop         e-Shop         e-Shop         MBR           
##  [8801] MBR            MBR            MBR            MBR           
##  [8805] MBR            Flagship store Flagship store MBR           
##  [8809] Flagship store MBR            TeleShop       TeleShop      
##  [8813] TeleShop       TeleShop       e-Shop         TeleShop      
##  [8817] e-Shop         TeleShop       e-Shop         e-Shop        
##  [8821] TeleShop       TeleShop       TeleShop       TeleShop      
##  [8825] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8829] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8833] e-Shop         e-Shop         TeleShop       e-Shop        
##  [8837] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8841] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8845] TeleShop       e-Shop         MBR            MBR           
##  [8849] TeleShop       TeleShop       TeleShop       MBR           
##  [8853] MBR            TeleShop       MBR            MBR           
##  [8857] TeleShop       TeleShop       MBR            TeleShop      
##  [8861] TeleShop       TeleShop       e-Shop         e-Shop        
##  [8865] TeleShop       TeleShop       e-Shop         e-Shop        
##  [8869] Flagship store Flagship store Flagship store Flagship store
##  [8873] Flagship store Flagship store e-Shop         Flagship store
##  [8877] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8881] Flagship store e-Shop         Flagship store e-Shop        
##  [8885] Flagship store e-Shop         Flagship store e-Shop        
##  [8889] MBR            MBR            e-Shop         e-Shop        
##  [8893] e-Shop         e-Shop         TeleShop       e-Shop        
##  [8897] TeleShop       TeleShop       e-Shop         e-Shop        
##  [8901] TeleShop       e-Shop         TeleShop       TeleShop      
##  [8905] MBR            MBR            e-Shop         MBR           
##  [8909] e-Shop         e-Shop         MBR            e-Shop        
##  [8913] TeleShop       e-Shop         MBR            MBR           
##  [8917] e-Shop         TeleShop       TeleShop       e-Shop        
##  [8921] e-Shop         e-Shop         MBR            e-Shop        
##  [8925] e-Shop         e-Shop         e-Shop         e-Shop        
##  [8929] e-Shop         e-Shop         TeleShop       MBR           
##  [8933] e-Shop         MBR            MBR            TeleShop      
##  [8937] Flagship store Flagship store Flagship store Flagship store
##  [8941] Flagship store e-Shop         Flagship store TeleShop      
##  [8945] TeleShop       TeleShop       MBR            MBR           
##  [8949] TeleShop       TeleShop       TeleShop       e-Shop        
##  [8953] MBR            e-Shop         e-Shop         e-Shop        
##  [8957] e-Shop         e-Shop         e-Shop         Flagship store
##  [8961] e-Shop         Flagship store TeleShop       e-Shop        
##  [8965] e-Shop         TeleShop       e-Shop         MBR           
##  [8969] Flagship store TeleShop       TeleShop       Flagship store
##  [8973] Flagship store Flagship store Flagship store MBR           
##  [8977] MBR            e-Shop         TeleShop       TeleShop      
##  [8981] e-Shop         e-Shop         TeleShop       e-Shop        
##  [8985] e-Shop         TeleShop       e-Shop         e-Shop        
##  [8989] TeleShop       e-Shop         e-Shop         Flagship store
##  [8993] e-Shop         Flagship store e-Shop         e-Shop        
##  [8997] e-Shop         e-Shop         Flagship store Flagship store
##  [9001] Flagship store MBR            Flagship store TeleShop      
##  [9005] TeleShop       TeleShop       MBR            MBR           
##  [9009] TeleShop       e-Shop         e-Shop         MBR           
##  [9013] e-Shop         TeleShop       e-Shop         TeleShop      
##  [9017] e-Shop         TeleShop       e-Shop         TeleShop      
##  [9021] TeleShop       TeleShop       e-Shop         e-Shop        
##  [9025] TeleShop       Flagship store MBR            MBR           
##  [9029] TeleShop       TeleShop       MBR            TeleShop      
##  [9033] Flagship store Flagship store Flagship store Flagship store
##  [9037] TeleShop       TeleShop       Flagship store Flagship store
##  [9041] Flagship store Flagship store e-Shop         e-Shop        
##  [9045] Flagship store Flagship store e-Shop         Flagship store
##  [9049] Flagship store MBR            MBR            MBR           
##  [9053] MBR            MBR            MBR            MBR           
##  [9057] Flagship store MBR            Flagship store e-Shop        
##  [9061] e-Shop         MBR            Flagship store MBR           
##  [9065] Flagship store MBR            e-Shop         MBR           
##  [9069] Flagship store Flagship store MBR            e-Shop        
##  [9073] TeleShop       TeleShop       e-Shop         Flagship store
##  [9077] Flagship store e-Shop         e-Shop         Flagship store
##  [9081] Flagship store e-Shop         Flagship store Flagship store
##  [9085] e-Shop         TeleShop       TeleShop       e-Shop        
##  [9089] e-Shop         Flagship store Flagship store Flagship store
##  [9093] Flagship store Flagship store e-Shop         Flagship store
##  [9097] Flagship store Flagship store e-Shop         e-Shop        
##  [9101] e-Shop         e-Shop         e-Shop         Flagship store
##  [9105] Flagship store Flagship store e-Shop         e-Shop        
##  [9109] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9113] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9117] TeleShop       e-Shop         e-Shop         e-Shop        
##  [9121] e-Shop         TeleShop       MBR            e-Shop        
##  [9125] e-Shop         MBR            e-Shop         TeleShop      
##  [9129] TeleShop       TeleShop       Flagship store TeleShop      
##  [9133] TeleShop       Flagship store Flagship store Flagship store
##  [9137] Flagship store Flagship store Flagship store MBR           
##  [9141] MBR            MBR            TeleShop       MBR           
##  [9145] MBR            MBR            MBR            MBR           
##  [9149] TeleShop       TeleShop       e-Shop         e-Shop        
##  [9153] e-Shop         e-Shop         e-Shop         TeleShop      
##  [9157] MBR            TeleShop       e-Shop         MBR           
##  [9161] TeleShop       MBR            MBR            TeleShop      
##  [9165] e-Shop         e-Shop         e-Shop         TeleShop      
##  [9169] MBR            MBR            MBR            MBR           
##  [9173] MBR            MBR            MBR            MBR           
##  [9177] Flagship store MBR            Flagship store e-Shop        
##  [9181] Flagship store e-Shop         Flagship store e-Shop        
##  [9185] Flagship store MBR            e-Shop         e-Shop        
##  [9189] MBR            MBR            MBR            MBR           
##  [9193] TeleShop       Flagship store e-Shop         Flagship store
##  [9197] Flagship store TeleShop       TeleShop       MBR           
##  [9201] Flagship store TeleShop       Flagship store Flagship store
##  [9205] e-Shop         e-Shop         Flagship store Flagship store
##  [9209] Flagship store e-Shop         TeleShop       e-Shop        
##  [9213] e-Shop         e-Shop         e-Shop         TeleShop      
##  [9217] TeleShop       TeleShop       TeleShop       Flagship store
##  [9221] Flagship store Flagship store MBR            MBR           
##  [9225] MBR            TeleShop       TeleShop       TeleShop      
##  [9229] TeleShop       TeleShop       TeleShop       TeleShop      
##  [9233] TeleShop       TeleShop       TeleShop       Flagship store
##  [9237] TeleShop       TeleShop       TeleShop       TeleShop      
##  [9241] TeleShop       TeleShop       Flagship store Flagship store
##  [9245] TeleShop       Flagship store e-Shop         e-Shop        
##  [9249] MBR            MBR            MBR            TeleShop      
##  [9253] TeleShop       TeleShop       MBR            TeleShop      
##  [9257] MBR            e-Shop         e-Shop         e-Shop        
##  [9261] e-Shop         MBR            e-Shop         e-Shop        
##  [9265] MBR            MBR            MBR            MBR           
##  [9269] e-Shop         e-Shop         TeleShop       TeleShop      
##  [9273] TeleShop       TeleShop       TeleShop       TeleShop      
##  [9277] TeleShop       TeleShop       TeleShop       TeleShop      
##  [9281] e-Shop         TeleShop       e-Shop         e-Shop        
##  [9285] e-Shop         TeleShop       MBR            MBR           
##  [9289] TeleShop       TeleShop       e-Shop         TeleShop      
##  [9293] e-Shop         e-Shop         TeleShop       TeleShop      
##  [9297] e-Shop         TeleShop       TeleShop       TeleShop      
##  [9301] e-Shop         TeleShop       TeleShop       e-Shop        
##  [9305] e-Shop         e-Shop         e-Shop         TeleShop      
##  [9309] TeleShop       TeleShop       e-Shop         e-Shop        
##  [9313] TeleShop       TeleShop       TeleShop       TeleShop      
##  [9317] TeleShop       TeleShop       TeleShop       e-Shop        
##  [9321] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9325] TeleShop       MBR            e-Shop         e-Shop        
##  [9329] MBR            e-Shop         e-Shop         e-Shop        
##  [9333] Flagship store Flagship store Flagship store Flagship store
##  [9337] Flagship store MBR            MBR            MBR           
##  [9341] MBR            MBR            Flagship store Flagship store
##  [9345] Flagship store Flagship store Flagship store Flagship store
##  [9349] Flagship store Flagship store Flagship store Flagship store
##  [9353] e-Shop         e-Shop         e-Shop         MBR           
##  [9357] TeleShop       TeleShop       MBR            TeleShop      
##  [9361] MBR            MBR            MBR            e-Shop        
##  [9365] e-Shop         e-Shop         e-Shop         TeleShop      
##  [9369] MBR            e-Shop         e-Shop         MBR           
##  [9373] TeleShop       e-Shop         e-Shop         e-Shop        
##  [9377] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9381] e-Shop         TeleShop       TeleShop       TeleShop      
##  [9385] TeleShop       TeleShop       TeleShop       TeleShop      
##  [9389] MBR            MBR            MBR            MBR           
##  [9393] MBR            MBR            MBR            MBR           
##  [9397] TeleShop       MBR            e-Shop         MBR           
##  [9401] MBR            e-Shop         MBR            Flagship store
##  [9405] e-Shop         e-Shop         Flagship store Flagship store
##  [9409] e-Shop         Flagship store Flagship store e-Shop        
##  [9413] TeleShop       e-Shop         TeleShop       e-Shop        
##  [9417] TeleShop       Flagship store Flagship store e-Shop        
##  [9421] MBR            e-Shop         TeleShop       Flagship store
##  [9425] e-Shop         e-Shop         e-Shop         MBR           
##  [9429] Flagship store e-Shop         TeleShop       e-Shop        
##  [9433] MBR            MBR            e-Shop         e-Shop        
##  [9437] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9441] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9445] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9449] e-Shop         e-Shop         e-Shop         TeleShop      
##  [9453] TeleShop       TeleShop       TeleShop       MBR           
##  [9457] TeleShop       TeleShop       TeleShop       MBR           
##  [9461] MBR            MBR            TeleShop       TeleShop      
##  [9465] TeleShop       TeleShop       TeleShop       TeleShop      
##  [9469] MBR            MBR            MBR            e-Shop        
##  [9473] e-Shop         e-Shop         e-Shop         TeleShop      
##  [9477] TeleShop       e-Shop         TeleShop       e-Shop        
##  [9481] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9485] e-Shop         e-Shop         e-Shop         MBR           
##  [9489] MBR            e-Shop         MBR            e-Shop        
##  [9493] e-Shop         e-Shop         TeleShop       TeleShop      
##  [9497] TeleShop       TeleShop       TeleShop       MBR           
##  [9501] e-Shop         MBR            e-Shop         e-Shop        
##  [9505] MBR            MBR            MBR            Flagship store
##  [9509] Flagship store e-Shop         e-Shop         Flagship store
##  [9513] e-Shop         e-Shop         Flagship store e-Shop        
##  [9517] e-Shop         e-Shop         TeleShop       e-Shop        
##  [9521] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9525] e-Shop         TeleShop       e-Shop         e-Shop        
##  [9529] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9533] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9537] e-Shop         e-Shop         Flagship store Flagship store
##  [9541] Flagship store Flagship store Flagship store e-Shop        
##  [9545] e-Shop         e-Shop         TeleShop       TeleShop      
##  [9549] e-Shop         MBR            TeleShop       MBR           
##  [9553] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9557] e-Shop         MBR            e-Shop         e-Shop        
##  [9561] MBR            e-Shop         TeleShop       MBR           
##  [9565] TeleShop       TeleShop       MBR            TeleShop      
##  [9569] TeleShop       Flagship store e-Shop         Flagship store
##  [9573] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9577] e-Shop         e-Shop         e-Shop         Flagship store
##  [9581] e-Shop         Flagship store e-Shop         Flagship store
##  [9585] Flagship store e-Shop         e-Shop         Flagship store
##  [9589] Flagship store TeleShop       Flagship store Flagship store
##  [9593] e-Shop         TeleShop       Flagship store TeleShop      
##  [9597] e-Shop         TeleShop       Flagship store e-Shop        
##  [9601] TeleShop       e-Shop         e-Shop         e-Shop        
##  [9605] TeleShop       TeleShop       TeleShop       e-Shop        
##  [9609] e-Shop         e-Shop         TeleShop       e-Shop        
##  [9613] TeleShop       e-Shop         e-Shop         TeleShop      
##  [9617] e-Shop         e-Shop         e-Shop         Flagship store
##  [9621] Flagship store e-Shop         Flagship store e-Shop        
##  [9625] Flagship store e-Shop         TeleShop       TeleShop      
##  [9629] TeleShop       Flagship store Flagship store MBR           
##  [9633] MBR            Flagship store TeleShop       TeleShop      
##  [9637] MBR            TeleShop       TeleShop       Flagship store
##  [9641] Flagship store MBR            e-Shop         MBR           
##  [9645] TeleShop       e-Shop         e-Shop         Flagship store
##  [9649] Flagship store e-Shop         Flagship store Flagship store
##  [9653] e-Shop         MBR            MBR            Flagship store
##  [9657] MBR            e-Shop         MBR            e-Shop        
##  [9661] e-Shop         MBR            Flagship store MBR           
##  [9665] MBR            Flagship store e-Shop         e-Shop        
##  [9669] Flagship store Flagship store Flagship store Flagship store
##  [9673] Flagship store Flagship store Flagship store e-Shop        
##  [9677] e-Shop         Flagship store e-Shop         Flagship store
##  [9681] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9685] e-Shop         e-Shop         MBR            e-Shop        
##  [9689] e-Shop         e-Shop         MBR            MBR           
##  [9693] MBR            e-Shop         MBR            TeleShop      
##  [9697] MBR            MBR            TeleShop       MBR           
##  [9701] MBR            TeleShop       Flagship store e-Shop        
##  [9705] Flagship store Flagship store e-Shop         Flagship store
##  [9709] Flagship store Flagship store MBR            e-Shop        
##  [9713] e-Shop         MBR            Flagship store Flagship store
##  [9717] e-Shop         MBR            e-Shop         e-Shop        
##  [9721] MBR            Flagship store Flagship store MBR           
##  [9725] Flagship store Flagship store Flagship store Flagship store
##  [9729] Flagship store e-Shop         MBR            e-Shop        
##  [9733] e-Shop         e-Shop         e-Shop         MBR           
##  [9737] MBR            Flagship store Flagship store Flagship store
##  [9741] TeleShop       TeleShop       TeleShop       MBR           
##  [9745] MBR            MBR            MBR            MBR           
##  [9749] MBR            e-Shop         e-Shop         e-Shop        
##  [9753] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9757] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9761] e-Shop         TeleShop       e-Shop         e-Shop        
##  [9765] TeleShop       e-Shop         e-Shop         e-Shop        
##  [9769] e-Shop         e-Shop         e-Shop         Flagship store
##  [9773] e-Shop         Flagship store Flagship store TeleShop      
##  [9777] e-Shop         Flagship store Flagship store TeleShop      
##  [9781] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9785] Flagship store TeleShop       TeleShop       Flagship store
##  [9789] Flagship store TeleShop       Flagship store Flagship store
##  [9793] TeleShop       Flagship store TeleShop       TeleShop      
##  [9797] TeleShop       e-Shop         e-Shop         TeleShop      
##  [9801] TeleShop       Flagship store Flagship store e-Shop        
##  [9805] Flagship store TeleShop       TeleShop       MBR           
##  [9809] MBR            Flagship store MBR            e-Shop        
##  [9813] Flagship store e-Shop         MBR            MBR           
##  [9817] Flagship store MBR            TeleShop       TeleShop      
##  [9821] TeleShop       TeleShop       TeleShop       MBR           
##  [9825] TeleShop       TeleShop       MBR            TeleShop      
##  [9829] e-Shop         e-Shop         MBR            e-Shop        
##  [9833] e-Shop         Flagship store MBR            Flagship store
##  [9837] Flagship store e-Shop         Flagship store Flagship store
##  [9841] e-Shop         e-Shop         Flagship store Flagship store
##  [9845] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9849] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9853] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9857] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9861] TeleShop       TeleShop       TeleShop       e-Shop        
##  [9865] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9869] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9873] e-Shop         Flagship store e-Shop         e-Shop        
##  [9877] e-Shop         Flagship store Flagship store MBR           
##  [9881] MBR            MBR            TeleShop       TeleShop      
##  [9885] MBR            MBR            TeleShop       MBR           
##  [9889] TeleShop       TeleShop       e-Shop         e-Shop        
##  [9893] TeleShop       TeleShop       TeleShop       MBR           
##  [9897] e-Shop         TeleShop       TeleShop       TeleShop      
##  [9901] e-Shop         TeleShop       TeleShop       TeleShop      
##  [9905] TeleShop       MBR            MBR            TeleShop      
##  [9909] e-Shop         TeleShop       TeleShop       TeleShop      
##  [9913] TeleShop       TeleShop       e-Shop         e-Shop        
##  [9917] MBR            MBR            e-Shop         TeleShop      
##  [9921] TeleShop       TeleShop       TeleShop       TeleShop      
##  [9925] e-Shop         e-Shop         TeleShop       e-Shop        
##  [9929] TeleShop       TeleShop       TeleShop       TeleShop      
##  [9933] e-Shop         TeleShop       TeleShop       TeleShop      
##  [9937] e-Shop         TeleShop       TeleShop       e-Shop        
##  [9941] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9945] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9949] e-Shop         e-Shop         e-Shop         e-Shop        
##  [9953] Flagship store Flagship store Flagship store e-Shop        
##  [9957] e-Shop         MBR            e-Shop         e-Shop        
##  [9961] MBR            Flagship store Flagship store Flagship store
##  [9965] e-Shop         e-Shop         e-Shop         Flagship store
##  [9969] MBR            Flagship store TeleShop       e-Shop        
##  [9973] Flagship store e-Shop         TeleShop       e-Shop        
##  [9977] e-Shop         Flagship store Flagship store e-Shop        
##  [9981] e-Shop         Flagship store Flagship store e-Shop        
##  [9985] Flagship store Flagship store Flagship store Flagship store
##  [9989] Flagship store e-Shop         Flagship store MBR           
##  [9993] MBR            MBR            MBR            TeleShop      
##  [9997] MBR            MBR            MBR            MBR           
## [10001] MBR            TeleShop       TeleShop       TeleShop      
## [10005] TeleShop       Flagship store TeleShop       Flagship store
## [10009] TeleShop       Flagship store e-Shop         e-Shop        
## [10013] TeleShop       Flagship store TeleShop       TeleShop      
## [10017] TeleShop       Flagship store Flagship store TeleShop      
## [10021] Flagship store e-Shop         e-Shop         e-Shop        
## [10025] TeleShop       e-Shop         TeleShop       TeleShop      
## [10029] e-Shop         e-Shop         TeleShop       e-Shop        
## [10033] TeleShop       e-Shop         e-Shop         e-Shop        
## [10037] e-Shop         e-Shop         e-Shop         e-Shop        
## [10041] e-Shop         e-Shop         Flagship store Flagship store
## [10045] Flagship store Flagship store Flagship store TeleShop      
## [10049] e-Shop         TeleShop       TeleShop       e-Shop        
## [10053] e-Shop         e-Shop         e-Shop         e-Shop        
## [10057] e-Shop         Flagship store Flagship store Flagship store
## [10061] MBR            Flagship store Flagship store TeleShop      
## [10065] TeleShop       TeleShop       MBR            MBR           
## [10069] MBR            e-Shop         TeleShop       Flagship store
## [10073] TeleShop       Flagship store e-Shop         Flagship store
## [10077] TeleShop       TeleShop       TeleShop       TeleShop      
## [10081] e-Shop         MBR            MBR            e-Shop        
## [10085] e-Shop         e-Shop         MBR            e-Shop        
## [10089] e-Shop         e-Shop         e-Shop         TeleShop      
## [10093] TeleShop       TeleShop       e-Shop         TeleShop      
## [10097] e-Shop         e-Shop         e-Shop         e-Shop        
## [10101] e-Shop         TeleShop       TeleShop       TeleShop      
## [10105] e-Shop         TeleShop       MBR            TeleShop      
## [10109] TeleShop       MBR            MBR            e-Shop        
## [10113] e-Shop         e-Shop         e-Shop         e-Shop        
## [10117] e-Shop         e-Shop         e-Shop         e-Shop        
## [10121] e-Shop         e-Shop         e-Shop         e-Shop        
## [10125] e-Shop         e-Shop         e-Shop         e-Shop        
## [10129] e-Shop         e-Shop         TeleShop       TeleShop      
## [10133] TeleShop       TeleShop       TeleShop       e-Shop        
## [10137] e-Shop         e-Shop         e-Shop         e-Shop        
## [10141] e-Shop         e-Shop         e-Shop         e-Shop        
## [10145] e-Shop         e-Shop         e-Shop         TeleShop      
## [10149] e-Shop         e-Shop         e-Shop         e-Shop        
## [10153] e-Shop         Flagship store Flagship store MBR           
## [10157] MBR            MBR            MBR            e-Shop        
## [10161] e-Shop         e-Shop         MBR            e-Shop        
## [10165] MBR            MBR            e-Shop         e-Shop        
## [10169] Flagship store MBR            Flagship store e-Shop        
## [10173] e-Shop         MBR            Flagship store e-Shop        
## [10177] TeleShop       Flagship store TeleShop       MBR           
## [10181] e-Shop         e-Shop         e-Shop         e-Shop        
## [10185] TeleShop       MBR            MBR            Flagship store
## [10189] Flagship store Flagship store e-Shop         e-Shop        
## [10193] e-Shop         TeleShop       TeleShop       TeleShop      
## [10197] TeleShop       TeleShop       TeleShop       MBR           
## [10201] MBR            e-Shop         e-Shop         MBR           
## [10205] Flagship store e-Shop         MBR            MBR           
## [10209] Flagship store MBR            e-Shop         e-Shop        
## [10213] e-Shop         e-Shop         TeleShop       e-Shop        
## [10217] TeleShop       e-Shop         e-Shop         e-Shop        
## [10221] e-Shop         TeleShop       e-Shop         MBR           
## [10225] MBR            MBR            e-Shop         e-Shop        
## [10229] e-Shop         e-Shop         e-Shop         TeleShop      
## [10233] MBR            MBR            MBR            MBR           
## [10237] TeleShop       TeleShop       TeleShop       MBR           
## [10241] e-Shop         e-Shop         e-Shop         e-Shop        
## [10245] MBR            e-Shop         Flagship store MBR           
## [10249] Flagship store Flagship store Flagship store e-Shop        
## [10253] e-Shop         e-Shop         e-Shop         e-Shop        
## [10257] e-Shop         e-Shop         e-Shop         e-Shop        
## [10261] e-Shop         e-Shop         e-Shop         e-Shop        
## [10265] e-Shop         e-Shop         e-Shop         e-Shop        
## [10269] TeleShop       TeleShop       e-Shop         TeleShop      
## [10273] TeleShop       TeleShop       e-Shop         TeleShop      
## [10277] TeleShop       e-Shop         e-Shop         e-Shop        
## [10281] e-Shop         e-Shop         e-Shop         Flagship store
## [10285] MBR            MBR            MBR            Flagship store
## [10289] MBR            e-Shop         e-Shop         MBR           
## [10293] MBR            Flagship store Flagship store MBR           
## [10297] Flagship store Flagship store MBR            MBR           
## [10301] MBR            e-Shop         e-Shop         e-Shop        
## [10305] e-Shop         e-Shop         e-Shop         e-Shop        
## [10309] e-Shop         Flagship store Flagship store Flagship store
## [10313] Flagship store Flagship store TeleShop       TeleShop      
## [10317] Flagship store TeleShop       Flagship store Flagship store
## [10321] Flagship store TeleShop       TeleShop       TeleShop      
## [10325] Flagship store MBR            e-Shop         MBR           
## [10329] e-Shop         e-Shop         e-Shop         e-Shop        
## [10333] e-Shop         MBR            MBR            MBR           
## [10337] TeleShop       MBR            TeleShop       TeleShop      
## [10341] TeleShop       TeleShop       MBR            MBR           
## [10345] MBR            MBR            MBR            MBR           
## [10349] e-Shop         TeleShop       e-Shop         e-Shop        
## [10353] MBR            e-Shop         TeleShop       MBR           
## [10357] TeleShop       e-Shop         e-Shop         TeleShop      
## [10361] e-Shop         e-Shop         MBR            MBR           
## [10365] MBR            TeleShop       e-Shop         MBR           
## [10369] e-Shop         Flagship store Flagship store e-Shop        
## [10373] e-Shop         e-Shop         e-Shop         Flagship store
## [10377] e-Shop         MBR            Flagship store Flagship store
## [10381] e-Shop         Flagship store MBR            e-Shop        
## [10385] Flagship store MBR            MBR            Flagship store
## [10389] e-Shop         e-Shop         e-Shop         e-Shop        
## [10393] TeleShop       e-Shop         TeleShop       e-Shop        
## [10397] e-Shop         TeleShop       e-Shop         MBR           
## [10401] e-Shop         TeleShop       TeleShop       MBR           
## [10405] MBR            MBR            e-Shop         MBR           
## [10409] MBR            e-Shop         e-Shop         e-Shop        
## [10413] e-Shop         e-Shop         e-Shop         MBR           
## [10417] MBR            e-Shop         Flagship store MBR           
## [10421] Flagship store e-Shop         Flagship store e-Shop        
## [10425] e-Shop         MBR            MBR            MBR           
## [10429] Flagship store e-Shop         e-Shop         Flagship store
## [10433] Flagship store Flagship store Flagship store e-Shop        
## [10437] e-Shop         e-Shop         TeleShop       TeleShop      
## [10441] e-Shop         e-Shop         TeleShop       TeleShop      
## [10445] e-Shop         TeleShop       TeleShop       TeleShop      
## [10449] e-Shop         e-Shop         e-Shop         e-Shop        
## [10453] TeleShop       TeleShop       TeleShop       e-Shop        
## [10457] TeleShop       TeleShop       MBR            MBR           
## [10461] MBR            TeleShop       TeleShop       MBR           
## [10465] MBR            TeleShop       TeleShop       TeleShop      
## [10469] MBR            TeleShop       TeleShop       TeleShop      
## [10473] TeleShop       MBR            Flagship store Flagship store
## [10477] Flagship store Flagship store Flagship store Flagship store
## [10481] Flagship store Flagship store Flagship store Flagship store
## [10485] Flagship store Flagship store Flagship store Flagship store
## [10489] Flagship store e-Shop         e-Shop         e-Shop        
## [10493] e-Shop         TeleShop       MBR            TeleShop      
## [10497] MBR            TeleShop       TeleShop       TeleShop      
## [10501] MBR            TeleShop       MBR            e-Shop        
## [10505] e-Shop         e-Shop         e-Shop         e-Shop        
## [10509] e-Shop         e-Shop         TeleShop       TeleShop      
## [10513] TeleShop       TeleShop       TeleShop       TeleShop      
## [10517] TeleShop       TeleShop       e-Shop         e-Shop        
## [10521] e-Shop         e-Shop         e-Shop         MBR           
## [10525] e-Shop         MBR            e-Shop         e-Shop        
## [10529] e-Shop         MBR            e-Shop         MBR           
## [10533] e-Shop         e-Shop         e-Shop         MBR           
## [10537] MBR            e-Shop         MBR            MBR           
## [10541] e-Shop         e-Shop         e-Shop         e-Shop        
## [10545] e-Shop         e-Shop         e-Shop         MBR           
## [10549] MBR            MBR            TeleShop       e-Shop        
## [10553] e-Shop         TeleShop       Flagship store TeleShop      
## [10557] TeleShop       e-Shop         e-Shop         e-Shop        
## [10561] TeleShop       e-Shop         e-Shop         Flagship store
## [10565] e-Shop         e-Shop         e-Shop         e-Shop        
## [10569] Flagship store e-Shop         e-Shop         e-Shop        
## [10573] e-Shop         e-Shop         e-Shop         e-Shop        
## [10577] e-Shop         e-Shop         e-Shop         e-Shop        
## [10581] e-Shop         TeleShop       TeleShop       TeleShop      
## [10585] TeleShop       TeleShop       TeleShop       TeleShop      
## [10589] TeleShop       Flagship store Flagship store Flagship store
## [10593] Flagship store MBR            MBR            Flagship store
## [10597] MBR            MBR            MBR            Flagship store
## [10601] MBR            MBR            MBR            e-Shop        
## [10605] e-Shop         e-Shop         e-Shop         TeleShop      
## [10609] TeleShop       e-Shop         e-Shop         e-Shop        
## [10613] e-Shop         e-Shop         e-Shop         e-Shop        
## [10617] e-Shop         e-Shop         e-Shop         e-Shop        
## [10621] e-Shop         e-Shop         e-Shop         e-Shop        
## [10625] TeleShop       e-Shop         e-Shop         e-Shop        
## [10629] e-Shop         e-Shop         e-Shop         e-Shop        
## [10633] e-Shop         TeleShop       e-Shop         e-Shop        
## [10637] e-Shop         MBR            e-Shop         e-Shop        
## [10641] MBR            Flagship store Flagship store Flagship store
## [10645] Flagship store Flagship store Flagship store e-Shop        
## [10649] e-Shop         e-Shop         e-Shop         e-Shop        
## [10653] e-Shop         e-Shop         e-Shop         e-Shop        
## [10657] e-Shop         MBR            MBR            MBR           
## [10661] e-Shop         e-Shop         TeleShop       e-Shop        
## [10665] e-Shop         TeleShop       e-Shop         e-Shop        
## [10669] e-Shop         e-Shop         MBR            TeleShop      
## [10673] TeleShop       TeleShop       e-Shop         TeleShop      
## [10677] TeleShop       e-Shop         MBR            MBR           
## [10681] TeleShop       TeleShop       MBR            MBR           
## [10685] Flagship store Flagship store MBR            MBR           
## [10689] MBR            MBR            e-Shop         Flagship store
## [10693] MBR            MBR            Flagship store e-Shop        
## [10697] e-Shop         MBR            MBR            e-Shop        
## [10701] e-Shop         e-Shop         e-Shop         MBR           
## [10705] e-Shop         MBR            e-Shop         e-Shop        
## [10709] e-Shop         e-Shop         MBR            e-Shop        
## [10713] e-Shop         e-Shop         MBR            MBR           
## [10717] e-Shop         e-Shop         e-Shop         e-Shop        
## [10721] e-Shop         e-Shop         e-Shop         e-Shop        
## [10725] e-Shop         e-Shop         e-Shop         e-Shop        
## [10729] TeleShop       TeleShop       e-Shop         e-Shop        
## [10733] e-Shop         e-Shop         e-Shop         e-Shop        
## [10737] e-Shop         e-Shop         e-Shop         e-Shop        
## [10741] MBR            e-Shop         MBR            MBR           
## [10745] MBR            MBR            e-Shop         MBR           
## [10749] Flagship store Flagship store e-Shop         e-Shop        
## [10753] Flagship store Flagship store e-Shop         e-Shop        
## [10757] Flagship store MBR            Flagship store MBR           
## [10761] MBR            Flagship store Flagship store Flagship store
## [10765] MBR            MBR            Flagship store e-Shop        
## [10769] e-Shop         e-Shop         e-Shop         e-Shop        
## [10773] MBR            Flagship store MBR            e-Shop        
## [10777] Flagship store e-Shop         e-Shop         MBR           
## [10781] MBR            Flagship store MBR            MBR           
## [10785] Flagship store MBR            MBR            MBR           
## [10789] e-Shop         e-Shop         e-Shop         e-Shop        
## [10793] MBR            e-Shop         e-Shop         e-Shop        
## [10797] e-Shop         e-Shop         MBR            e-Shop        
## [10801] Flagship store e-Shop         e-Shop         e-Shop        
## [10805] e-Shop         Flagship store Flagship store Flagship store
## [10809] e-Shop         e-Shop         e-Shop         e-Shop        
## [10813] e-Shop         TeleShop       TeleShop       TeleShop      
## [10817] TeleShop       e-Shop         e-Shop         TeleShop      
## [10821] e-Shop         e-Shop         e-Shop         TeleShop      
## [10825] e-Shop         TeleShop       TeleShop       TeleShop      
## [10829] TeleShop       Flagship store Flagship store Flagship store
## [10833] Flagship store Flagship store Flagship store e-Shop        
## [10837] e-Shop         e-Shop         MBR            MBR           
## [10841] MBR            MBR            MBR            MBR           
## [10845] e-Shop         MBR            MBR            MBR           
## [10849] MBR            MBR            e-Shop         e-Shop        
## [10853] TeleShop       MBR            MBR            MBR           
## [10857] MBR            MBR            TeleShop       TeleShop      
## [10861] TeleShop       TeleShop       MBR            MBR           
## [10865] TeleShop       MBR            TeleShop       TeleShop      
## [10869] TeleShop       MBR            Flagship store Flagship store
## [10873] Flagship store Flagship store Flagship store e-Shop        
## [10877] MBR            e-Shop         MBR            MBR           
## [10881] e-Shop         MBR            MBR            e-Shop        
## [10885] e-Shop         MBR            MBR            MBR           
## [10889] e-Shop         e-Shop         MBR            MBR           
## [10893] MBR            MBR            TeleShop       TeleShop      
## [10897] TeleShop       MBR            TeleShop       MBR           
## [10901] TeleShop       e-Shop         e-Shop         e-Shop        
## [10905] e-Shop         e-Shop         e-Shop         e-Shop        
## [10909] MBR            MBR            e-Shop         MBR           
## [10913] e-Shop         Flagship store Flagship store MBR           
## [10917] MBR            MBR            MBR            e-Shop        
## [10921] e-Shop         e-Shop         e-Shop         e-Shop        
## [10925] e-Shop         e-Shop         e-Shop         e-Shop        
## [10929] e-Shop         e-Shop         e-Shop         Flagship store
## [10933] Flagship store Flagship store e-Shop         Flagship store
## [10937] e-Shop         Flagship store e-Shop         MBR           
## [10941] MBR            Flagship store MBR            MBR           
## [10945] MBR            MBR            e-Shop         e-Shop        
## [10949] Flagship store Flagship store TeleShop       TeleShop      
## [10953] TeleShop       TeleShop       TeleShop       TeleShop      
## [10957] e-Shop         e-Shop         TeleShop       TeleShop      
## [10961] TeleShop       TeleShop       TeleShop       Flagship store
## [10965] MBR            e-Shop         Flagship store MBR           
## [10969] MBR            e-Shop         Flagship store Flagship store
## [10973] Flagship store MBR            Flagship store e-Shop        
## [10977] e-Shop         e-Shop         e-Shop         e-Shop        
## [10981] e-Shop         MBR            TeleShop       MBR           
## [10985] TeleShop       TeleShop       TeleShop       MBR           
## [10989] Flagship store Flagship store TeleShop       e-Shop        
## [10993] TeleShop       TeleShop       TeleShop       TeleShop      
## [10997] TeleShop       TeleShop       e-Shop         TeleShop      
## [11001] e-Shop         e-Shop         e-Shop         e-Shop        
## [11005] e-Shop         e-Shop         e-Shop         MBR           
## [11009] e-Shop         e-Shop         MBR            MBR           
## [11013] e-Shop         MBR            e-Shop         MBR           
## [11017] MBR            MBR            MBR            e-Shop        
## [11021] MBR            MBR            MBR            e-Shop        
## [11025] e-Shop         e-Shop         Flagship store Flagship store
## [11029] Flagship store Flagship store TeleShop       TeleShop      
## [11033] Flagship store Flagship store TeleShop       Flagship store
## [11037] Flagship store MBR            MBR            MBR           
## [11041] TeleShop       e-Shop         TeleShop       e-Shop        
## [11045] Flagship store Flagship store TeleShop       e-Shop        
## [11049] e-Shop         Flagship store e-Shop         Flagship store
## [11053] e-Shop         Flagship store e-Shop         e-Shop        
## [11057] Flagship store Flagship store MBR            MBR           
## [11061] MBR            MBR            e-Shop         e-Shop        
## [11065] e-Shop         TeleShop       Flagship store e-Shop        
## [11069] Flagship store Flagship store TeleShop       e-Shop        
## [11073] TeleShop       Flagship store Flagship store e-Shop        
## [11077] Flagship store MBR            MBR            TeleShop      
## [11081] e-Shop         Flagship store Flagship store e-Shop        
## [11085] e-Shop         Flagship store MBR            Flagship store
## [11089] Flagship store Flagship store TeleShop       TeleShop      
## [11093] MBR            MBR            e-Shop         e-Shop        
## [11097] MBR            MBR            MBR            e-Shop        
## [11101] e-Shop         e-Shop         e-Shop         e-Shop        
## [11105] e-Shop         e-Shop         e-Shop         e-Shop        
## [11109] e-Shop         e-Shop         e-Shop         Flagship store
## [11113] e-Shop         e-Shop         MBR            e-Shop        
## [11117] e-Shop         MBR            Flagship store e-Shop        
## [11121] e-Shop         Flagship store e-Shop         e-Shop        
## [11125] TeleShop       e-Shop         TeleShop       e-Shop        
## [11129] TeleShop       e-Shop         e-Shop         e-Shop        
## [11133] Flagship store Flagship store e-Shop         e-Shop        
## [11137] Flagship store e-Shop         e-Shop         Flagship store
## [11141] Flagship store Flagship store Flagship store Flagship store
## [11145] Flagship store Flagship store Flagship store Flagship store
## [11149] Flagship store Flagship store Flagship store Flagship store
## [11153] Flagship store e-Shop         e-Shop         e-Shop        
## [11157] e-Shop         e-Shop         MBR            TeleShop      
## [11161] MBR            MBR            MBR            TeleShop      
## [11165] Flagship store Flagship store Flagship store Flagship store
## [11169] Flagship store Flagship store MBR            MBR           
## [11173] e-Shop         e-Shop         MBR            e-Shop        
## [11177] MBR            e-Shop         MBR            MBR           
## [11181] Flagship store Flagship store e-Shop         Flagship store
## [11185] Flagship store Flagship store Flagship store Flagship store
## [11189] Flagship store MBR            TeleShop       MBR           
## [11193] MBR            TeleShop       MBR            TeleShop      
## [11197] Flagship store MBR            Flagship store MBR           
## [11201] Flagship store Flagship store MBR            Flagship store
## [11205] Flagship store e-Shop         e-Shop         e-Shop        
## [11209] Flagship store e-Shop         Flagship store e-Shop        
## [11213] e-Shop         e-Shop         e-Shop         e-Shop        
## [11217] e-Shop         e-Shop         e-Shop         e-Shop        
## [11221] e-Shop         e-Shop         e-Shop         e-Shop        
## [11225] e-Shop         e-Shop         e-Shop         e-Shop        
## [11229] e-Shop         e-Shop         e-Shop         e-Shop        
## [11233] e-Shop         e-Shop         e-Shop         e-Shop        
## [11237] e-Shop         e-Shop         TeleShop       MBR           
## [11241] e-Shop         TeleShop       MBR            e-Shop        
## [11245] e-Shop         TeleShop       e-Shop         e-Shop        
## [11249] e-Shop         TeleShop       e-Shop         MBR           
## [11253] TeleShop       e-Shop         TeleShop       TeleShop      
## [11257] TeleShop       e-Shop         e-Shop         e-Shop        
## [11261] e-Shop         MBR            MBR            Flagship store
## [11265] MBR            Flagship store MBR            MBR           
## [11269] MBR            MBR            MBR            MBR           
## [11273] MBR            MBR            MBR            e-Shop        
## [11277] e-Shop         e-Shop         e-Shop         MBR           
## [11281] e-Shop         e-Shop         e-Shop         e-Shop        
## [11285] e-Shop         e-Shop         e-Shop         e-Shop        
## [11289] e-Shop         MBR            TeleShop       TeleShop      
## [11293] MBR            MBR            e-Shop         e-Shop        
## [11297] e-Shop         e-Shop         e-Shop         Flagship store
## [11301] TeleShop       Flagship store Flagship store TeleShop      
## [11305] Flagship store Flagship store Flagship store Flagship store
## [11309] TeleShop       TeleShop       TeleShop       TeleShop      
## [11313] TeleShop       TeleShop       TeleShop       TeleShop      
## [11317] Flagship store Flagship store Flagship store Flagship store
## [11321] Flagship store TeleShop       TeleShop       MBR           
## [11325] MBR            MBR            MBR            MBR           
## [11329] TeleShop       TeleShop       TeleShop       e-Shop        
## [11333] e-Shop         e-Shop         e-Shop         e-Shop        
## [11337] e-Shop         e-Shop         MBR            e-Shop        
## [11341] MBR            Flagship store MBR            e-Shop        
## [11345] MBR            Flagship store MBR            MBR           
## [11349] e-Shop         MBR            MBR            MBR           
## [11353] MBR            MBR            TeleShop       e-Shop        
## [11357] e-Shop         e-Shop         TeleShop       Flagship store
## [11361] TeleShop       TeleShop       Flagship store TeleShop      
## [11365] Flagship store TeleShop       TeleShop       TeleShop      
## [11369] TeleShop       TeleShop       MBR            MBR           
## [11373] TeleShop       TeleShop       MBR            TeleShop      
## [11377] TeleShop       TeleShop       MBR            TeleShop      
## [11381] MBR            TeleShop       TeleShop       TeleShop      
## [11385] TeleShop       MBR            MBR            TeleShop      
## [11389] TeleShop       TeleShop       e-Shop         TeleShop      
## [11393] TeleShop       TeleShop       MBR            TeleShop      
## [11397] e-Shop         Flagship store Flagship store Flagship store
## [11401] Flagship store Flagship store Flagship store Flagship store
## [11405] Flagship store e-Shop         e-Shop         MBR           
## [11409] e-Shop         e-Shop         MBR            e-Shop        
## [11413] MBR            MBR            e-Shop         e-Shop        
## [11417] e-Shop         e-Shop         e-Shop         e-Shop        
## [11421] e-Shop         MBR            e-Shop         MBR           
## [11425] e-Shop         MBR            Flagship store Flagship store
## [11429] Flagship store TeleShop       TeleShop       Flagship store
## [11433] e-Shop         TeleShop       e-Shop         e-Shop        
## [11437] MBR            e-Shop         e-Shop         e-Shop        
## [11441] e-Shop         e-Shop         e-Shop         MBR           
## [11445] e-Shop         e-Shop         e-Shop         e-Shop        
## [11449] TeleShop       e-Shop         e-Shop         e-Shop        
## [11453] e-Shop         e-Shop         TeleShop       e-Shop        
## [11457] e-Shop         e-Shop         e-Shop         e-Shop        
## [11461] e-Shop         e-Shop         e-Shop         e-Shop        
## [11465] e-Shop         TeleShop       TeleShop       TeleShop      
## [11469] e-Shop         e-Shop         e-Shop         e-Shop        
## [11473] e-Shop         e-Shop         e-Shop         e-Shop        
## [11477] e-Shop         e-Shop         e-Shop         e-Shop        
## [11481] e-Shop         e-Shop         e-Shop         TeleShop      
## [11485] TeleShop       e-Shop         TeleShop       TeleShop      
## [11489] e-Shop         TeleShop       e-Shop         MBR           
## [11493] TeleShop       TeleShop       MBR            MBR           
## [11497] e-Shop         MBR            TeleShop       MBR           
## [11501] MBR            e-Shop         e-Shop         e-Shop        
## [11505] e-Shop         e-Shop         e-Shop         e-Shop        
## [11509] e-Shop         e-Shop         Flagship store e-Shop        
## [11513] e-Shop         e-Shop         Flagship store e-Shop        
## [11517] e-Shop         e-Shop         Flagship store Flagship store
## [11521] Flagship store e-Shop         Flagship store e-Shop        
## [11525] e-Shop         e-Shop         MBR            e-Shop        
## [11529] MBR            Flagship store MBR            MBR           
## [11533] e-Shop         Flagship store MBR            MBR           
## [11537] Flagship store Flagship store e-Shop         MBR           
## [11541] Flagship store MBR            e-Shop         MBR           
## [11545] Flagship store e-Shop         Flagship store MBR           
## [11549] Flagship store MBR            e-Shop         e-Shop        
## [11553] MBR            MBR            Flagship store MBR           
## [11557] Flagship store MBR            Flagship store MBR           
## [11561] e-Shop         MBR            MBR            MBR           
## [11565] MBR            MBR            MBR            e-Shop        
## [11569] e-Shop         e-Shop         e-Shop         e-Shop        
## [11573] e-Shop         MBR            MBR            e-Shop        
## [11577] e-Shop         MBR            e-Shop         e-Shop        
## [11581] e-Shop         e-Shop         MBR            e-Shop        
## [11585] e-Shop         e-Shop         MBR            e-Shop        
## [11589] e-Shop         e-Shop         MBR            e-Shop        
## [11593] e-Shop         MBR            e-Shop         e-Shop        
## [11597] MBR            TeleShop       TeleShop       TeleShop      
## [11601] e-Shop         e-Shop         e-Shop         e-Shop        
## [11605] e-Shop         e-Shop         e-Shop         e-Shop        
## [11609] Flagship store Flagship store Flagship store Flagship store
## [11613] MBR            Flagship store Flagship store MBR           
## [11617] MBR            Flagship store Flagship store MBR           
## [11621] MBR            TeleShop       TeleShop       MBR           
## [11625] MBR            MBR            TeleShop       TeleShop      
## [11629] e-Shop         TeleShop       e-Shop         Flagship store
## [11633] e-Shop         e-Shop         Flagship store Flagship store
## [11637] Flagship store Flagship store Flagship store Flagship store
## [11641] Flagship store Flagship store e-Shop         e-Shop        
## [11645] e-Shop         e-Shop         TeleShop       TeleShop      
## [11649] TeleShop       TeleShop       e-Shop         e-Shop        
## [11653] TeleShop       MBR            MBR            TeleShop      
## [11657] TeleShop       MBR            TeleShop       MBR           
## [11661] TeleShop       MBR            TeleShop       MBR           
## [11665] MBR            MBR            MBR            MBR           
## [11669] MBR            Flagship store Flagship store MBR           
## [11673] MBR            MBR            Flagship store TeleShop      
## [11677] TeleShop       Flagship store Flagship store MBR           
## [11681] Flagship store TeleShop       Flagship store Flagship store
## [11685] Flagship store Flagship store MBR            Flagship store
## [11689] Flagship store TeleShop       Flagship store e-Shop        
## [11693] e-Shop         e-Shop         MBR            MBR           
## [11697] e-Shop         MBR            e-Shop         e-Shop        
## [11701] e-Shop         TeleShop       TeleShop       TeleShop      
## [11705] TeleShop       TeleShop       TeleShop       e-Shop        
## [11709] Flagship store e-Shop         e-Shop         e-Shop        
## [11713] Flagship store e-Shop         e-Shop         TeleShop      
## [11717] TeleShop       TeleShop       TeleShop       TeleShop      
## [11721] TeleShop       TeleShop       TeleShop       TeleShop      
## [11725] TeleShop       TeleShop       TeleShop       e-Shop        
## [11729] e-Shop         e-Shop         e-Shop         e-Shop        
## [11733] e-Shop         e-Shop         e-Shop         Flagship store
## [11737] Flagship store e-Shop         Flagship store TeleShop      
## [11741] e-Shop         TeleShop       e-Shop         TeleShop      
## [11745] e-Shop         e-Shop         e-Shop         TeleShop      
## [11749] TeleShop       e-Shop         e-Shop         e-Shop        
## [11753] e-Shop         e-Shop         TeleShop       e-Shop        
## [11757] e-Shop         e-Shop         e-Shop         e-Shop        
## [11761] e-Shop         TeleShop       TeleShop       e-Shop        
## [11765] e-Shop         e-Shop         TeleShop       e-Shop        
## [11769] e-Shop         e-Shop         TeleShop       TeleShop      
## [11773] TeleShop       e-Shop         TeleShop       e-Shop        
## [11777] TeleShop       TeleShop       MBR            MBR           
## [11781] TeleShop       TeleShop       e-Shop         e-Shop        
## [11785] MBR            MBR            e-Shop         MBR           
## [11789] MBR            e-Shop         TeleShop       e-Shop        
## [11793] TeleShop       TeleShop       e-Shop         e-Shop        
## [11797] TeleShop       TeleShop       TeleShop       TeleShop      
## [11801] e-Shop         TeleShop       e-Shop         Flagship store
## [11805] Flagship store Flagship store e-Shop         Flagship store
## [11809] Flagship store e-Shop         e-Shop         Flagship store
## [11813] Flagship store e-Shop         Flagship store Flagship store
## [11817] e-Shop         e-Shop         e-Shop         e-Shop        
## [11821] e-Shop         Flagship store Flagship store e-Shop        
## [11825] Flagship store MBR            MBR            TeleShop      
## [11829] TeleShop       Flagship store MBR            MBR           
## [11833] MBR            Flagship store Flagship store MBR           
## [11837] TeleShop       MBR            MBR            MBR           
## [11841] MBR            Flagship store Flagship store MBR           
## [11845] MBR            Flagship store MBR            Flagship store
## [11849] Flagship store e-Shop         e-Shop         e-Shop        
## [11853] e-Shop         e-Shop         e-Shop         e-Shop        
## [11857] e-Shop         MBR            e-Shop         e-Shop        
## [11861] MBR            e-Shop         e-Shop         e-Shop        
## [11865] e-Shop         TeleShop       TeleShop       TeleShop      
## [11869] MBR            TeleShop       TeleShop       TeleShop      
## [11873] TeleShop       TeleShop       TeleShop       MBR           
## [11877] TeleShop       MBR            e-Shop         e-Shop        
## [11881] MBR            MBR            e-Shop         e-Shop        
## [11885] TeleShop       TeleShop       e-Shop         TeleShop      
## [11889] e-Shop         e-Shop         e-Shop         e-Shop        
## [11893] e-Shop         TeleShop       TeleShop       TeleShop      
## [11897] TeleShop       TeleShop       TeleShop       e-Shop        
## [11901] e-Shop         e-Shop         e-Shop         MBR           
## [11905] e-Shop         e-Shop         e-Shop         MBR           
## [11909] e-Shop         MBR            Flagship store Flagship store
## [11913] e-Shop         MBR            e-Shop         e-Shop        
## [11917] TeleShop       TeleShop       e-Shop         TeleShop      
## [11921] TeleShop       TeleShop       e-Shop         Flagship store
## [11925] Flagship store e-Shop         e-Shop         e-Shop        
## [11929] TeleShop       Flagship store TeleShop       TeleShop      
## [11933] TeleShop       TeleShop       TeleShop       TeleShop      
## [11937] TeleShop       Flagship store Flagship store Flagship store
## [11941] MBR            MBR            TeleShop       MBR           
## [11945] TeleShop       TeleShop       MBR            Flagship store
## [11949] Flagship store Flagship store Flagship store Flagship store
## [11953] Flagship store Flagship store Flagship store Flagship store
## [11957] Flagship store Flagship store Flagship store Flagship store
## [11961] Flagship store Flagship store Flagship store TeleShop      
## [11965] MBR            MBR            MBR            MBR           
## [11969] TeleShop       MBR            TeleShop       e-Shop        
## [11973] MBR            e-Shop         e-Shop         e-Shop        
## [11977] MBR            TeleShop       e-Shop         MBR           
## [11981] TeleShop       MBR            e-Shop         MBR           
## [11985] MBR            MBR            MBR            e-Shop        
## [11989] e-Shop         MBR            MBR            MBR           
## [11993] e-Shop         MBR            e-Shop         e-Shop        
## [11997] MBR            MBR            MBR            MBR           
## [12001] MBR            MBR            MBR            MBR           
## [12005] MBR            MBR            MBR            MBR           
## [12009] e-Shop         MBR            e-Shop         MBR           
## [12013] e-Shop         MBR            e-Shop         e-Shop        
## [12017] MBR            MBR            Flagship store Flagship store
## [12021] Flagship store Flagship store TeleShop       Flagship store
## [12025] TeleShop       Flagship store Flagship store e-Shop        
## [12029] e-Shop         TeleShop       Flagship store e-Shop        
## [12033] Flagship store e-Shop         Flagship store e-Shop        
## [12037] Flagship store e-Shop         e-Shop         e-Shop        
## [12041] e-Shop         e-Shop         Flagship store e-Shop        
## [12045] Flagship store Flagship store e-Shop         e-Shop        
## [12049] e-Shop         e-Shop         e-Shop         e-Shop        
## [12053] e-Shop         TeleShop       e-Shop         TeleShop      
## [12057] e-Shop         e-Shop         TeleShop       e-Shop        
## [12061] e-Shop         TeleShop       TeleShop       TeleShop      
## [12065] Flagship store TeleShop       e-Shop         Flagship store
## [12069] TeleShop       Flagship store TeleShop       Flagship store
## [12073] TeleShop       TeleShop       TeleShop       e-Shop        
## [12077] Flagship store MBR            MBR            MBR           
## [12081] MBR            MBR            e-Shop         e-Shop        
## [12085] e-Shop         MBR            MBR            TeleShop      
## [12089] TeleShop       TeleShop       Flagship store Flagship store
## [12093] Flagship store Flagship store Flagship store e-Shop        
## [12097] Flagship store Flagship store TeleShop       e-Shop        
## [12101] Flagship store Flagship store TeleShop       Flagship store
## [12105] TeleShop       MBR            MBR            MBR           
## [12109] MBR            MBR            MBR            TeleShop      
## [12113] TeleShop       Flagship store MBR            TeleShop      
## [12117] MBR            Flagship store Flagship store TeleShop      
## [12121] MBR            TeleShop       TeleShop       e-Shop        
## [12125] e-Shop         Flagship store Flagship store Flagship store
## [12129] Flagship store Flagship store Flagship store Flagship store
## [12133] Flagship store MBR            MBR            MBR           
## [12137] MBR            MBR            MBR            TeleShop      
## [12141] TeleShop       e-Shop         e-Shop         e-Shop        
## [12145] e-Shop         e-Shop         Flagship store MBR           
## [12149] MBR            MBR            Flagship store MBR           
## [12153] Flagship store Flagship store MBR            e-Shop        
## [12157] e-Shop         e-Shop         e-Shop         e-Shop        
## [12161] e-Shop         e-Shop         e-Shop         e-Shop        
## [12165] MBR            e-Shop         MBR            MBR           
## [12169] e-Shop         Flagship store e-Shop         e-Shop        
## [12173] e-Shop         MBR            e-Shop         e-Shop        
## [12177] MBR            Flagship store e-Shop         e-Shop        
## [12181] e-Shop         e-Shop         e-Shop         Flagship store
## [12185] MBR            MBR            MBR            TeleShop      
## [12189] TeleShop       TeleShop       Flagship store Flagship store
## [12193] TeleShop       MBR            MBR            Flagship store
## [12197] MBR            TeleShop       TeleShop       MBR           
## [12201] Flagship store MBR            Flagship store MBR           
## [12205] MBR            MBR            MBR            MBR           
## [12209] TeleShop       TeleShop       TeleShop       TeleShop      
## [12213] TeleShop       TeleShop       Flagship store Flagship store
## [12217] e-Shop         Flagship store MBR            e-Shop        
## [12221] MBR            Flagship store e-Shop         e-Shop        
## [12225] Flagship store e-Shop         TeleShop       TeleShop      
## [12229] e-Shop         TeleShop       TeleShop       TeleShop      
## [12233] e-Shop         TeleShop       e-Shop         e-Shop        
## [12237] MBR            e-Shop         MBR            MBR           
## [12241] MBR            MBR            Flagship store TeleShop      
## [12245] Flagship store e-Shop         e-Shop         TeleShop      
## [12249] TeleShop       Flagship store Flagship store e-Shop        
## [12253] e-Shop         Flagship store Flagship store MBR           
## [12257] MBR            MBR            MBR            MBR           
## [12261] MBR            MBR            MBR            MBR           
## [12265] Flagship store MBR            Flagship store MBR           
## [12269] MBR            e-Shop         MBR            Flagship store
## [12273] e-Shop         e-Shop         MBR            Flagship store
## [12277] TeleShop       Flagship store Flagship store Flagship store
## [12281] Flagship store Flagship store Flagship store e-Shop        
## [12285] Flagship store e-Shop         Flagship store Flagship store
## [12289] e-Shop         MBR            e-Shop         TeleShop      
## [12293] e-Shop         Flagship store TeleShop       TeleShop      
## [12297] TeleShop       Flagship store TeleShop       Flagship store
## [12301] Flagship store TeleShop       TeleShop       TeleShop      
## [12305] Flagship store e-Shop         e-Shop         e-Shop        
## [12309] Flagship store Flagship store Flagship store e-Shop        
## [12313] e-Shop         Flagship store e-Shop         e-Shop        
## [12317] e-Shop         e-Shop         e-Shop         e-Shop        
## [12321] e-Shop         Flagship store Flagship store Flagship store
## [12325] Flagship store e-Shop         e-Shop         Flagship store
## [12329] Flagship store Flagship store Flagship store Flagship store
## [12333] Flagship store TeleShop       TeleShop       MBR           
## [12337] MBR            TeleShop       TeleShop       TeleShop      
## [12341] TeleShop       TeleShop       MBR            Flagship store
## [12345] Flagship store Flagship store e-Shop         e-Shop        
## [12349] e-Shop         MBR            e-Shop         e-Shop        
## [12353] Flagship store Flagship store e-Shop         Flagship store
## [12357] TeleShop       TeleShop       Flagship store Flagship store
## [12361] e-Shop         Flagship store Flagship store Flagship store
## [12365] e-Shop         e-Shop         e-Shop         MBR           
## [12369] e-Shop         MBR            e-Shop         MBR           
## [12373] MBR            MBR            e-Shop         e-Shop        
## [12377] e-Shop         e-Shop         e-Shop         e-Shop        
## [12381] MBR            MBR            e-Shop         e-Shop        
## [12385] TeleShop       e-Shop         TeleShop       TeleShop      
## [12389] TeleShop       e-Shop         TeleShop       MBR           
## [12393] Flagship store e-Shop         e-Shop         Flagship store
## [12397] Flagship store Flagship store Flagship store MBR           
## [12401] MBR            Flagship store MBR            Flagship store
## [12405] Flagship store Flagship store TeleShop       TeleShop      
## [12409] TeleShop       TeleShop       TeleShop       TeleShop      
## [12413] TeleShop       TeleShop       MBR            MBR           
## [12417] MBR            MBR            TeleShop       TeleShop      
## [12421] TeleShop       TeleShop       TeleShop       TeleShop      
## [12425] TeleShop       TeleShop       TeleShop       TeleShop      
## [12429] MBR            MBR            TeleShop       MBR           
## [12433] MBR            MBR            MBR            TeleShop      
## [12437] MBR            MBR            MBR            MBR           
## [12441] MBR            MBR            MBR            e-Shop        
## [12445] e-Shop         e-Shop         e-Shop         e-Shop        
## [12449] e-Shop         MBR            Flagship store Flagship store
## [12453] MBR            TeleShop       e-Shop         e-Shop        
## [12457] Flagship store Flagship store e-Shop         Flagship store
## [12461] MBR            MBR            TeleShop       MBR           
## [12465] Flagship store MBR            e-Shop         Flagship store
## [12469] MBR            Flagship store e-Shop         MBR           
## [12473] e-Shop         e-Shop         e-Shop         e-Shop        
## [12477] e-Shop         e-Shop         e-Shop         e-Shop        
## [12481] e-Shop         e-Shop         TeleShop       e-Shop        
## [12485] TeleShop       TeleShop       e-Shop         e-Shop        
## [12489] TeleShop       MBR            TeleShop       MBR           
## [12493] MBR            Flagship store TeleShop       MBR           
## [12497] TeleShop       TeleShop       Flagship store Flagship store
## [12501] MBR            TeleShop       TeleShop       TeleShop      
## [12505] TeleShop       TeleShop       TeleShop       TeleShop      
## [12509] Flagship store Flagship store e-Shop         e-Shop        
## [12513] Flagship store Flagship store e-Shop         e-Shop        
## [12517] e-Shop         e-Shop         e-Shop         e-Shop        
## [12521] e-Shop         e-Shop         TeleShop       TeleShop      
## [12525] e-Shop         TeleShop       TeleShop       Flagship store
## [12529] Flagship store Flagship store Flagship store Flagship store
## [12533] e-Shop         e-Shop         Flagship store TeleShop      
## [12537] TeleShop       TeleShop       Flagship store Flagship store
## [12541] e-Shop         e-Shop         e-Shop         e-Shop        
## [12545] e-Shop         e-Shop         MBR            e-Shop        
## [12549] e-Shop         MBR            e-Shop         e-Shop        
## [12553] e-Shop         e-Shop         MBR            MBR           
## [12557] e-Shop         e-Shop         e-Shop         e-Shop        
## [12561] e-Shop         TeleShop       TeleShop       TeleShop      
## [12565] TeleShop       TeleShop       e-Shop         e-Shop        
## [12569] e-Shop         e-Shop         e-Shop         e-Shop        
## [12573] e-Shop         e-Shop         e-Shop         e-Shop        
## [12577] e-Shop         e-Shop         e-Shop         e-Shop        
## [12581] e-Shop         e-Shop         e-Shop         e-Shop        
## [12585] e-Shop         e-Shop         e-Shop         e-Shop        
## [12589] e-Shop         e-Shop         MBR            MBR           
## [12593] e-Shop         e-Shop         MBR            MBR           
## [12597] MBR            e-Shop         MBR            MBR           
## [12601] MBR            MBR            MBR            MBR           
## [12605] MBR            MBR            e-Shop         e-Shop        
## [12609] MBR            MBR            TeleShop       TeleShop      
## [12613] TeleShop       MBR            MBR            TeleShop      
## [12617] TeleShop       MBR            e-Shop         Flagship store
## [12621] e-Shop         e-Shop         Flagship store e-Shop        
## [12625] Flagship store Flagship store e-Shop         TeleShop      
## [12629] MBR            TeleShop       MBR            MBR           
## [12633] MBR            TeleShop       TeleShop       TeleShop      
## [12637] MBR            Flagship store e-Shop         Flagship store
## [12641] e-Shop         TeleShop       e-Shop         TeleShop      
## [12645] e-Shop         e-Shop         e-Shop         e-Shop        
## [12649] e-Shop         e-Shop         e-Shop         TeleShop      
## [12653] TeleShop       Flagship store Flagship store TeleShop      
## [12657] Flagship store TeleShop       e-Shop         e-Shop        
## [12661] TeleShop       e-Shop         TeleShop       TeleShop      
## [12665] TeleShop       TeleShop       TeleShop       TeleShop      
## [12669] TeleShop       TeleShop       e-Shop         e-Shop        
## [12673] e-Shop         MBR            e-Shop         MBR           
## [12677] e-Shop         e-Shop         MBR            MBR           
## [12681] MBR            MBR            e-Shop         MBR           
## [12685] MBR            e-Shop         MBR            MBR           
## [12689] MBR            e-Shop         Flagship store e-Shop        
## [12693] Flagship store Flagship store e-Shop         Flagship store
## [12697] e-Shop         Flagship store e-Shop         e-Shop        
## [12701] TeleShop       e-Shop         TeleShop       TeleShop      
## [12705] TeleShop       e-Shop         TeleShop       TeleShop      
## [12709] e-Shop         e-Shop         TeleShop       e-Shop        
## [12713] TeleShop       e-Shop         TeleShop       TeleShop      
## [12717] TeleShop       e-Shop         e-Shop         MBR           
## [12721] e-Shop         e-Shop         e-Shop         e-Shop        
## [12725] MBR            MBR            e-Shop         e-Shop        
## [12729] e-Shop         e-Shop         e-Shop         e-Shop        
## [12733] MBR            e-Shop         MBR            e-Shop        
## [12737] TeleShop       MBR            e-Shop         e-Shop        
## [12741] TeleShop       MBR            TeleShop       e-Shop        
## [12745] TeleShop       TeleShop       MBR            e-Shop        
## [12749] e-Shop         MBR            MBR            TeleShop      
## [12753] TeleShop       TeleShop       TeleShop       MBR           
## [12757] TeleShop       e-Shop         TeleShop       e-Shop        
## [12761] e-Shop         Flagship store Flagship store e-Shop        
## [12765] e-Shop         e-Shop         e-Shop         Flagship store
## [12769] Flagship store Flagship store Flagship store MBR           
## [12773] MBR            MBR            MBR            e-Shop        
## [12777] e-Shop         e-Shop         e-Shop         e-Shop        
## [12781] e-Shop         e-Shop         e-Shop         e-Shop        
## [12785] e-Shop         Flagship store e-Shop         e-Shop        
## [12789] e-Shop         e-Shop         e-Shop         Flagship store
## [12793] e-Shop         e-Shop         Flagship store MBR           
## [12797] MBR            MBR            MBR            MBR           
## [12801] MBR            Flagship store MBR            MBR           
## [12805] MBR            MBR            MBR            Flagship store
## [12809] Flagship store Flagship store Flagship store Flagship store
## [12813] Flagship store Flagship store Flagship store Flagship store
## [12817] Flagship store Flagship store Flagship store Flagship store
## [12821] Flagship store Flagship store Flagship store Flagship store
## [12825] MBR            e-Shop         e-Shop         MBR           
## [12829] MBR            MBR            MBR            MBR           
## [12833] e-Shop         MBR            e-Shop         MBR           
## [12837] e-Shop         e-Shop         e-Shop         e-Shop        
## [12841] e-Shop         e-Shop         e-Shop         e-Shop        
## [12845] e-Shop         MBR            e-Shop         TeleShop      
## [12849] TeleShop       e-Shop         TeleShop       TeleShop      
## [12853] TeleShop       e-Shop         MBR            TeleShop      
## [12857] TeleShop       MBR            e-Shop         MBR           
## [12861] e-Shop         e-Shop         MBR            MBR           
## [12865] e-Shop         MBR            MBR            e-Shop        
## [12869] MBR            e-Shop         MBR            e-Shop        
## [12873] e-Shop         e-Shop         e-Shop         e-Shop        
## [12877] e-Shop         e-Shop         e-Shop         e-Shop        
## [12881] e-Shop         e-Shop         e-Shop         e-Shop        
## [12885] e-Shop         TeleShop       TeleShop       TeleShop      
## [12889] TeleShop       TeleShop       TeleShop       TeleShop      
## [12893] TeleShop       Flagship store Flagship store TeleShop      
## [12897] TeleShop       TeleShop       MBR            MBR           
## [12901] TeleShop       TeleShop       TeleShop       Flagship store
## [12905] Flagship store Flagship store TeleShop       MBR           
## [12909] Flagship store MBR            Flagship store TeleShop      
## [12913] Flagship store Flagship store MBR            TeleShop      
## [12917] Flagship store MBR            MBR            MBR           
## [12921] MBR            MBR            MBR            MBR           
## [12925] MBR            MBR            MBR            Flagship store
## [12929] Flagship store Flagship store TeleShop       Flagship store
## [12933] TeleShop       Flagship store Flagship store TeleShop      
## [12937] e-Shop         e-Shop         TeleShop       e-Shop        
## [12941] TeleShop       e-Shop         e-Shop         e-Shop        
## [12945] Flagship store e-Shop         e-Shop         e-Shop        
## [12949] Flagship store e-Shop         Flagship store e-Shop        
## [12953] e-Shop         e-Shop         e-Shop         e-Shop        
## [12957] e-Shop         Flagship store e-Shop         e-Shop        
## [12961] Flagship store Flagship store e-Shop         Flagship store
## [12965] Flagship store Flagship store Flagship store Flagship store
## [12969] Flagship store e-Shop         Flagship store Flagship store
## [12973] Flagship store e-Shop         MBR            MBR           
## [12977] MBR            TeleShop       TeleShop       Flagship store
## [12981] Flagship store Flagship store Flagship store Flagship store
## [12985] Flagship store Flagship store Flagship store Flagship store
## [12989] TeleShop       e-Shop         e-Shop         TeleShop      
## [12993] TeleShop       e-Shop         MBR            MBR           
## [12997] TeleShop       e-Shop         e-Shop         TeleShop      
## [13001] MBR            MBR            MBR            TeleShop      
## [13005] TeleShop       TeleShop       MBR            TeleShop      
## [13009] MBR            TeleShop       MBR            e-Shop        
## [13013] MBR            TeleShop       e-Shop         TeleShop      
## [13017] e-Shop         MBR            TeleShop       TeleShop      
## [13021] e-Shop         MBR            TeleShop       TeleShop      
## [13025] MBR            MBR            MBR            MBR           
## [13029] MBR            e-Shop         e-Shop         e-Shop        
## [13033] TeleShop       TeleShop       e-Shop         MBR           
## [13037] TeleShop       TeleShop       MBR            e-Shop        
## [13041] e-Shop         MBR            e-Shop         e-Shop        
## [13045] MBR            MBR            TeleShop       TeleShop      
## [13049] MBR            TeleShop       MBR            TeleShop      
## [13053] e-Shop         TeleShop       TeleShop       MBR           
## [13057] TeleShop       e-Shop         Flagship store Flagship store
## [13061] Flagship store Flagship store Flagship store Flagship store
## [13065] Flagship store Flagship store e-Shop         Flagship store
## [13069] Flagship store e-Shop         Flagship store Flagship store
## [13073] Flagship store Flagship store e-Shop         Flagship store
## [13077] e-Shop         Flagship store Flagship store Flagship store
## [13081] Flagship store MBR            MBR            MBR           
## [13085] MBR            e-Shop         e-Shop         MBR           
## [13089] MBR            MBR            e-Shop         MBR           
## [13093] MBR            MBR            e-Shop         e-Shop        
## [13097] e-Shop         e-Shop         MBR            Flagship store
## [13101] MBR            Flagship store e-Shop         MBR           
## [13105] e-Shop         e-Shop         Flagship store MBR           
## [13109] MBR            MBR            Flagship store Flagship store
## [13113] e-Shop         e-Shop         MBR            MBR           
## [13117] e-Shop         e-Shop         e-Shop         e-Shop        
## [13121] MBR            e-Shop         MBR            e-Shop        
## [13125] MBR            MBR            e-Shop         e-Shop        
## [13129] e-Shop         e-Shop         e-Shop         e-Shop        
## [13133] e-Shop         e-Shop         MBR            e-Shop        
## [13137] e-Shop         e-Shop         e-Shop         e-Shop        
## [13141] e-Shop         e-Shop         e-Shop         Flagship store
## [13145] e-Shop         TeleShop       Flagship store e-Shop        
## [13149] TeleShop       TeleShop       Flagship store TeleShop      
## [13153] e-Shop         TeleShop       TeleShop       e-Shop        
## [13157] Flagship store TeleShop       Flagship store Flagship store
## [13161] Flagship store Flagship store e-Shop         e-Shop        
## [13165] e-Shop         e-Shop         e-Shop         e-Shop        
## [13169] e-Shop         e-Shop         e-Shop         Flagship store
## [13173] Flagship store Flagship store e-Shop         e-Shop        
## [13177] Flagship store Flagship store Flagship store e-Shop        
## [13181] Flagship store Flagship store e-Shop         e-Shop        
## [13185] e-Shop         Flagship store e-Shop         Flagship store
## [13189] e-Shop         e-Shop         Flagship store e-Shop        
## [13193] e-Shop         Flagship store Flagship store e-Shop        
## [13197] TeleShop       e-Shop         e-Shop         MBR           
## [13201] e-Shop         MBR            e-Shop         e-Shop        
## [13205] MBR            e-Shop         e-Shop         e-Shop        
## [13209] MBR            e-Shop         e-Shop         e-Shop        
## [13213] TeleShop       TeleShop       e-Shop         TeleShop      
## [13217] e-Shop         e-Shop         TeleShop       MBR           
## [13221] e-Shop         e-Shop         MBR            e-Shop        
## [13225] e-Shop         e-Shop         e-Shop         Flagship store
## [13229] e-Shop         e-Shop         Flagship store e-Shop        
## [13233] e-Shop         e-Shop         Flagship store e-Shop        
## [13237] Flagship store Flagship store e-Shop         Flagship store
## [13241] Flagship store e-Shop         Flagship store e-Shop        
## [13245] Flagship store Flagship store e-Shop         e-Shop        
## [13249] e-Shop         e-Shop         Flagship store Flagship store
## [13253] e-Shop         e-Shop         Flagship store e-Shop        
## [13257] e-Shop         Flagship store e-Shop         Flagship store
## [13261] e-Shop         e-Shop         e-Shop         e-Shop        
## [13265] e-Shop         e-Shop         e-Shop         TeleShop      
## [13269] e-Shop         TeleShop       e-Shop         e-Shop        
## [13273] e-Shop         e-Shop         TeleShop       e-Shop        
## [13277] TeleShop       TeleShop       e-Shop         TeleShop      
## [13281] TeleShop       TeleShop       Flagship store Flagship store
## [13285] TeleShop       Flagship store TeleShop       TeleShop      
## [13289] TeleShop       Flagship store Flagship store TeleShop      
## [13293] Flagship store Flagship store TeleShop       e-Shop        
## [13297] e-Shop         MBR            MBR            MBR           
## [13301] MBR            TeleShop       e-Shop         e-Shop        
## [13305] Flagship store TeleShop       Flagship store TeleShop      
## [13309] TeleShop       MBR            TeleShop       MBR           
## [13313] Flagship store MBR            MBR            Flagship store
## [13317] MBR            Flagship store Flagship store Flagship store
## [13321] Flagship store e-Shop         e-Shop         TeleShop      
## [13325] e-Shop         TeleShop       TeleShop       TeleShop      
## [13329] TeleShop       e-Shop         e-Shop         e-Shop        
## [13333] e-Shop         Flagship store Flagship store Flagship store
## [13337] Flagship store Flagship store Flagship store MBR           
## [13341] e-Shop         MBR            e-Shop         e-Shop        
## [13345] e-Shop         MBR            e-Shop         MBR           
## [13349] e-Shop         e-Shop         TeleShop       e-Shop        
## [13353] e-Shop         TeleShop       TeleShop       MBR           
## [13357] Flagship store Flagship store Flagship store Flagship store
## [13361] Flagship store MBR            e-Shop         e-Shop        
## [13365] e-Shop         TeleShop       TeleShop       TeleShop      
## [13369] e-Shop         e-Shop         e-Shop         e-Shop        
## [13373] e-Shop         e-Shop         e-Shop         e-Shop        
## [13377] e-Shop         MBR            Flagship store MBR           
## [13381] Flagship store Flagship store Flagship store Flagship store
## [13385] Flagship store MBR            TeleShop       Flagship store
## [13389] TeleShop       Flagship store Flagship store Flagship store
## [13393] Flagship store TeleShop       TeleShop       e-Shop        
## [13397] Flagship store e-Shop         e-Shop         Flagship store
## [13401] e-Shop         Flagship store Flagship store Flagship store
## [13405] Flagship store e-Shop         e-Shop         e-Shop        
## [13409] e-Shop         MBR            MBR            MBR           
## [13413] TeleShop       e-Shop         e-Shop         e-Shop        
## [13417] TeleShop       e-Shop         e-Shop         e-Shop        
## [13421] e-Shop         TeleShop       TeleShop       e-Shop        
## [13425] e-Shop         e-Shop         TeleShop       TeleShop      
## [13429] TeleShop       TeleShop       TeleShop       MBR           
## [13433] MBR            e-Shop         e-Shop         e-Shop        
## [13437] e-Shop         e-Shop         e-Shop         e-Shop        
## [13441] e-Shop         e-Shop         e-Shop         e-Shop        
## [13445] e-Shop         e-Shop         e-Shop         e-Shop        
## [13449] e-Shop         e-Shop         e-Shop         e-Shop        
## [13453] e-Shop         e-Shop         Flagship store MBR           
## [13457] Flagship store MBR            Flagship store MBR           
## [13461] Flagship store Flagship store MBR            Flagship store
## [13465] Flagship store Flagship store Flagship store MBR           
## [13469] Flagship store MBR            e-Shop         e-Shop        
## [13473] TeleShop       TeleShop       TeleShop       e-Shop        
## [13477] MBR            TeleShop       e-Shop         e-Shop        
## [13481] e-Shop         e-Shop         MBR            TeleShop      
## [13485] MBR            MBR            MBR            e-Shop        
## [13489] TeleShop       MBR            MBR            e-Shop        
## [13493] MBR            e-Shop         MBR            e-Shop        
## [13497] e-Shop         MBR            MBR            MBR           
## [13501] Flagship store Flagship store Flagship store Flagship store
## [13505] Flagship store Flagship store MBR            MBR           
## [13509] MBR            MBR            MBR            Flagship store
## [13513] MBR            MBR            MBR            Flagship store
## [13517] MBR            Flagship store Flagship store Flagship store
## [13521] MBR            MBR            Flagship store TeleShop      
## [13525] MBR            Flagship store MBR            MBR           
## [13529] Flagship store MBR            TeleShop       MBR           
## [13533] MBR            Flagship store TeleShop       MBR           
## [13537] MBR            TeleShop       TeleShop       MBR           
## [13541] Flagship store Flagship store TeleShop       MBR           
## [13545] MBR            TeleShop       TeleShop       Flagship store
## [13549] Flagship store TeleShop       TeleShop       Flagship store
## [13553] MBR            TeleShop       Flagship store MBR           
## [13557] TeleShop       MBR            Flagship store TeleShop      
## [13561] Flagship store TeleShop       TeleShop       Flagship store
## [13565] e-Shop         MBR            MBR            MBR           
## [13569] e-Shop         MBR            e-Shop         MBR           
## [13573] e-Shop         MBR            e-Shop         e-Shop        
## [13577] e-Shop         e-Shop         Flagship store Flagship store
## [13581] MBR            MBR            Flagship store e-Shop        
## [13585] e-Shop         e-Shop         e-Shop         TeleShop      
## [13589] TeleShop       Flagship store Flagship store Flagship store
## [13593] Flagship store TeleShop       TeleShop       TeleShop      
## [13597] TeleShop       TeleShop       TeleShop       e-Shop        
## [13601] TeleShop       e-Shop         e-Shop         Flagship store
## [13605] e-Shop         e-Shop         e-Shop         MBR           
## [13609] Flagship store TeleShop       TeleShop       TeleShop      
## [13613] MBR            MBR            Flagship store TeleShop      
## [13617] Flagship store Flagship store TeleShop       Flagship store
## [13621] e-Shop         e-Shop         e-Shop         Flagship store
## [13625] MBR            MBR            e-Shop         Flagship store
## [13629] Flagship store MBR            Flagship store MBR           
## [13633] e-Shop         MBR            MBR            Flagship store
## [13637] e-Shop         Flagship store TeleShop       TeleShop      
## [13641] TeleShop       TeleShop       TeleShop       e-Shop        
## [13645] e-Shop         e-Shop         e-Shop         e-Shop        
## [13649] e-Shop         e-Shop         e-Shop         e-Shop        
## [13653] e-Shop         e-Shop         Flagship store TeleShop      
## [13657] TeleShop       Flagship store Flagship store Flagship store
## [13661] MBR            MBR            MBR            Flagship store
## [13665] Flagship store Flagship store Flagship store Flagship store
## [13669] Flagship store e-Shop         e-Shop         TeleShop      
## [13673] TeleShop       TeleShop       MBR            e-Shop        
## [13677] e-Shop         MBR            e-Shop         TeleShop      
## [13681] e-Shop         e-Shop         TeleShop       TeleShop      
## [13685] e-Shop         e-Shop         e-Shop         MBR           
## [13689] e-Shop         TeleShop       e-Shop         e-Shop        
## [13693] e-Shop         MBR            e-Shop         e-Shop        
## [13697] e-Shop         MBR            e-Shop         e-Shop        
## [13701] e-Shop         e-Shop         e-Shop         e-Shop        
## [13705] TeleShop       TeleShop       e-Shop         e-Shop        
## [13709] TeleShop       TeleShop       TeleShop       MBR           
## [13713] MBR            MBR            TeleShop       TeleShop      
## [13717] TeleShop       TeleShop       TeleShop       TeleShop      
## [13721] TeleShop       e-Shop         e-Shop         e-Shop        
## [13725] e-Shop         e-Shop         e-Shop         e-Shop        
## [13729] e-Shop         e-Shop         e-Shop         Flagship store
## [13733] MBR            Flagship store e-Shop         Flagship store
## [13737] Flagship store MBR            e-Shop         Flagship store
## [13741] Flagship store MBR            Flagship store Flagship store
## [13745] Flagship store Flagship store e-Shop         TeleShop      
## [13749] e-Shop         e-Shop         Flagship store e-Shop        
## [13753] TeleShop       Flagship store e-Shop         e-Shop        
## [13757] Flagship store e-Shop         e-Shop         e-Shop        
## [13761] TeleShop       e-Shop         e-Shop         e-Shop        
## [13765] TeleShop       TeleShop       e-Shop         e-Shop        
## [13769] e-Shop         e-Shop         e-Shop         Flagship store
## [13773] Flagship store e-Shop         e-Shop         Flagship store
## [13777] e-Shop         e-Shop         Flagship store Flagship store
## [13781] Flagship store Flagship store Flagship store TeleShop      
## [13785] Flagship store TeleShop       MBR            MBR           
## [13789] MBR            Flagship store TeleShop       Flagship store
## [13793] TeleShop       TeleShop       TeleShop       TeleShop      
## [13797] TeleShop       TeleShop       TeleShop       e-Shop        
## [13801] e-Shop         e-Shop         Flagship store Flagship store
## [13805] Flagship store MBR            MBR            Flagship store
## [13809] e-Shop         Flagship store Flagship store Flagship store
## [13813] Flagship store Flagship store Flagship store TeleShop      
## [13817] e-Shop         TeleShop       TeleShop       MBR           
## [13821] e-Shop         e-Shop         e-Shop         e-Shop        
## [13825] TeleShop       MBR            TeleShop       e-Shop        
## [13829] e-Shop         e-Shop         e-Shop         MBR           
## [13833] TeleShop       MBR            TeleShop       e-Shop        
## [13837] e-Shop         e-Shop         e-Shop         e-Shop        
## [13841] e-Shop         e-Shop         e-Shop         Flagship store
## [13845] Flagship store e-Shop         e-Shop         Flagship store
## [13849] e-Shop         e-Shop         e-Shop         e-Shop        
## [13853] e-Shop         e-Shop         e-Shop         TeleShop      
## [13857] TeleShop       e-Shop         TeleShop       e-Shop        
## [13861] MBR            TeleShop       Flagship store TeleShop      
## [13865] Flagship store MBR            Flagship store TeleShop      
## [13869] TeleShop       e-Shop         TeleShop       MBR           
## [13873] Flagship store e-Shop         Flagship store MBR           
## [13877] e-Shop         MBR            MBR            e-Shop        
## [13881] MBR            MBR            e-Shop         e-Shop        
## [13885] MBR            e-Shop         e-Shop         MBR           
## [13889] e-Shop         MBR            MBR            MBR           
## [13893] MBR            MBR            Flagship store Flagship store
## [13897] Flagship store MBR            MBR            Flagship store
## [13901] Flagship store MBR            MBR            TeleShop      
## [13905] TeleShop       TeleShop       Flagship store TeleShop      
## [13909] Flagship store TeleShop       e-Shop         e-Shop        
## [13913] e-Shop         e-Shop         e-Shop         e-Shop        
## [13917] e-Shop         e-Shop         e-Shop         e-Shop        
## [13921] e-Shop         TeleShop       e-Shop         Flagship store
## [13925] TeleShop       Flagship store e-Shop         Flagship store
## [13929] Flagship store e-Shop         TeleShop       e-Shop        
## [13933] MBR            MBR            e-Shop         TeleShop      
## [13937] MBR            TeleShop       e-Shop         MBR           
## [13941] e-Shop         TeleShop       MBR            Flagship store
## [13945] Flagship store MBR            MBR            MBR           
## [13949] MBR            MBR            MBR            MBR           
## [13953] MBR            MBR            MBR            TeleShop      
## [13957] MBR            MBR            Flagship store TeleShop      
## [13961] MBR            Flagship store Flagship store MBR           
## [13965] Flagship store MBR            MBR            TeleShop      
## [13969] MBR            TeleShop       TeleShop       MBR           
## [13973] TeleShop       MBR            TeleShop       e-Shop        
## [13977] e-Shop         e-Shop         e-Shop         e-Shop        
## [13981] e-Shop         e-Shop         Flagship store e-Shop        
## [13985] e-Shop         e-Shop         e-Shop         Flagship store
## [13989] Flagship store Flagship store Flagship store e-Shop        
## [13993] TeleShop       TeleShop       TeleShop       TeleShop      
## [13997] Flagship store Flagship store TeleShop       Flagship store
## [14001] e-Shop         Flagship store Flagship store e-Shop        
## [14005] Flagship store Flagship store e-Shop         TeleShop      
## [14009] TeleShop       TeleShop       e-Shop         TeleShop      
## [14013] TeleShop       TeleShop       e-Shop         e-Shop        
## [14017] e-Shop         e-Shop         e-Shop         MBR           
## [14021] MBR            e-Shop         MBR            MBR           
## [14025] MBR            MBR            e-Shop         MBR           
## [14029] MBR            TeleShop       TeleShop       TeleShop      
## [14033] TeleShop       TeleShop       MBR            MBR           
## [14037] MBR            TeleShop       MBR            MBR           
## [14041] MBR            e-Shop         e-Shop         MBR           
## [14045] MBR            MBR            MBR            MBR           
## [14049] MBR            MBR            e-Shop         e-Shop        
## [14053] e-Shop         MBR            e-Shop         e-Shop        
## [14057] TeleShop       TeleShop       MBR            e-Shop        
## [14061] e-Shop         e-Shop         e-Shop         e-Shop        
## [14065] e-Shop         e-Shop         e-Shop         e-Shop        
## [14069] e-Shop         e-Shop         e-Shop         e-Shop        
## [14073] e-Shop         e-Shop         e-Shop         e-Shop        
## [14077] e-Shop         e-Shop         Flagship store e-Shop        
## [14081] Flagship store Flagship store Flagship store e-Shop        
## [14085] Flagship store MBR            MBR            MBR           
## [14089] MBR            MBR            MBR            MBR           
## [14093] MBR            MBR            MBR            MBR           
## [14097] MBR            MBR            e-Shop         e-Shop        
## [14101] Flagship store e-Shop         Flagship store e-Shop        
## [14105] Flagship store Flagship store Flagship store Flagship store
## [14109] MBR            MBR            e-Shop         MBR           
## [14113] MBR            MBR            e-Shop         TeleShop      
## [14117] TeleShop       TeleShop       TeleShop       TeleShop      
## [14121] TeleShop       MBR            MBR            MBR           
## [14125] e-Shop         e-Shop         e-Shop         e-Shop        
## [14129] MBR            MBR            MBR            MBR           
## [14133] MBR            MBR            MBR            MBR           
## [14137] MBR            MBR            MBR            MBR           
## [14141] MBR            MBR            MBR            MBR           
## [14145] MBR            MBR            Flagship store MBR           
## [14149] Flagship store Flagship store e-Shop         Flagship store
## [14153] MBR            Flagship store Flagship store e-Shop        
## [14157] e-Shop         e-Shop         e-Shop         e-Shop        
## [14161] e-Shop         e-Shop         Flagship store Flagship store
## [14165] e-Shop         e-Shop         e-Shop         e-Shop        
## [14169] e-Shop         e-Shop         e-Shop         e-Shop        
## [14173] MBR            MBR            e-Shop         e-Shop        
## [14177] e-Shop         e-Shop         TeleShop       MBR           
## [14181] TeleShop       e-Shop         e-Shop         MBR           
## [14185] TeleShop       TeleShop       TeleShop       TeleShop      
## [14189] e-Shop         e-Shop         e-Shop         e-Shop        
## [14193] e-Shop         e-Shop         e-Shop         e-Shop        
## [14197] e-Shop         e-Shop         e-Shop         e-Shop        
## [14201] e-Shop         e-Shop         e-Shop         TeleShop      
## [14205] e-Shop         e-Shop         e-Shop         TeleShop      
## [14209] TeleShop       MBR            TeleShop       TeleShop      
## [14213] TeleShop       MBR            MBR            TeleShop      
## [14217] e-Shop         MBR            MBR            e-Shop        
## [14221] MBR            TeleShop       TeleShop       MBR           
## [14225] TeleShop       e-Shop         MBR            MBR           
## [14229] TeleShop       TeleShop       e-Shop         TeleShop      
## [14233] e-Shop         TeleShop       TeleShop       e-Shop        
## [14237] MBR            TeleShop       MBR            MBR           
## [14241] MBR            TeleShop       MBR            Flagship store
## [14245] Flagship store MBR            TeleShop       TeleShop      
## [14249] TeleShop       TeleShop       TeleShop       TeleShop      
## [14253] TeleShop       TeleShop       TeleShop       TeleShop      
## [14257] Flagship store Flagship store Flagship store Flagship store
## [14261] Flagship store Flagship store Flagship store Flagship store
## [14265] Flagship store Flagship store Flagship store Flagship store
## [14269] Flagship store Flagship store Flagship store Flagship store
## [14273] Flagship store Flagship store Flagship store TeleShop      
## [14277] MBR            e-Shop         e-Shop         Flagship store
## [14281] Flagship store e-Shop         MBR            Flagship store
## [14285] Flagship store TeleShop       e-Shop         MBR           
## [14289] e-Shop         e-Shop         Flagship store Flagship store
## [14293] e-Shop         e-Shop         e-Shop         e-Shop        
## [14297] e-Shop         TeleShop       TeleShop       TeleShop      
## [14301] TeleShop       TeleShop       TeleShop       TeleShop      
## [14305] TeleShop       TeleShop       TeleShop       MBR           
## [14309] e-Shop         e-Shop         Flagship store e-Shop        
## [14313] Flagship store e-Shop         e-Shop         e-Shop        
## [14317] MBR            e-Shop         e-Shop         e-Shop        
## [14321] e-Shop         e-Shop         e-Shop         e-Shop        
## [14325] e-Shop         e-Shop         e-Shop         e-Shop        
## [14329] e-Shop         e-Shop         e-Shop         MBR           
## [14333] e-Shop         e-Shop         e-Shop         Flagship store
## [14337] TeleShop       e-Shop         e-Shop         TeleShop      
## [14341] Flagship store e-Shop         MBR            MBR           
## [14345] MBR            e-Shop         e-Shop         MBR           
## [14349] e-Shop         e-Shop         MBR            MBR           
## [14353] MBR            MBR            MBR            Flagship store
## [14357] Flagship store TeleShop       Flagship store Flagship store
## [14361] TeleShop       Flagship store Flagship store TeleShop      
## [14365] TeleShop       Flagship store TeleShop       Flagship store
## [14369] MBR            MBR            TeleShop       MBR           
## [14373] MBR            TeleShop       MBR            MBR           
## [14377] TeleShop       TeleShop       e-Shop         TeleShop      
## [14381] TeleShop       e-Shop         TeleShop       TeleShop      
## [14385] e-Shop         e-Shop         e-Shop         MBR           
## [14389] e-Shop         e-Shop         MBR            e-Shop        
## [14393] MBR            e-Shop         e-Shop         MBR           
## [14397] e-Shop         e-Shop         e-Shop         MBR           
## [14401] e-Shop         e-Shop         e-Shop         e-Shop        
## [14405] e-Shop         e-Shop         MBR            e-Shop        
## [14409] Flagship store Flagship store Flagship store Flagship store
## [14413] Flagship store e-Shop         TeleShop       e-Shop        
## [14417] e-Shop         TeleShop       e-Shop         TeleShop      
## [14421] TeleShop       e-Shop         e-Shop         TeleShop      
## [14425] TeleShop       MBR            MBR            Flagship store
## [14429] Flagship store Flagship store e-Shop         e-Shop        
## [14433] e-Shop         MBR            MBR            MBR           
## [14437] e-Shop         TeleShop       MBR            MBR           
## [14441] e-Shop         TeleShop       e-Shop         TeleShop      
## [14445] TeleShop       TeleShop       MBR            TeleShop      
## [14449] e-Shop         e-Shop         e-Shop         e-Shop        
## [14453] e-Shop         e-Shop         Flagship store e-Shop        
## [14457] e-Shop         Flagship store Flagship store e-Shop        
## [14461] e-Shop         e-Shop         e-Shop         e-Shop        
## [14465] e-Shop         e-Shop         Flagship store e-Shop        
## [14469] Flagship store Flagship store Flagship store e-Shop        
## [14473] Flagship store Flagship store e-Shop         e-Shop        
## [14477] e-Shop         Flagship store e-Shop         Flagship store
## [14481] e-Shop         e-Shop         MBR            TeleShop      
## [14485] MBR            MBR            TeleShop       MBR           
## [14489] Flagship store MBR            TeleShop       MBR           
## [14493] MBR            TeleShop       MBR            Flagship store
## [14497] e-Shop         MBR            TeleShop       e-Shop        
## [14501] TeleShop       Flagship store Flagship store TeleShop      
## [14505] TeleShop       Flagship store TeleShop       TeleShop      
## [14509] TeleShop       Flagship store MBR            MBR           
## [14513] MBR            MBR            MBR            MBR           
## [14517] MBR            MBR            MBR            MBR           
## [14521] MBR            MBR            MBR            MBR           
## [14525] MBR            MBR            e-Shop         e-Shop        
## [14529] MBR            MBR            MBR            e-Shop        
## [14533] e-Shop         Flagship store Flagship store e-Shop        
## [14537] Flagship store e-Shop         e-Shop         MBR           
## [14541] MBR            Flagship store MBR            e-Shop        
## [14545] Flagship store e-Shop         e-Shop         e-Shop        
## [14549] MBR            MBR            TeleShop       MBR           
## [14553] MBR            TeleShop       TeleShop       MBR           
## [14557] TeleShop       TeleShop       e-Shop         Flagship store
## [14561] e-Shop         e-Shop         e-Shop         e-Shop        
## [14565] e-Shop         e-Shop         e-Shop         Flagship store
## [14569] Flagship store MBR            e-Shop         MBR           
## [14573] e-Shop         MBR            MBR            MBR           
## [14577] MBR            MBR            e-Shop         MBR           
## [14581] MBR            MBR            MBR            e-Shop        
## [14585] MBR            MBR            MBR            MBR           
## [14589] e-Shop         e-Shop         MBR            MBR           
## [14593] e-Shop         e-Shop         e-Shop         e-Shop        
## [14597] e-Shop         e-Shop         e-Shop         e-Shop        
## [14601] e-Shop         e-Shop         e-Shop         e-Shop        
## [14605] e-Shop         MBR            e-Shop         e-Shop        
## [14609] e-Shop         MBR            e-Shop         e-Shop        
## [14613] MBR            e-Shop         Flagship store Flagship store
## [14617] Flagship store Flagship store Flagship store Flagship store
## [14621] Flagship store e-Shop         e-Shop         Flagship store
## [14625] Flagship store TeleShop       TeleShop       Flagship store
## [14629] TeleShop       Flagship store Flagship store e-Shop        
## [14633] Flagship store Flagship store e-Shop         e-Shop        
## [14637] e-Shop         e-Shop         e-Shop         e-Shop        
## [14641] e-Shop         e-Shop         e-Shop         e-Shop        
## [14645] e-Shop         Flagship store e-Shop         e-Shop        
## [14649] e-Shop         MBR            Flagship store e-Shop        
## [14653] Flagship store MBR            Flagship store e-Shop        
## [14657] Flagship store MBR            e-Shop         e-Shop        
## [14661] MBR            MBR            e-Shop         e-Shop        
## [14665] e-Shop         e-Shop         e-Shop         e-Shop        
## [14669] e-Shop         e-Shop         e-Shop         e-Shop        
## [14673] MBR            Flagship store MBR            MBR           
## [14677] Flagship store Flagship store TeleShop       Flagship store
## [14681] TeleShop       TeleShop       TeleShop       TeleShop      
## [14685] MBR            e-Shop         MBR            e-Shop        
## [14689] e-Shop         e-Shop         e-Shop         e-Shop        
## [14693] MBR            Flagship store e-Shop         MBR           
## [14697] e-Shop         Flagship store e-Shop         Flagship store
## [14701] Flagship store e-Shop         e-Shop         Flagship store
## [14705] MBR            e-Shop         MBR            Flagship store
## [14709] Flagship store Flagship store MBR            Flagship store
## [14713] MBR            Flagship store MBR            e-Shop        
## [14717] e-Shop         TeleShop       TeleShop       e-Shop        
## [14721] e-Shop         TeleShop       e-Shop         e-Shop        
## [14725] e-Shop         e-Shop         e-Shop         e-Shop        
## [14729] Flagship store Flagship store e-Shop         e-Shop        
## [14733] e-Shop         Flagship store e-Shop         Flagship store
## [14737] Flagship store e-Shop         Flagship store Flagship store
## [14741] e-Shop         Flagship store Flagship store Flagship store
## [14745] Flagship store Flagship store Flagship store e-Shop        
## [14749] e-Shop         e-Shop         e-Shop         e-Shop        
## [14753] e-Shop         MBR            e-Shop         MBR           
## [14757] TeleShop       e-Shop         TeleShop       TeleShop      
## [14761] TeleShop       MBR            e-Shop         MBR           
## [14765] e-Shop         e-Shop         Flagship store TeleShop      
## [14769] Flagship store Flagship store TeleShop       TeleShop      
## [14773] TeleShop       e-Shop         Flagship store Flagship store
## [14777] e-Shop         Flagship store Flagship store Flagship store
## [14781] Flagship store Flagship store Flagship store e-Shop        
## [14785] TeleShop       Flagship store Flagship store Flagship store
## [14789] Flagship store Flagship store Flagship store TeleShop      
## [14793] Flagship store e-Shop         e-Shop         e-Shop        
## [14797] e-Shop         e-Shop         e-Shop         MBR           
## [14801] MBR            MBR            MBR            MBR           
## [14805] MBR            e-Shop         TeleShop       e-Shop        
## [14809] e-Shop         TeleShop       e-Shop         e-Shop        
## [14813] e-Shop         e-Shop         MBR            MBR           
## [14817] MBR            e-Shop         MBR            MBR           
## [14821] MBR            MBR            MBR            MBR           
## [14825] MBR            MBR            MBR            MBR           
## [14829] e-Shop         e-Shop         e-Shop         e-Shop        
## [14833] e-Shop         e-Shop         TeleShop       e-Shop        
## [14837] TeleShop       TeleShop       TeleShop       TeleShop      
## [14841] e-Shop         e-Shop         e-Shop         TeleShop      
## [14845] TeleShop       TeleShop       e-Shop         e-Shop        
## [14849] Flagship store Flagship store e-Shop         e-Shop        
## [14853] e-Shop         e-Shop         Flagship store Flagship store
## [14857] e-Shop         e-Shop         Flagship store MBR           
## [14861] Flagship store MBR            MBR            MBR           
## [14865] MBR            Flagship store Flagship store e-Shop        
## [14869] MBR            e-Shop         e-Shop         e-Shop        
## [14873] e-Shop         e-Shop         e-Shop         e-Shop        
## [14877] MBR            e-Shop         e-Shop         e-Shop        
## [14881] e-Shop         e-Shop         MBR            MBR           
## [14885] e-Shop         e-Shop         e-Shop         e-Shop        
## [14889] TeleShop       MBR            Flagship store Flagship store
## [14893] MBR            MBR            e-Shop         Flagship store
## [14897] Flagship store e-Shop         TeleShop       e-Shop        
## [14901] e-Shop         Flagship store TeleShop       MBR           
## [14905] MBR            MBR            MBR            MBR           
## [14909] MBR            e-Shop         e-Shop         TeleShop      
## [14913] TeleShop       TeleShop       e-Shop         e-Shop        
## [14917] TeleShop       e-Shop         TeleShop       Flagship store
## [14921] Flagship store e-Shop         e-Shop         TeleShop      
## [14925] e-Shop         e-Shop         Flagship store Flagship store
## [14929] e-Shop         MBR            e-Shop         e-Shop        
## [14933] MBR            e-Shop         MBR            MBR           
## [14937] e-Shop         Flagship store e-Shop         e-Shop        
## [14941] e-Shop         Flagship store MBR            MBR           
## [14945] MBR            MBR            Flagship store MBR           
## [14949] MBR            e-Shop         e-Shop         e-Shop        
## [14953] MBR            MBR            Flagship store Flagship store
## [14957] TeleShop       TeleShop       TeleShop       e-Shop        
## [14961] e-Shop         Flagship store e-Shop         e-Shop        
## [14965] Flagship store e-Shop         Flagship store e-Shop        
## [14969] e-Shop         e-Shop         e-Shop         Flagship store
## [14973] Flagship store e-Shop         Flagship store Flagship store
## [14977] e-Shop         Flagship store e-Shop         Flagship store
## [14981] MBR            e-Shop         e-Shop         e-Shop        
## [14985] e-Shop         MBR            MBR            e-Shop        
## [14989] e-Shop         e-Shop         TeleShop       TeleShop      
## [14993] TeleShop       TeleShop       e-Shop         e-Shop        
## [14997] e-Shop         e-Shop         e-Shop         e-Shop        
## [15001] e-Shop         e-Shop         e-Shop         e-Shop        
## [15005] e-Shop         e-Shop         e-Shop         e-Shop        
## [15009] e-Shop         e-Shop         e-Shop         e-Shop        
## [15013] TeleShop       MBR            e-Shop         MBR           
## [15017] TeleShop       TeleShop       MBR            TeleShop      
## [15021] TeleShop       MBR            TeleShop       TeleShop      
## [15025] MBR            MBR            TeleShop       e-Shop        
## [15029] e-Shop         e-Shop         e-Shop         e-Shop        
## [15033] e-Shop         e-Shop         e-Shop         e-Shop        
## [15037] e-Shop         MBR            e-Shop         e-Shop        
## [15041] e-Shop         MBR            e-Shop         e-Shop        
## [15045] e-Shop         e-Shop         e-Shop         Flagship store
## [15049] e-Shop         Flagship store e-Shop         e-Shop        
## [15053] Flagship store Flagship store e-Shop         Flagship store
## [15057] e-Shop         e-Shop         e-Shop         e-Shop        
## [15061] e-Shop         e-Shop         e-Shop         Flagship store
## [15065] Flagship store e-Shop         e-Shop         e-Shop        
## [15069] MBR            MBR            Flagship store MBR           
## [15073] TeleShop       Flagship store TeleShop       TeleShop      
## [15077] Flagship store TeleShop       TeleShop       Flagship store
## [15081] TeleShop       Flagship store TeleShop       Flagship store
## [15085] TeleShop       TeleShop       TeleShop       Flagship store
## [15089] e-Shop         e-Shop         e-Shop         e-Shop        
## [15093] e-Shop         e-Shop         e-Shop         e-Shop        
## [15097] e-Shop         MBR            TeleShop       TeleShop      
## [15101] e-Shop         Flagship store TeleShop       e-Shop        
## [15105] TeleShop       TeleShop       MBR            Flagship store
## [15109] TeleShop       e-Shop         MBR            TeleShop      
## [15113] e-Shop         MBR            MBR            e-Shop        
## [15117] e-Shop         TeleShop       e-Shop         e-Shop        
## [15121] Flagship store Flagship store e-Shop         e-Shop        
## [15125] e-Shop         e-Shop         e-Shop         e-Shop        
## [15129] MBR            MBR            MBR            MBR           
## [15133] MBR            e-Shop         MBR            e-Shop        
## [15137] MBR            MBR            MBR            MBR           
## [15141] e-Shop         TeleShop       TeleShop       TeleShop      
## [15145] e-Shop         e-Shop         TeleShop       TeleShop      
## [15149] e-Shop         MBR            MBR            MBR           
## [15153] Flagship store Flagship store MBR            MBR           
## [15157] Flagship store Flagship store Flagship store Flagship store
## [15161] Flagship store Flagship store Flagship store TeleShop      
## [15165] TeleShop       e-Shop         e-Shop         TeleShop      
## [15169] TeleShop       e-Shop         TeleShop       TeleShop      
## [15173] TeleShop       TeleShop       TeleShop       Flagship store
## [15177] Flagship store Flagship store Flagship store MBR           
## [15181] MBR            MBR            MBR            MBR           
## [15185] MBR            Flagship store MBR            Flagship store
## [15189] MBR            MBR            MBR            TeleShop      
## [15193] e-Shop         e-Shop         TeleShop       TeleShop      
## [15197] e-Shop         TeleShop       TeleShop       e-Shop        
## [15201] e-Shop         e-Shop         e-Shop         e-Shop        
## [15205] e-Shop         TeleShop       e-Shop         e-Shop        
## [15209] TeleShop       TeleShop       TeleShop       TeleShop      
## [15213] TeleShop       TeleShop       e-Shop         e-Shop        
## [15217] TeleShop       e-Shop         e-Shop         e-Shop        
## [15221] e-Shop         e-Shop         TeleShop       e-Shop        
## [15225] TeleShop       e-Shop         TeleShop       TeleShop      
## [15229] TeleShop       e-Shop         TeleShop       e-Shop        
## [15233] TeleShop       TeleShop       e-Shop         TeleShop      
## [15237] MBR            TeleShop       TeleShop       TeleShop      
## [15241] e-Shop         MBR            TeleShop       MBR           
## [15245] e-Shop         e-Shop         Flagship store Flagship store
## [15249] Flagship store Flagship store Flagship store Flagship store
## [15253] Flagship store MBR            Flagship store e-Shop        
## [15257] MBR            e-Shop         Flagship store Flagship store
## [15261] TeleShop       TeleShop       TeleShop       TeleShop      
## [15265] TeleShop       MBR            e-Shop         e-Shop        
## [15269] e-Shop         e-Shop         MBR            MBR           
## [15273] e-Shop         e-Shop         e-Shop         MBR           
## [15277] TeleShop       TeleShop       TeleShop       e-Shop        
## [15281] TeleShop       e-Shop         TeleShop       e-Shop        
## [15285] TeleShop       e-Shop         TeleShop       e-Shop        
## [15289] TeleShop       TeleShop       Flagship store Flagship store
## [15293] Flagship store MBR            Flagship store Flagship store
## [15297] Flagship store MBR            Flagship store Flagship store
## [15301] Flagship store Flagship store Flagship store Flagship store
## [15305] Flagship store Flagship store Flagship store MBR           
## [15309] e-Shop         Flagship store e-Shop         MBR           
## [15313] MBR            e-Shop         Flagship store MBR           
## [15317] MBR            MBR            e-Shop         MBR           
## [15321] MBR            e-Shop         e-Shop         Flagship store
## [15325] Flagship store TeleShop       TeleShop       TeleShop      
## [15329] TeleShop       TeleShop       MBR            MBR           
## [15333] MBR            MBR            MBR            MBR           
## [15337] MBR            MBR            MBR            MBR           
## [15341] MBR            MBR            Flagship store e-Shop        
## [15345] Flagship store MBR            e-Shop         MBR           
## [15349] e-Shop         e-Shop         e-Shop         e-Shop        
## [15353] e-Shop         Flagship store TeleShop       TeleShop      
## [15357] TeleShop       Flagship store TeleShop       Flagship store
## [15361] Flagship store Flagship store Flagship store TeleShop      
## [15365] e-Shop         TeleShop       e-Shop         e-Shop        
## [15369] e-Shop         TeleShop       TeleShop       TeleShop      
## [15373] TeleShop       e-Shop         e-Shop         e-Shop        
## [15377] TeleShop       e-Shop         e-Shop         TeleShop      
## [15381] e-Shop         MBR            Flagship store MBR           
## [15385] Flagship store Flagship store MBR            Flagship store
## [15389] Flagship store Flagship store e-Shop         e-Shop        
## [15393] MBR            MBR            e-Shop         e-Shop        
## [15397] e-Shop         e-Shop         e-Shop         e-Shop        
## [15401] e-Shop         e-Shop         e-Shop         e-Shop        
## [15405] e-Shop         e-Shop         e-Shop         e-Shop        
## [15409] MBR            e-Shop         MBR            MBR           
## [15413] e-Shop         e-Shop         e-Shop         e-Shop        
## [15417] Flagship store Flagship store Flagship store TeleShop      
## [15421] Flagship store Flagship store Flagship store TeleShop      
## [15425] Flagship store e-Shop         e-Shop         e-Shop        
## [15429] e-Shop         e-Shop         e-Shop         e-Shop        
## [15433] e-Shop         e-Shop         e-Shop         e-Shop        
## [15437] e-Shop         e-Shop         e-Shop         e-Shop        
## [15441] e-Shop         e-Shop         e-Shop         e-Shop        
## [15445] e-Shop         e-Shop         e-Shop         e-Shop        
## [15449] e-Shop         e-Shop         e-Shop         MBR           
## [15453] e-Shop         e-Shop         TeleShop       e-Shop        
## [15457] MBR            e-Shop         e-Shop         TeleShop      
## [15461] MBR            TeleShop       Flagship store Flagship store
## [15465] e-Shop         e-Shop         e-Shop         Flagship store
## [15469] Flagship store e-Shop         Flagship store e-Shop        
## [15473] e-Shop         e-Shop         MBR            Flagship store
## [15477] Flagship store MBR            Flagship store Flagship store
## [15481] e-Shop         Flagship store e-Shop         e-Shop        
## [15485] e-Shop         e-Shop         e-Shop         e-Shop        
## [15489] e-Shop         e-Shop         e-Shop         e-Shop        
## [15493] e-Shop         e-Shop         e-Shop         e-Shop        
## [15497] TeleShop       TeleShop       TeleShop       e-Shop        
## [15501] e-Shop         e-Shop         e-Shop         e-Shop        
## [15505] e-Shop         TeleShop       TeleShop       TeleShop      
## [15509] TeleShop       TeleShop       e-Shop         e-Shop        
## [15513] e-Shop         e-Shop         TeleShop       TeleShop      
## [15517] e-Shop         e-Shop         e-Shop         e-Shop        
## [15521] TeleShop       e-Shop         e-Shop         e-Shop        
## [15525] e-Shop         e-Shop         TeleShop       e-Shop        
## [15529] e-Shop         e-Shop         Flagship store e-Shop        
## [15533] e-Shop         e-Shop         Flagship store Flagship store
## [15537] TeleShop       e-Shop         TeleShop       e-Shop        
## [15541] e-Shop         e-Shop         TeleShop       e-Shop        
## [15545] e-Shop         TeleShop       MBR            MBR           
## [15549] MBR            MBR            MBR            e-Shop        
## [15553] e-Shop         e-Shop         e-Shop         e-Shop        
## [15557] e-Shop         e-Shop         e-Shop         e-Shop        
## [15561] e-Shop         Flagship store Flagship store Flagship store
## [15565] Flagship store e-Shop         Flagship store MBR           
## [15569] e-Shop         e-Shop         TeleShop       MBR           
## [15573] TeleShop       TeleShop       e-Shop         e-Shop        
## [15577] e-Shop         e-Shop         TeleShop       e-Shop        
## [15581] TeleShop       e-Shop         TeleShop       e-Shop        
## [15585] e-Shop         e-Shop         e-Shop         e-Shop        
## [15589] e-Shop         TeleShop       e-Shop         e-Shop        
## [15593] e-Shop         e-Shop         TeleShop       TeleShop      
## [15597] TeleShop       TeleShop       TeleShop       TeleShop      
## [15601] TeleShop       TeleShop       TeleShop       TeleShop      
## [15605] TeleShop       TeleShop       TeleShop       TeleShop      
## [15609] e-Shop         e-Shop         e-Shop         e-Shop        
## [15613] e-Shop         e-Shop         e-Shop         e-Shop        
## [15617] e-Shop         e-Shop         e-Shop         e-Shop        
## [15621] MBR            TeleShop       MBR            TeleShop      
## [15625] TeleShop       e-Shop         TeleShop       MBR           
## [15629] e-Shop         TeleShop       TeleShop       e-Shop        
## [15633] e-Shop         e-Shop         e-Shop         e-Shop        
## [15637] e-Shop         e-Shop         e-Shop         e-Shop        
## [15641] e-Shop         e-Shop         e-Shop         e-Shop        
## [15645] MBR            MBR            e-Shop         e-Shop        
## [15649] e-Shop         MBR            e-Shop         e-Shop        
## [15653] e-Shop         TeleShop       MBR            e-Shop        
## [15657] TeleShop       e-Shop         MBR            TeleShop      
## [15661] e-Shop         e-Shop         TeleShop       e-Shop        
## [15665] TeleShop       TeleShop       Flagship store TeleShop      
## [15669] Flagship store TeleShop       Flagship store e-Shop        
## [15673] MBR            e-Shop         e-Shop         Flagship store
## [15677] e-Shop         e-Shop         MBR            Flagship store
## [15681] MBR            MBR            Flagship store e-Shop        
## [15685] Flagship store e-Shop         e-Shop         e-Shop        
## [15689] e-Shop         Flagship store e-Shop         e-Shop        
## [15693] e-Shop         e-Shop         e-Shop         Flagship store
## [15697] e-Shop         Flagship store e-Shop         e-Shop        
## [15701] e-Shop         e-Shop         e-Shop         e-Shop        
## [15705] e-Shop         e-Shop         e-Shop         e-Shop        
## [15709] e-Shop         e-Shop         MBR            e-Shop        
## [15713] MBR            MBR            e-Shop         TeleShop      
## [15717] TeleShop       TeleShop       MBR            MBR           
## [15721] MBR            TeleShop       e-Shop         MBR           
## [15725] MBR            TeleShop       TeleShop       e-Shop        
## [15729] MBR            TeleShop       e-Shop         e-Shop        
## [15733] e-Shop         e-Shop         e-Shop         e-Shop        
## [15737] TeleShop       e-Shop         e-Shop         e-Shop        
## [15741] e-Shop         e-Shop         TeleShop       e-Shop        
## [15745] e-Shop         e-Shop         TeleShop       Flagship store
## [15749] Flagship store Flagship store Flagship store TeleShop      
## [15753] TeleShop       Flagship store TeleShop       Flagship store
## [15757] e-Shop         e-Shop         Flagship store Flagship store
## [15761] e-Shop         e-Shop         Flagship store Flagship store
## [15765] e-Shop         TeleShop       e-Shop         e-Shop        
## [15769] e-Shop         TeleShop       e-Shop         e-Shop        
## [15773] e-Shop         e-Shop         e-Shop         e-Shop        
## [15777] e-Shop         e-Shop         TeleShop       Flagship store
## [15781] e-Shop         TeleShop       Flagship store MBR           
## [15785] Flagship store Flagship store Flagship store e-Shop        
## [15789] Flagship store TeleShop       Flagship store Flagship store
## [15793] MBR            Flagship store TeleShop       e-Shop        
## [15797] Flagship store e-Shop         TeleShop       Flagship store
## [15801] TeleShop       e-Shop         MBR            MBR           
## [15805] Flagship store MBR            Flagship store TeleShop      
## [15809] Flagship store MBR            MBR            MBR           
## [15813] MBR            MBR            Flagship store MBR           
## [15817] TeleShop       e-Shop         e-Shop         MBR           
## [15821] e-Shop         Flagship store MBR            Flagship store
## [15825] MBR            MBR            Flagship store Flagship store
## [15829] Flagship store Flagship store MBR            TeleShop      
## [15833] e-Shop         e-Shop         e-Shop         e-Shop        
## [15837] e-Shop         e-Shop         e-Shop         e-Shop        
## [15841] e-Shop         e-Shop         e-Shop         TeleShop      
## [15845] e-Shop         e-Shop         e-Shop         e-Shop        
## [15849] e-Shop         MBR            MBR            MBR           
## [15853] MBR            e-Shop         MBR            MBR           
## [15857] MBR            e-Shop         MBR            TeleShop      
## [15861] Flagship store Flagship store TeleShop       TeleShop      
## [15865] Flagship store TeleShop       TeleShop       e-Shop        
## [15869] Flagship store e-Shop         Flagship store Flagship store
## [15873] Flagship store e-Shop         Flagship store e-Shop        
## [15877] e-Shop         MBR            e-Shop         Flagship store
## [15881] TeleShop       Flagship store TeleShop       MBR           
## [15885] MBR            e-Shop         MBR            Flagship store
## [15889] Flagship store MBR            MBR            MBR           
## [15893] TeleShop       MBR            Flagship store Flagship store
## [15897] MBR            MBR            e-Shop         e-Shop        
## [15901] MBR            MBR            MBR            e-Shop        
## [15905] e-Shop         Flagship store TeleShop       TeleShop      
## [15909] TeleShop       TeleShop       Flagship store TeleShop      
## [15913] TeleShop       TeleShop       TeleShop       TeleShop      
## [15917] Flagship store Flagship store Flagship store MBR           
## [15921] MBR            MBR            TeleShop       e-Shop        
## [15925] e-Shop         e-Shop         e-Shop         e-Shop        
## [15929] e-Shop         TeleShop       TeleShop       e-Shop        
## [15933] e-Shop         e-Shop         e-Shop         e-Shop        
## [15937] e-Shop         e-Shop         MBR            e-Shop        
## [15941] e-Shop         MBR            e-Shop         MBR           
## [15945] e-Shop         MBR            MBR            e-Shop        
## [15949] MBR            e-Shop         e-Shop         e-Shop        
## [15953] e-Shop         MBR            MBR            MBR           
## [15957] MBR            e-Shop         e-Shop         e-Shop        
## [15961] e-Shop         e-Shop         e-Shop         Flagship store
## [15965] MBR            Flagship store Flagship store Flagship store
## [15969] MBR            Flagship store MBR            MBR           
## [15973] MBR            Flagship store Flagship store TeleShop      
## [15977] TeleShop       Flagship store e-Shop         TeleShop      
## [15981] TeleShop       e-Shop         MBR            MBR           
## [15985] MBR            MBR            TeleShop       TeleShop      
## [15989] MBR            TeleShop       MBR            e-Shop        
## [15993] e-Shop         e-Shop         e-Shop         e-Shop        
## [15997] e-Shop         e-Shop         e-Shop         e-Shop        
## [16001] e-Shop         e-Shop         e-Shop         e-Shop        
## [16005] e-Shop         e-Shop         e-Shop         e-Shop        
## [16009] e-Shop         MBR            MBR            MBR           
## [16013] MBR            MBR            TeleShop       TeleShop      
## [16017] TeleShop       TeleShop       TeleShop       TeleShop      
## [16021] e-Shop         e-Shop         TeleShop       e-Shop        
## [16025] e-Shop         TeleShop       TeleShop       e-Shop        
## [16029] TeleShop       MBR            MBR            MBR           
## [16033] MBR            TeleShop       MBR            TeleShop      
## [16037] MBR            MBR            MBR            TeleShop      
## [16041] e-Shop         MBR            e-Shop         MBR           
## [16045] TeleShop       TeleShop       e-Shop         TeleShop      
## [16049] TeleShop       e-Shop         Flagship store Flagship store
## [16053] Flagship store MBR            Flagship store Flagship store
## [16057] MBR            Flagship store e-Shop         e-Shop        
## [16061] e-Shop         TeleShop       TeleShop       Flagship store
## [16065] Flagship store Flagship store Flagship store e-Shop        
## [16069] Flagship store Flagship store Flagship store e-Shop        
## [16073] MBR            Flagship store Flagship store Flagship store
## [16077] Flagship store MBR            Flagship store Flagship store
## [16081] Flagship store Flagship store Flagship store Flagship store
## [16085] Flagship store MBR            MBR            MBR           
## [16089] Flagship store MBR            MBR            MBR           
## [16093] MBR            MBR            MBR            MBR           
## [16097] e-Shop         MBR            MBR            MBR           
## [16101] e-Shop         MBR            e-Shop         TeleShop      
## [16105] e-Shop         TeleShop       e-Shop         TeleShop      
## [16109] Flagship store Flagship store Flagship store Flagship store
## [16113] Flagship store Flagship store Flagship store Flagship store
## [16117] e-Shop         e-Shop         e-Shop         e-Shop        
## [16121] e-Shop         TeleShop       TeleShop       TeleShop      
## [16125] e-Shop         Flagship store Flagship store TeleShop      
## [16129] TeleShop       Flagship store TeleShop       Flagship store
## [16133] Flagship store e-Shop         e-Shop         Flagship store
## [16137] TeleShop       TeleShop       TeleShop       e-Shop        
## [16141] e-Shop         TeleShop       TeleShop       TeleShop      
## [16145] e-Shop         e-Shop         MBR            MBR           
## [16149] MBR            MBR            MBR            MBR           
## [16153] MBR            MBR            MBR            MBR           
## [16157] MBR            TeleShop       MBR            TeleShop      
## [16161] TeleShop       Flagship store Flagship store Flagship store
## [16165] Flagship store TeleShop       TeleShop       TeleShop      
## [16169] Flagship store Flagship store TeleShop       TeleShop      
## [16173] Flagship store MBR            MBR            MBR           
## [16177] TeleShop       Flagship store Flagship store Flagship store
## [16181] Flagship store TeleShop       TeleShop       TeleShop      
## [16185] Flagship store TeleShop       TeleShop       TeleShop      
## [16189] TeleShop       TeleShop       TeleShop       TeleShop      
## [16193] TeleShop       e-Shop         TeleShop       TeleShop      
## [16197] TeleShop       e-Shop         e-Shop         e-Shop        
## [16201] e-Shop         e-Shop         e-Shop         e-Shop        
## [16205] e-Shop         e-Shop         e-Shop         e-Shop        
## [16209] e-Shop         MBR            MBR            MBR           
## [16213] MBR            MBR            MBR            Flagship store
## [16217] Flagship store e-Shop         e-Shop         e-Shop        
## [16221] e-Shop         e-Shop         Flagship store Flagship store
## [16225] Flagship store TeleShop       TeleShop       TeleShop      
## [16229] TeleShop       Flagship store MBR            e-Shop        
## [16233] e-Shop         e-Shop         MBR            e-Shop        
## [16237] e-Shop         MBR            e-Shop         Flagship store
## [16241] Flagship store Flagship store e-Shop         e-Shop        
## [16245] Flagship store Flagship store e-Shop         Flagship store
## [16249] Flagship store Flagship store Flagship store Flagship store
## [16253] TeleShop       Flagship store e-Shop         e-Shop        
## [16257] TeleShop       Flagship store TeleShop       MBR           
## [16261] e-Shop         MBR            e-Shop         e-Shop        
## [16265] e-Shop         TeleShop       e-Shop         TeleShop      
## [16269] TeleShop       TeleShop       e-Shop         e-Shop        
## [16273] e-Shop         e-Shop         e-Shop         e-Shop        
## [16277] e-Shop         TeleShop       TeleShop       e-Shop        
## [16281] e-Shop         e-Shop         e-Shop         e-Shop        
## [16285] e-Shop         e-Shop         e-Shop         e-Shop        
## [16289] e-Shop         e-Shop         e-Shop         e-Shop        
## [16293] e-Shop         e-Shop         e-Shop         TeleShop      
## [16297] MBR            TeleShop       e-Shop         Flagship store
## [16301] Flagship store MBR            e-Shop         TeleShop      
## [16305] TeleShop       TeleShop       TeleShop       TeleShop      
## [16309] e-Shop         TeleShop       TeleShop       MBR           
## [16313] MBR            MBR            e-Shop         e-Shop        
## [16317] MBR            e-Shop         e-Shop         e-Shop        
## [16321] e-Shop         e-Shop         e-Shop         e-Shop        
## [16325] e-Shop         e-Shop         TeleShop       TeleShop      
## [16329] MBR            e-Shop         MBR            Flagship store
## [16333] TeleShop       Flagship store MBR            e-Shop        
## [16337] Flagship store e-Shop         MBR            Flagship store
## [16341] Flagship store e-Shop         Flagship store Flagship store
## [16345] MBR            Flagship store MBR            TeleShop      
## [16349] TeleShop       Flagship store MBR            MBR           
## [16353] e-Shop         TeleShop       Flagship store Flagship store
## [16357] Flagship store Flagship store Flagship store Flagship store
## [16361] TeleShop       Flagship store Flagship store e-Shop        
## [16365] e-Shop         Flagship store e-Shop         TeleShop      
## [16369] e-Shop         TeleShop       e-Shop         e-Shop        
## [16373] e-Shop         e-Shop         TeleShop       TeleShop      
## [16377] TeleShop       TeleShop       TeleShop       TeleShop      
## [16381] e-Shop         e-Shop         e-Shop         e-Shop        
## [16385] e-Shop         e-Shop         e-Shop         TeleShop      
## [16389] e-Shop         TeleShop       TeleShop       e-Shop        
## [16393] e-Shop         TeleShop       e-Shop         TeleShop      
## [16397] e-Shop         TeleShop       e-Shop         Flagship store
## [16401] TeleShop       TeleShop       Flagship store TeleShop      
## [16405] TeleShop       Flagship store Flagship store Flagship store
## [16409] e-Shop         e-Shop         e-Shop         MBR           
## [16413] MBR            e-Shop         e-Shop         e-Shop        
## [16417] MBR            Flagship store e-Shop         e-Shop        
## [16421] Flagship store e-Shop         e-Shop         e-Shop        
## [16425] e-Shop         e-Shop         e-Shop         e-Shop        
## [16429] e-Shop         e-Shop         e-Shop         e-Shop        
## [16433] e-Shop         e-Shop         e-Shop         TeleShop      
## [16437] MBR            MBR            MBR            TeleShop      
## [16441] MBR            e-Shop         e-Shop         MBR           
## [16445] MBR            e-Shop         e-Shop         e-Shop        
## [16449] e-Shop         e-Shop         e-Shop         e-Shop        
## [16453] e-Shop         e-Shop         e-Shop         e-Shop        
## [16457] e-Shop         e-Shop         e-Shop         MBR           
## [16461] e-Shop         e-Shop         MBR            e-Shop        
## [16465] e-Shop         MBR            MBR            e-Shop        
## [16469] e-Shop         e-Shop         e-Shop         MBR           
## [16473] MBR            MBR            MBR            Flagship store
## [16477] Flagship store e-Shop         e-Shop         TeleShop      
## [16481] TeleShop       e-Shop         TeleShop       TeleShop      
## [16485] TeleShop       TeleShop       TeleShop       MBR           
## [16489] Flagship store Flagship store MBR            MBR           
## [16493] e-Shop         e-Shop         e-Shop         e-Shop        
## [16497] e-Shop         e-Shop         e-Shop         e-Shop        
## [16501] e-Shop         e-Shop         e-Shop         TeleShop      
## [16505] e-Shop         e-Shop         TeleShop       e-Shop        
## [16509] e-Shop         e-Shop         e-Shop         TeleShop      
## [16513] e-Shop         TeleShop       TeleShop       TeleShop      
## [16517] TeleShop       TeleShop       e-Shop         e-Shop        
## [16521] Flagship store Flagship store e-Shop         e-Shop        
## [16525] Flagship store e-Shop         e-Shop         e-Shop        
## [16529] Flagship store Flagship store Flagship store e-Shop        
## [16533] Flagship store Flagship store Flagship store Flagship store
## [16537] Flagship store Flagship store Flagship store Flagship store
## [16541] Flagship store Flagship store e-Shop         Flagship store
## [16545] e-Shop         MBR            Flagship store MBR           
## [16549] Flagship store e-Shop         e-Shop         MBR           
## [16553] e-Shop         MBR            MBR            e-Shop        
## [16557] e-Shop         Flagship store e-Shop         Flagship store
## [16561] e-Shop         e-Shop         Flagship store Flagship store
## [16565] Flagship store Flagship store e-Shop         Flagship store
## [16569] Flagship store Flagship store e-Shop         e-Shop        
## [16573] e-Shop         e-Shop         e-Shop         MBR           
## [16577] TeleShop       e-Shop         e-Shop         e-Shop        
## [16581] MBR            MBR            TeleShop       TeleShop      
## [16585] Flagship store Flagship store Flagship store Flagship store
## [16589] Flagship store Flagship store Flagship store Flagship store
## [16593] TeleShop       Flagship store Flagship store TeleShop      
## [16597] TeleShop       TeleShop       TeleShop       TeleShop      
## [16601] TeleShop       TeleShop       MBR            MBR           
## [16605] Flagship store Flagship store Flagship store Flagship store
## [16609] Flagship store Flagship store e-Shop         e-Shop        
## [16613] e-Shop         e-Shop         MBR            e-Shop        
## [16617] MBR            TeleShop       MBR            TeleShop      
## [16621] e-Shop         TeleShop       MBR            e-Shop        
## [16625] e-Shop         MBR            e-Shop         e-Shop        
## [16629] TeleShop       e-Shop         TeleShop       MBR           
## [16633] e-Shop         MBR            e-Shop         e-Shop        
## [16637] e-Shop         e-Shop         TeleShop       TeleShop      
## [16641] TeleShop       TeleShop       TeleShop       TeleShop      
## [16645] TeleShop       TeleShop       TeleShop       TeleShop      
## [16649] e-Shop         e-Shop         MBR            e-Shop        
## [16653] MBR            e-Shop         e-Shop         MBR           
## [16657] Flagship store Flagship store Flagship store Flagship store
## [16661] Flagship store TeleShop       TeleShop       TeleShop      
## [16665] e-Shop         TeleShop       e-Shop         TeleShop      
## [16669] TeleShop       TeleShop       TeleShop       MBR           
## [16673] e-Shop         MBR            e-Shop         Flagship store
## [16677] Flagship store Flagship store Flagship store Flagship store
## [16681] TeleShop       TeleShop       Flagship store Flagship store
## [16685] Flagship store Flagship store Flagship store e-Shop        
## [16689] e-Shop         e-Shop         Flagship store e-Shop        
## [16693] e-Shop         Flagship store e-Shop         MBR           
## [16697] MBR            Flagship store Flagship store Flagship store
## [16701] Flagship store e-Shop         e-Shop         e-Shop        
## [16705] e-Shop         e-Shop         e-Shop         e-Shop        
## [16709] e-Shop         e-Shop         MBR            e-Shop        
## [16713] Flagship store MBR            e-Shop         TeleShop      
## [16717] Flagship store e-Shop         TeleShop       e-Shop        
## [16721] e-Shop         e-Shop         e-Shop         e-Shop        
## [16725] e-Shop         e-Shop         e-Shop         e-Shop        
## [16729] TeleShop       e-Shop         Flagship store e-Shop        
## [16733] Flagship store e-Shop         e-Shop         TeleShop      
## [16737] e-Shop         TeleShop       TeleShop       Flagship store
## [16741] TeleShop       e-Shop         e-Shop         e-Shop        
## [16745] e-Shop         TeleShop       TeleShop       e-Shop        
## [16749] TeleShop       e-Shop         TeleShop       TeleShop      
## [16753] TeleShop       e-Shop         e-Shop         e-Shop        
## [16757] e-Shop         TeleShop       e-Shop         TeleShop      
## [16761] TeleShop       TeleShop       TeleShop       TeleShop      
## [16765] TeleShop       e-Shop         e-Shop         e-Shop        
## [16769] e-Shop         e-Shop         e-Shop         e-Shop        
## [16773] Flagship store e-Shop         e-Shop         Flagship store
## [16777] e-Shop         MBR            TeleShop       MBR           
## [16781] e-Shop         TeleShop       e-Shop         MBR           
## [16785] e-Shop         e-Shop         e-Shop         MBR           
## [16789] TeleShop       MBR            MBR            e-Shop        
## [16793] e-Shop         e-Shop         e-Shop         e-Shop        
## [16797] e-Shop         TeleShop       Flagship store Flagship store
## [16801] e-Shop         e-Shop         TeleShop       TeleShop      
## [16805] TeleShop       TeleShop       MBR            e-Shop        
## [16809] MBR            MBR            e-Shop         e-Shop        
## [16813] TeleShop       Flagship store TeleShop       Flagship store
## [16817] TeleShop       TeleShop       TeleShop       e-Shop        
## [16821] e-Shop         e-Shop         e-Shop         e-Shop        
## [16825] e-Shop         e-Shop         Flagship store Flagship store
## [16829] MBR            Flagship store Flagship store e-Shop        
## [16833] MBR            Flagship store MBR            e-Shop        
## [16837] e-Shop         MBR            Flagship store MBR           
## [16841] MBR            e-Shop         e-Shop         MBR           
## [16845] e-Shop         e-Shop         e-Shop         MBR           
## [16849] e-Shop         MBR            e-Shop         e-Shop        
## [16853] e-Shop         MBR            MBR            e-Shop        
## [16857] e-Shop         e-Shop         MBR            e-Shop        
## [16861] MBR            Flagship store Flagship store Flagship store
## [16865] MBR            Flagship store Flagship store Flagship store
## [16869] Flagship store MBR            MBR            Flagship store
## [16873] e-Shop         e-Shop         MBR            MBR           
## [16877] MBR            MBR            MBR            MBR           
## [16881] MBR            TeleShop       MBR            MBR           
## [16885] MBR            TeleShop       MBR            TeleShop      
## [16889] Flagship store Flagship store e-Shop         e-Shop        
## [16893] Flagship store e-Shop         Flagship store Flagship store
## [16897] e-Shop         Flagship store Flagship store e-Shop        
## [16901] Flagship store TeleShop       TeleShop       TeleShop      
## [16905] TeleShop       e-Shop         e-Shop         e-Shop        
## [16909] e-Shop         e-Shop         e-Shop         e-Shop        
## [16913] e-Shop         e-Shop         e-Shop         e-Shop        
## [16917] e-Shop         e-Shop         MBR            MBR           
## [16921] MBR            MBR            MBR            MBR           
## [16925] e-Shop         e-Shop         TeleShop       TeleShop      
## [16929] TeleShop       e-Shop         TeleShop       TeleShop      
## [16933] TeleShop       TeleShop       TeleShop       TeleShop      
## [16937] TeleShop       MBR            MBR            MBR           
## [16941] MBR            MBR            MBR            MBR           
## [16945] MBR            MBR            MBR            TeleShop      
## [16949] MBR            TeleShop       MBR            TeleShop      
## [16953] TeleShop       TeleShop       TeleShop       MBR           
## [16957] MBR            MBR            MBR            Flagship store
## [16961] Flagship store Flagship store MBR            MBR           
## [16965] MBR            MBR            MBR            e-Shop        
## [16969] e-Shop         Flagship store Flagship store Flagship store
## [16973] e-Shop         e-Shop         e-Shop         e-Shop        
## [16977] Flagship store e-Shop         e-Shop         e-Shop        
## [16981] e-Shop         e-Shop         e-Shop         Flagship store
## [16985] e-Shop         MBR            MBR            e-Shop        
## [16989] e-Shop         Flagship store e-Shop         MBR           
## [16993] e-Shop         MBR            MBR            Flagship store
## [16997] MBR            MBR            MBR            MBR           
## [17001] MBR            e-Shop         e-Shop         Flagship store
## [17005] e-Shop         Flagship store Flagship store Flagship store
## [17009] e-Shop         Flagship store Flagship store Flagship store
## [17013] e-Shop         Flagship store Flagship store Flagship store
## [17017] Flagship store e-Shop         e-Shop         Flagship store
## [17021] e-Shop         Flagship store e-Shop         Flagship store
## [17025] Flagship store Flagship store Flagship store Flagship store
## [17029] Flagship store Flagship store TeleShop       Flagship store
## [17033] Flagship store Flagship store TeleShop       Flagship store
## [17037] Flagship store Flagship store Flagship store Flagship store
## [17041] Flagship store TeleShop       TeleShop       TeleShop      
## [17045] TeleShop       TeleShop       TeleShop       TeleShop      
## [17049] TeleShop       TeleShop       TeleShop       TeleShop      
## [17053] MBR            TeleShop       MBR            e-Shop        
## [17057] e-Shop         TeleShop       e-Shop         e-Shop        
## [17061] e-Shop         e-Shop         e-Shop         Flagship store
## [17065] e-Shop         e-Shop         e-Shop         e-Shop        
## [17069] Flagship store e-Shop         e-Shop         TeleShop      
## [17073] e-Shop         Flagship store e-Shop         TeleShop      
## [17077] TeleShop       e-Shop         e-Shop         MBR           
## [17081] MBR            MBR            TeleShop       e-Shop        
## [17085] MBR            MBR            e-Shop         e-Shop        
## [17089] MBR            e-Shop         e-Shop         e-Shop        
## [17093] e-Shop         TeleShop       TeleShop       TeleShop      
## [17097] TeleShop       TeleShop       TeleShop       MBR           
## [17101] MBR            MBR            MBR            MBR           
## [17105] e-Shop         e-Shop         e-Shop         e-Shop        
## [17109] e-Shop         e-Shop         e-Shop         e-Shop        
## [17113] e-Shop         e-Shop         Flagship store TeleShop      
## [17117] Flagship store Flagship store TeleShop       Flagship store
## [17121] Flagship store Flagship store Flagship store TeleShop      
## [17125] MBR            MBR            MBR            e-Shop        
## [17129] MBR            MBR            e-Shop         MBR           
## [17133] e-Shop         e-Shop         e-Shop         e-Shop        
## [17137] e-Shop         Flagship store e-Shop         e-Shop        
## [17141] TeleShop       e-Shop         TeleShop       Flagship store
## [17145] e-Shop         e-Shop         e-Shop         Flagship store
## [17149] Flagship store Flagship store e-Shop         Flagship store
## [17153] Flagship store TeleShop       TeleShop       TeleShop      
## [17157] TeleShop       TeleShop       TeleShop       TeleShop      
## [17161] TeleShop       MBR            MBR            TeleShop      
## [17165] e-Shop         e-Shop         e-Shop         MBR           
## [17169] MBR            MBR            TeleShop       MBR           
## [17173] e-Shop         e-Shop         MBR            MBR           
## [17177] TeleShop       TeleShop       TeleShop       TeleShop      
## [17181] TeleShop       e-Shop         e-Shop         e-Shop        
## [17185] e-Shop         e-Shop         e-Shop         e-Shop        
## [17189] e-Shop         e-Shop         e-Shop         e-Shop        
## [17193] Flagship store Flagship store MBR            MBR           
## [17197] MBR            MBR            MBR            TeleShop      
## [17201] MBR            TeleShop       MBR            TeleShop      
## [17205] MBR            MBR            TeleShop       TeleShop      
## [17209] TeleShop       MBR            MBR            TeleShop      
## [17213] e-Shop         MBR            e-Shop         e-Shop        
## [17217] e-Shop         MBR            e-Shop         e-Shop        
## [17221] e-Shop         e-Shop         e-Shop         e-Shop        
## [17225] e-Shop         e-Shop         e-Shop         TeleShop      
## [17229] TeleShop       TeleShop       TeleShop       TeleShop      
## [17233] TeleShop       TeleShop       MBR            Flagship store
## [17237] MBR            MBR            Flagship store Flagship store
## [17241] MBR            Flagship store Flagship store e-Shop        
## [17245] e-Shop         e-Shop         Flagship store MBR           
## [17249] MBR            e-Shop         Flagship store MBR           
## [17253] MBR            MBR            e-Shop         MBR           
## [17257] MBR            MBR            MBR            MBR           
## [17261] Flagship store e-Shop         e-Shop         e-Shop        
## [17265] e-Shop         e-Shop         Flagship store e-Shop        
## [17269] e-Shop         MBR            Flagship store Flagship store
## [17273] e-Shop         Flagship store TeleShop       Flagship store
## [17277] TeleShop       Flagship store Flagship store TeleShop      
## [17281] TeleShop       TeleShop       e-Shop         e-Shop        
## [17285] e-Shop         TeleShop       TeleShop       TeleShop      
## [17289] TeleShop       TeleShop       TeleShop       e-Shop        
## [17293] MBR            MBR            MBR            e-Shop        
## [17297] MBR            MBR            e-Shop         e-Shop        
## [17301] e-Shop         e-Shop         e-Shop         e-Shop        
## [17305] e-Shop         e-Shop         e-Shop         e-Shop        
## [17309] e-Shop         e-Shop         Flagship store Flagship store
## [17313] e-Shop         Flagship store Flagship store e-Shop        
## [17317] Flagship store TeleShop       e-Shop         Flagship store
## [17321] Flagship store e-Shop         Flagship store Flagship store
## [17325] Flagship store e-Shop         TeleShop       e-Shop        
## [17329] e-Shop         TeleShop       TeleShop       TeleShop      
## [17333] TeleShop       TeleShop       TeleShop       Flagship store
## [17337] e-Shop         e-Shop         e-Shop         e-Shop        
## [17341] Flagship store e-Shop         Flagship store e-Shop        
## [17345] e-Shop         e-Shop         e-Shop         e-Shop        
## [17349] MBR            MBR            e-Shop         TeleShop      
## [17353] MBR            MBR            MBR            MBR           
## [17357] TeleShop       MBR            TeleShop       e-Shop        
## [17361] e-Shop         e-Shop         e-Shop         e-Shop        
## [17365] e-Shop         MBR            MBR            e-Shop        
## [17369] e-Shop         e-Shop         e-Shop         e-Shop        
## [17373] e-Shop         Flagship store e-Shop         e-Shop        
## [17377] e-Shop         e-Shop         e-Shop         Flagship store
## [17381] e-Shop         TeleShop       TeleShop       e-Shop        
## [17385] e-Shop         e-Shop         Flagship store e-Shop        
## [17389] e-Shop         e-Shop         Flagship store Flagship store
## [17393] e-Shop         e-Shop         e-Shop         e-Shop        
## [17397] e-Shop         e-Shop         e-Shop         e-Shop        
## [17401] Flagship store e-Shop         Flagship store e-Shop        
## [17405] e-Shop         e-Shop         e-Shop         Flagship store
## [17409] e-Shop         Flagship store e-Shop         Flagship store
## [17413] Flagship store e-Shop         e-Shop         e-Shop        
## [17417] e-Shop         e-Shop         e-Shop         e-Shop        
## [17421] e-Shop         e-Shop         e-Shop         e-Shop        
## [17425] e-Shop         e-Shop         e-Shop         e-Shop        
## [17429] MBR            e-Shop         e-Shop         e-Shop        
## [17433] MBR            e-Shop         e-Shop         MBR           
## [17437] MBR            MBR            MBR            MBR           
## [17441] e-Shop         e-Shop         MBR            MBR           
## [17445] MBR            MBR            e-Shop         Flagship store
## [17449] Flagship store MBR            MBR            MBR           
## [17453] TeleShop       e-Shop         MBR            MBR           
## [17457] MBR            e-Shop         TeleShop       MBR           
## [17461] MBR            e-Shop         e-Shop         e-Shop        
## [17465] e-Shop         Flagship store Flagship store Flagship store
## [17469] Flagship store Flagship store e-Shop         MBR           
## [17473] MBR            e-Shop         e-Shop         e-Shop        
## [17477] e-Shop         MBR            e-Shop         e-Shop        
## [17481] e-Shop         e-Shop         e-Shop         e-Shop        
## [17485] Flagship store e-Shop         e-Shop         MBR           
## [17489] e-Shop         Flagship store e-Shop         MBR           
## [17493] e-Shop         e-Shop         e-Shop         MBR           
## [17497] e-Shop         MBR            e-Shop         e-Shop        
## [17501] e-Shop         MBR            MBR            e-Shop        
## [17505] e-Shop         e-Shop         e-Shop         e-Shop        
## [17509] e-Shop         e-Shop         e-Shop         e-Shop        
## [17513] e-Shop         TeleShop       e-Shop         e-Shop        
## [17517] e-Shop         e-Shop         e-Shop         e-Shop        
## [17521] TeleShop       TeleShop       TeleShop       e-Shop        
## [17525] e-Shop         e-Shop         Flagship store e-Shop        
## [17529] e-Shop         Flagship store Flagship store e-Shop        
## [17533] e-Shop         Flagship store Flagship store TeleShop      
## [17537] TeleShop       TeleShop       e-Shop         e-Shop        
## [17541] e-Shop         e-Shop         Flagship store Flagship store
## [17545] Flagship store Flagship store Flagship store Flagship store
## [17549] e-Shop         e-Shop         e-Shop         e-Shop        
## [17553] TeleShop       TeleShop       e-Shop         e-Shop        
## [17557] e-Shop         MBR            MBR            e-Shop        
## [17561] e-Shop         e-Shop         TeleShop       e-Shop        
## [17565] e-Shop         TeleShop       MBR            e-Shop        
## [17569] e-Shop         e-Shop         e-Shop         e-Shop        
## [17573] Flagship store e-Shop         e-Shop         e-Shop        
## [17577] e-Shop         Flagship store e-Shop         e-Shop        
## [17581] e-Shop         e-Shop         e-Shop         e-Shop        
## [17585] Flagship store e-Shop         e-Shop         Flagship store
## [17589] TeleShop       MBR            TeleShop       MBR           
## [17593] TeleShop       MBR            TeleShop       TeleShop      
## [17597] MBR            MBR            e-Shop         e-Shop        
## [17601] e-Shop         e-Shop         e-Shop         Flagship store
## [17605] e-Shop         e-Shop         Flagship store e-Shop        
## [17609] e-Shop         e-Shop         Flagship store e-Shop        
## [17613] e-Shop         e-Shop         e-Shop         e-Shop        
## [17617] e-Shop         e-Shop         e-Shop         Flagship store
## [17621] e-Shop         e-Shop         MBR            MBR           
## [17625] TeleShop       TeleShop       MBR            TeleShop      
## [17629] MBR            TeleShop       MBR            TeleShop      
## [17633] MBR            e-Shop         TeleShop       e-Shop        
## [17637] e-Shop         TeleShop       TeleShop       e-Shop        
## [17641] e-Shop         e-Shop         e-Shop         Flagship store
## [17645] Flagship store Flagship store e-Shop         e-Shop        
## [17649] e-Shop         e-Shop         e-Shop         e-Shop        
## [17653] e-Shop         e-Shop         e-Shop         e-Shop        
## [17657] MBR            MBR            MBR            MBR           
## [17661] MBR            MBR            MBR            MBR           
## [17665] MBR            e-Shop         e-Shop         e-Shop        
## [17669] e-Shop         e-Shop         e-Shop         TeleShop      
## [17673] TeleShop       TeleShop       TeleShop       TeleShop      
## [17677] e-Shop         e-Shop         e-Shop         TeleShop      
## [17681] Flagship store e-Shop         TeleShop       MBR           
## [17685] MBR            TeleShop       MBR            MBR           
## [17689] Flagship store Flagship store e-Shop         e-Shop        
## [17693] e-Shop         e-Shop         e-Shop         MBR           
## [17697] MBR            e-Shop         MBR            e-Shop        
## [17701] e-Shop         e-Shop         e-Shop         e-Shop        
## [17705] e-Shop         e-Shop         e-Shop         e-Shop        
## [17709] e-Shop         e-Shop         e-Shop         e-Shop        
## [17713] e-Shop         e-Shop         MBR            e-Shop        
## [17717] e-Shop         MBR            e-Shop         e-Shop        
## [17721] e-Shop         e-Shop         MBR            e-Shop        
## [17725] e-Shop         MBR            MBR            MBR           
## [17729] MBR            MBR            MBR            MBR           
## [17733] e-Shop         e-Shop         Flagship store e-Shop        
## [17737] e-Shop         e-Shop         Flagship store e-Shop        
## [17741] e-Shop         Flagship store Flagship store e-Shop        
## [17745] TeleShop       Flagship store TeleShop       e-Shop        
## [17749] e-Shop         e-Shop         e-Shop         e-Shop        
## [17753] TeleShop       TeleShop       TeleShop       TeleShop      
## [17757] TeleShop       e-Shop         TeleShop       e-Shop        
## [17761] e-Shop         e-Shop         e-Shop         Flagship store
## [17765] Flagship store Flagship store Flagship store Flagship store
## [17769] Flagship store Flagship store e-Shop         Flagship store
## [17773] e-Shop         e-Shop         e-Shop         e-Shop        
## [17777] e-Shop         Flagship store Flagship store e-Shop        
## [17781] e-Shop         TeleShop       e-Shop         e-Shop        
## [17785] e-Shop         Flagship store e-Shop         e-Shop        
## [17789] e-Shop         e-Shop         e-Shop         e-Shop        
## [17793] Flagship store Flagship store Flagship store Flagship store
## [17797] Flagship store TeleShop       e-Shop         Flagship store
## [17801] Flagship store e-Shop         Flagship store e-Shop        
## [17805] Flagship store Flagship store e-Shop         e-Shop        
## [17809] e-Shop         Flagship store Flagship store e-Shop        
## [17813] Flagship store e-Shop         e-Shop         e-Shop        
## [17817] e-Shop         e-Shop         e-Shop         e-Shop        
## [17821] e-Shop         e-Shop         e-Shop         e-Shop        
## [17825] e-Shop         e-Shop         e-Shop         e-Shop        
## [17829] TeleShop       e-Shop         e-Shop         TeleShop      
## [17833] TeleShop       e-Shop         TeleShop       e-Shop        
## [17837] e-Shop         e-Shop         e-Shop         TeleShop      
## [17841] e-Shop         TeleShop       e-Shop         e-Shop        
## [17845] e-Shop         e-Shop         TeleShop       e-Shop        
## [17849] TeleShop       e-Shop         e-Shop         Flagship store
## [17853] e-Shop         e-Shop         e-Shop         e-Shop        
## [17857] TeleShop       Flagship store TeleShop       e-Shop        
## [17861] e-Shop         e-Shop         e-Shop         TeleShop      
## [17865] Flagship store Flagship store Flagship store TeleShop      
## [17869] Flagship store TeleShop       TeleShop       e-Shop        
## [17873] MBR            e-Shop         Flagship store Flagship store
## [17877] MBR            MBR            Flagship store e-Shop        
## [17881] Flagship store MBR            MBR            e-Shop        
## [17885] Flagship store Flagship store e-Shop         Flagship store
## [17889] Flagship store Flagship store e-Shop         Flagship store
## [17893] Flagship store Flagship store e-Shop         e-Shop        
## [17897] e-Shop         e-Shop         e-Shop         Flagship store
## [17901] Flagship store Flagship store MBR            MBR           
## [17905] MBR            MBR            MBR            Flagship store
## [17909] Flagship store Flagship store e-Shop         TeleShop      
## [17913] MBR            TeleShop       e-Shop         MBR           
## [17917] e-Shop         TeleShop       MBR            MBR           
## [17921] Flagship store Flagship store Flagship store TeleShop      
## [17925] TeleShop       Flagship store TeleShop       TeleShop      
## [17929] e-Shop         e-Shop         e-Shop         TeleShop      
## [17933] Flagship store e-Shop         TeleShop       e-Shop        
## [17937] Flagship store Flagship store e-Shop         e-Shop        
## [17941] e-Shop         Flagship store Flagship store e-Shop        
## [17945] TeleShop       e-Shop         TeleShop       e-Shop        
## [17949] e-Shop         TeleShop       Flagship store TeleShop      
## [17953] TeleShop       e-Shop         e-Shop         e-Shop        
## [17957] TeleShop       e-Shop         e-Shop         e-Shop        
## [17961] e-Shop         e-Shop         Flagship store Flagship store
## [17965] Flagship store Flagship store TeleShop       TeleShop      
## [17969] Flagship store TeleShop       Flagship store TeleShop      
## [17973] Flagship store TeleShop       Flagship store TeleShop      
## [17977] Flagship store Flagship store Flagship store MBR           
## [17981] MBR            e-Shop         Flagship store e-Shop        
## [17985] Flagship store Flagship store Flagship store e-Shop        
## [17989] Flagship store Flagship store MBR            MBR           
## [17993] Flagship store Flagship store Flagship store Flagship store
## [17997] e-Shop         e-Shop         MBR            MBR           
## [18001] e-Shop         MBR            e-Shop         MBR           
## [18005] e-Shop         e-Shop         MBR            MBR           
## [18009] Flagship store MBR            MBR            MBR           
## [18013] MBR            Flagship store Flagship store MBR           
## [18017] MBR            MBR            MBR            TeleShop      
## [18021] TeleShop       e-Shop         TeleShop       TeleShop      
## [18025] TeleShop       e-Shop         TeleShop       MBR           
## [18029] TeleShop       Flagship store Flagship store TeleShop      
## [18033] TeleShop       TeleShop       Flagship store Flagship store
## [18037] TeleShop       Flagship store Flagship store Flagship store
## [18041] Flagship store e-Shop         e-Shop         e-Shop        
## [18045] e-Shop         e-Shop         MBR            Flagship store
## [18049] Flagship store Flagship store Flagship store e-Shop        
## [18053] MBR            Flagship store Flagship store Flagship store
## [18057] Flagship store Flagship store e-Shop         Flagship store
## [18061] MBR            Flagship store e-Shop         e-Shop        
## [18065] MBR            e-Shop         MBR            Flagship store
## [18069] Flagship store e-Shop         MBR            Flagship store
## [18073] Flagship store Flagship store Flagship store TeleShop      
## [18077] TeleShop       e-Shop         e-Shop         e-Shop        
## [18081] e-Shop         e-Shop         e-Shop         e-Shop        
## [18085] e-Shop         e-Shop         e-Shop         e-Shop        
## [18089] e-Shop         e-Shop         e-Shop         e-Shop        
## [18093] TeleShop       TeleShop       Flagship store TeleShop      
## [18097] Flagship store TeleShop       TeleShop       TeleShop      
## [18101] MBR            TeleShop       TeleShop       MBR           
## [18105] TeleShop       TeleShop       MBR            e-Shop        
## [18109] e-Shop         TeleShop       TeleShop       e-Shop        
## [18113] TeleShop       TeleShop       TeleShop       TeleShop      
## [18117] e-Shop         MBR            MBR            MBR           
## [18121] MBR            Flagship store MBR            Flagship store
## [18125] TeleShop       TeleShop       e-Shop         TeleShop      
## [18129] TeleShop       TeleShop       TeleShop       TeleShop      
## [18133] TeleShop       TeleShop       TeleShop       TeleShop      
## [18137] TeleShop       e-Shop         TeleShop       TeleShop      
## [18141] Flagship store Flagship store Flagship store TeleShop      
## [18145] TeleShop       Flagship store Flagship store Flagship store
## [18149] Flagship store TeleShop       e-Shop         e-Shop        
## [18153] e-Shop         e-Shop         e-Shop         e-Shop        
## [18157] e-Shop         e-Shop         e-Shop         e-Shop        
## [18161] e-Shop         e-Shop         e-Shop         e-Shop        
## [18165] e-Shop         e-Shop         e-Shop         MBR           
## [18169] MBR            e-Shop         e-Shop         MBR           
## [18173] e-Shop         e-Shop         e-Shop         e-Shop        
## [18177] e-Shop         e-Shop         e-Shop         e-Shop        
## [18181] Flagship store Flagship store e-Shop         e-Shop        
## [18185] Flagship store Flagship store Flagship store e-Shop        
## [18189] e-Shop         e-Shop         e-Shop         Flagship store
## [18193] Flagship store e-Shop         e-Shop         Flagship store
## [18197] Flagship store Flagship store e-Shop         e-Shop        
## [18201] TeleShop       MBR            e-Shop         e-Shop        
## [18205] MBR            MBR            e-Shop         TeleShop      
## [18209] TeleShop       TeleShop       TeleShop       MBR           
## [18213] Flagship store Flagship store TeleShop       MBR           
## [18217] e-Shop         Flagship store e-Shop         Flagship store
## [18221] Flagship store e-Shop         e-Shop         Flagship store
## [18225] e-Shop         Flagship store Flagship store Flagship store
## [18229] e-Shop         Flagship store e-Shop         e-Shop        
## [18233] e-Shop         e-Shop         MBR            MBR           
## [18237] MBR            e-Shop         e-Shop         e-Shop        
## [18241] MBR            MBR            Flagship store Flagship store
## [18245] Flagship store Flagship store Flagship store e-Shop        
## [18249] Flagship store e-Shop         Flagship store e-Shop        
## [18253] Flagship store e-Shop         e-Shop         e-Shop        
## [18257] e-Shop         e-Shop         e-Shop         Flagship store
## [18261] e-Shop         Flagship store Flagship store e-Shop        
## [18265] e-Shop         Flagship store e-Shop         e-Shop        
## [18269] MBR            MBR            MBR            MBR           
## [18273] e-Shop         e-Shop         TeleShop       e-Shop        
## [18277] e-Shop         TeleShop       TeleShop       TeleShop      
## [18281] e-Shop         e-Shop         TeleShop       e-Shop        
## [18285] e-Shop         TeleShop       e-Shop         e-Shop        
## [18289] e-Shop         TeleShop       TeleShop       e-Shop        
## [18293] TeleShop       e-Shop         e-Shop         TeleShop      
## [18297] TeleShop       TeleShop       e-Shop         e-Shop        
## [18301] e-Shop         e-Shop         e-Shop         e-Shop        
## [18305] TeleShop       TeleShop       TeleShop       TeleShop      
## [18309] TeleShop       e-Shop         e-Shop         e-Shop        
## [18313] e-Shop         Flagship store Flagship store e-Shop        
## [18317] e-Shop         TeleShop       Flagship store Flagship store
## [18321] Flagship store Flagship store Flagship store TeleShop      
## [18325] TeleShop       TeleShop       e-Shop         TeleShop      
## [18329] TeleShop       e-Shop         e-Shop         TeleShop      
## [18333] TeleShop       TeleShop       TeleShop       TeleShop      
## [18337] e-Shop         e-Shop         e-Shop         e-Shop        
## [18341] TeleShop       MBR            MBR            e-Shop        
## [18345] MBR            MBR            e-Shop         MBR           
## [18349] TeleShop       TeleShop       TeleShop       TeleShop      
## [18353] TeleShop       TeleShop       TeleShop       TeleShop      
## [18357] TeleShop       TeleShop       TeleShop       TeleShop      
## [18361] TeleShop       TeleShop       TeleShop       e-Shop        
## [18365] MBR            e-Shop         e-Shop         e-Shop        
## [18369] MBR            MBR            e-Shop         e-Shop        
## [18373] e-Shop         e-Shop         TeleShop       e-Shop        
## [18377] e-Shop         TeleShop       e-Shop         e-Shop        
## [18381] TeleShop       e-Shop         e-Shop         e-Shop        
## [18385] MBR            MBR            MBR            MBR           
## [18389] MBR            e-Shop         MBR            MBR           
## [18393] MBR            e-Shop         e-Shop         MBR           
## [18397] MBR            MBR            MBR            MBR           
## [18401] e-Shop         e-Shop         Flagship store Flagship store
## [18405] Flagship store Flagship store Flagship store Flagship store
## [18409] Flagship store TeleShop       e-Shop         e-Shop        
## [18413] TeleShop       TeleShop       TeleShop       TeleShop      
## [18417] TeleShop       TeleShop       TeleShop       e-Shop        
## [18421] e-Shop         e-Shop         TeleShop       TeleShop      
## [18425] e-Shop         e-Shop         e-Shop         e-Shop        
## [18429] e-Shop         e-Shop         e-Shop         Flagship store
## [18433] e-Shop         e-Shop         e-Shop         MBR           
## [18437] e-Shop         MBR            e-Shop         Flagship store
## [18441] MBR            Flagship store e-Shop         e-Shop        
## [18445] Flagship store e-Shop         Flagship store MBR           
## [18449] TeleShop       TeleShop       TeleShop       TeleShop      
## [18453] TeleShop       TeleShop       TeleShop       MBR           
## [18457] TeleShop       TeleShop       TeleShop       MBR           
## [18461] e-Shop         e-Shop         e-Shop         Flagship store
## [18465] Flagship store Flagship store e-Shop         Flagship store
## [18469] Flagship store Flagship store Flagship store MBR           
## [18473] e-Shop         Flagship store Flagship store e-Shop        
## [18477] MBR            e-Shop         Flagship store Flagship store
## [18481] MBR            MBR            Flagship store Flagship store
## [18485] Flagship store Flagship store e-Shop         Flagship store
## [18489] Flagship store Flagship store Flagship store e-Shop        
## [18493] e-Shop         e-Shop         e-Shop         Flagship store
## [18497] Flagship store TeleShop       Flagship store Flagship store
## [18501] TeleShop       Flagship store TeleShop       TeleShop      
## [18505] TeleShop       Flagship store TeleShop       Flagship store
## [18509] TeleShop       TeleShop       e-Shop         e-Shop        
## [18513] e-Shop         MBR            MBR            MBR           
## [18517] e-Shop         Flagship store e-Shop         e-Shop        
## [18521] Flagship store MBR            e-Shop         e-Shop        
## [18525] MBR            e-Shop         e-Shop         e-Shop        
## [18529] MBR            MBR            TeleShop       TeleShop      
## [18533] MBR            MBR            MBR            e-Shop        
## [18537] e-Shop         e-Shop         e-Shop         e-Shop        
## [18541] e-Shop         e-Shop         TeleShop       e-Shop        
## [18545] TeleShop       TeleShop       TeleShop       e-Shop        
## [18549] e-Shop         TeleShop       e-Shop         e-Shop        
## [18553] Flagship store Flagship store e-Shop         Flagship store
## [18557] Flagship store Flagship store Flagship store Flagship store
## [18561] e-Shop         MBR            Flagship store Flagship store
## [18565] e-Shop         MBR            MBR            Flagship store
## [18569] Flagship store TeleShop       TeleShop       e-Shop        
## [18573] TeleShop       Flagship store e-Shop         e-Shop        
## [18577] TeleShop       Flagship store e-Shop         Flagship store
## [18581] e-Shop         e-Shop         Flagship store Flagship store
## [18585] MBR            Flagship store Flagship store Flagship store
## [18589] Flagship store Flagship store Flagship store Flagship store
## [18593] MBR            MBR            Flagship store e-Shop        
## [18597] TeleShop       e-Shop         TeleShop       TeleShop      
## [18601] e-Shop         e-Shop         e-Shop         Flagship store
## [18605] Flagship store e-Shop         Flagship store e-Shop        
## [18609] e-Shop         TeleShop       TeleShop       e-Shop        
## [18613] e-Shop         TeleShop       e-Shop         e-Shop        
## [18617] e-Shop         Flagship store e-Shop         TeleShop      
## [18621] TeleShop       TeleShop       TeleShop       TeleShop      
## [18625] TeleShop       TeleShop       e-Shop         TeleShop      
## [18629] TeleShop       TeleShop       e-Shop         e-Shop        
## [18633] e-Shop         e-Shop         Flagship store TeleShop      
## [18637] TeleShop       Flagship store Flagship store Flagship store
## [18641] TeleShop       Flagship store TeleShop       Flagship store
## [18645] TeleShop       MBR            Flagship store MBR           
## [18649] MBR            Flagship store e-Shop         e-Shop        
## [18653] MBR            MBR            MBR            e-Shop        
## [18657] e-Shop         e-Shop         e-Shop         e-Shop        
## [18661] TeleShop       TeleShop       TeleShop       MBR           
## [18665] MBR            MBR            MBR            MBR           
## [18669] MBR            Flagship store Flagship store TeleShop      
## [18673] TeleShop       Flagship store Flagship store Flagship store
## [18677] TeleShop       e-Shop         e-Shop         e-Shop        
## [18681] e-Shop         e-Shop         e-Shop         e-Shop        
## [18685] MBR            MBR            MBR            MBR           
## [18689] MBR            e-Shop         e-Shop         e-Shop        
## [18693] Flagship store Flagship store MBR            MBR           
## [18697] e-Shop         e-Shop         e-Shop         MBR           
## [18701] MBR            e-Shop         e-Shop         Flagship store
## [18705] Flagship store MBR            e-Shop         e-Shop        
## [18709] MBR            MBR            e-Shop         e-Shop        
## [18713] MBR            e-Shop         e-Shop         MBR           
## [18717] TeleShop       TeleShop       TeleShop       TeleShop      
## [18721] TeleShop       e-Shop         TeleShop       e-Shop        
## [18725] TeleShop       TeleShop       e-Shop         TeleShop      
## [18729] TeleShop       MBR            e-Shop         e-Shop        
## [18733] MBR            MBR            MBR            e-Shop        
## [18737] e-Shop         e-Shop         MBR            e-Shop        
## [18741] e-Shop         Flagship store Flagship store e-Shop        
## [18745] Flagship store e-Shop         Flagship store Flagship store
## [18749] Flagship store Flagship store Flagship store Flagship store
## [18753] Flagship store Flagship store e-Shop         e-Shop        
## [18757] e-Shop         Flagship store e-Shop         e-Shop        
## [18761] e-Shop         TeleShop       e-Shop         e-Shop        
## [18765] e-Shop         TeleShop       e-Shop         e-Shop        
## [18769] TeleShop       e-Shop         TeleShop       TeleShop      
## [18773] TeleShop       e-Shop         e-Shop         e-Shop        
## [18777] e-Shop         e-Shop         MBR            Flagship store
## [18781] TeleShop       TeleShop       MBR            Flagship store
## [18785] TeleShop       TeleShop       MBR            TeleShop      
## [18789] e-Shop         Flagship store e-Shop         MBR           
## [18793] Flagship store MBR            Flagship store e-Shop        
## [18797] MBR            Flagship store e-Shop         Flagship store
## [18801] MBR            e-Shop         e-Shop         TeleShop      
## [18805] TeleShop       TeleShop       TeleShop       e-Shop        
## [18809] TeleShop       TeleShop       TeleShop       TeleShop      
## [18813] TeleShop       e-Shop         TeleShop       e-Shop        
## [18817] MBR            MBR            MBR            MBR           
## [18821] MBR            MBR            MBR            MBR           
## [18825] MBR            e-Shop         e-Shop         e-Shop        
## [18829] e-Shop         e-Shop         e-Shop         e-Shop        
## [18833] TeleShop       TeleShop       MBR            TeleShop      
## [18837] TeleShop       TeleShop       TeleShop       TeleShop      
## [18841] MBR            TeleShop       TeleShop       TeleShop      
## [18845] Flagship store Flagship store Flagship store e-Shop        
## [18849] e-Shop         e-Shop         MBR            Flagship store
## [18853] MBR            MBR            Flagship store Flagship store
## [18857] MBR            MBR            MBR            MBR           
## [18861] Flagship store MBR            Flagship store Flagship store
## [18865] e-Shop         e-Shop         e-Shop         e-Shop        
## [18869] e-Shop         e-Shop         e-Shop         e-Shop        
## [18873] e-Shop         e-Shop         TeleShop       MBR           
## [18877] MBR            MBR            TeleShop       TeleShop      
## [18881] TeleShop       TeleShop       MBR            MBR           
## [18885] TeleShop       TeleShop       Flagship store e-Shop        
## [18889] e-Shop         Flagship store Flagship store e-Shop        
## [18893] TeleShop       TeleShop       TeleShop       TeleShop      
## [18897] Flagship store Flagship store e-Shop         e-Shop        
## [18901] TeleShop       TeleShop       e-Shop         e-Shop        
## [18905] e-Shop         TeleShop       TeleShop       e-Shop        
## [18909] e-Shop         e-Shop         e-Shop         e-Shop        
## [18913] e-Shop         e-Shop         e-Shop         Flagship store
## [18917] e-Shop         e-Shop         Flagship store Flagship store
## [18921] e-Shop         e-Shop         e-Shop         e-Shop        
## [18925] e-Shop         e-Shop         e-Shop         e-Shop        
## [18929] e-Shop         e-Shop         e-Shop         e-Shop        
## [18933] e-Shop         e-Shop         e-Shop         e-Shop        
## [18937] e-Shop         e-Shop         e-Shop         e-Shop        
## [18941] e-Shop         e-Shop         e-Shop         e-Shop        
## [18945] e-Shop         e-Shop         e-Shop         e-Shop        
## [18949] e-Shop         e-Shop         Flagship store e-Shop        
## [18953] Flagship store e-Shop         e-Shop         Flagship store
## [18957] MBR            MBR            Flagship store MBR           
## [18961] MBR            TeleShop       MBR            Flagship store
## [18965] TeleShop       e-Shop         TeleShop       TeleShop      
## [18969] e-Shop         TeleShop       TeleShop       e-Shop        
## [18973] e-Shop         TeleShop       TeleShop       e-Shop        
## [18977] e-Shop         e-Shop         Flagship store Flagship store
## [18981] Flagship store MBR            e-Shop         e-Shop        
## [18985] Flagship store Flagship store e-Shop         e-Shop        
## [18989] e-Shop         e-Shop         Flagship store e-Shop        
## [18993] e-Shop         MBR            Flagship store e-Shop        
## [18997] TeleShop       Flagship store TeleShop       e-Shop        
## [19001] e-Shop         MBR            MBR            e-Shop        
## [19005] MBR            MBR            MBR            e-Shop        
## [19009] e-Shop         MBR            Flagship store Flagship store
## [19013] Flagship store Flagship store Flagship store Flagship store
## [19017] MBR            Flagship store MBR            Flagship store
## [19021] MBR            MBR            MBR            MBR           
## [19025] TeleShop       Flagship store TeleShop       Flagship store
## [19029] TeleShop       TeleShop       TeleShop       TeleShop      
## [19033] TeleShop       TeleShop       Flagship store MBR           
## [19037] TeleShop       TeleShop       MBR            MBR           
## [19041] MBR            MBR            MBR            MBR           
## [19045] MBR            MBR            TeleShop       TeleShop      
## [19049] TeleShop       e-Shop         TeleShop       TeleShop      
## [19053] e-Shop         MBR            TeleShop       TeleShop      
## [19057] TeleShop       e-Shop         e-Shop         e-Shop        
## [19061] e-Shop         e-Shop         e-Shop         e-Shop        
## [19065] TeleShop       MBR            MBR            TeleShop      
## [19069] MBR            e-Shop         MBR            e-Shop        
## [19073] MBR            e-Shop         e-Shop         e-Shop        
## [19077] e-Shop         TeleShop       e-Shop         e-Shop        
## [19081] MBR            MBR            TeleShop       e-Shop        
## [19085] e-Shop         e-Shop         e-Shop         TeleShop      
## [19089] TeleShop       e-Shop         e-Shop         e-Shop        
## [19093] MBR            TeleShop       MBR            e-Shop        
## [19097] MBR            Flagship store e-Shop         Flagship store
## [19101] Flagship store Flagship store e-Shop         e-Shop        
## [19105] Flagship store e-Shop         e-Shop         e-Shop        
## [19109] e-Shop         e-Shop         e-Shop         e-Shop        
## [19113] TeleShop       e-Shop         e-Shop         e-Shop        
## [19117] TeleShop       TeleShop       e-Shop         TeleShop      
## [19121] e-Shop         Flagship store e-Shop         e-Shop        
## [19125] e-Shop         Flagship store Flagship store e-Shop        
## [19129] e-Shop         Flagship store e-Shop         Flagship store
## [19133] Flagship store Flagship store e-Shop         Flagship store
## [19137] e-Shop         e-Shop         Flagship store Flagship store
## [19141] Flagship store Flagship store Flagship store e-Shop        
## [19145] e-Shop         Flagship store Flagship store Flagship store
## [19149] Flagship store Flagship store Flagship store Flagship store
## [19153] Flagship store Flagship store Flagship store Flagship store
## [19157] Flagship store Flagship store Flagship store Flagship store
## [19161] Flagship store Flagship store Flagship store Flagship store
## [19165] MBR            MBR            TeleShop       MBR           
## [19169] TeleShop       MBR            Flagship store e-Shop        
## [19173] Flagship store Flagship store Flagship store e-Shop        
## [19177] Flagship store e-Shop         e-Shop         e-Shop        
## [19181] e-Shop         e-Shop         Flagship store e-Shop        
## [19185] e-Shop         Flagship store Flagship store e-Shop        
## [19189] TeleShop       TeleShop       Flagship store Flagship store
## [19193] TeleShop       Flagship store TeleShop       Flagship store
## [19197] TeleShop       TeleShop       MBR            MBR           
## [19201] MBR            MBR            e-Shop         e-Shop        
## [19205] e-Shop         MBR            MBR            e-Shop        
## [19209] e-Shop         e-Shop         MBR            e-Shop        
## [19213] MBR            e-Shop         e-Shop         e-Shop        
## [19217] MBR            MBR            e-Shop         e-Shop        
## [19221] e-Shop         e-Shop         MBR            TeleShop      
## [19225] TeleShop       TeleShop       TeleShop       e-Shop        
## [19229] e-Shop         e-Shop         TeleShop       e-Shop        
## [19233] e-Shop         e-Shop         e-Shop         TeleShop      
## [19237] e-Shop         e-Shop         e-Shop         Flagship store
## [19241] Flagship store Flagship store Flagship store Flagship store
## [19245] Flagship store Flagship store TeleShop       Flagship store
## [19249] TeleShop       Flagship store e-Shop         e-Shop        
## [19253] TeleShop       e-Shop         e-Shop         e-Shop        
## [19257] TeleShop       TeleShop       TeleShop       e-Shop        
## [19261] TeleShop       e-Shop         e-Shop         e-Shop        
## [19265] TeleShop       e-Shop         e-Shop         e-Shop        
## [19269] TeleShop       TeleShop       TeleShop       e-Shop        
## [19273] e-Shop         TeleShop       TeleShop       TeleShop      
## [19277] e-Shop         e-Shop         TeleShop       TeleShop      
## [19281] e-Shop         e-Shop         e-Shop         e-Shop        
## [19285] e-Shop         e-Shop         e-Shop         e-Shop        
## [19289] e-Shop         e-Shop         e-Shop         TeleShop      
## [19293] TeleShop       e-Shop         e-Shop         e-Shop        
## [19297] e-Shop         TeleShop       e-Shop         e-Shop        
## [19301] Flagship store Flagship store Flagship store e-Shop        
## [19305] e-Shop         Flagship store TeleShop       Flagship store
## [19309] Flagship store TeleShop       MBR            MBR           
## [19313] MBR            MBR            MBR            e-Shop        
## [19317] Flagship store Flagship store e-Shop         Flagship store
## [19321] Flagship store Flagship store Flagship store Flagship store
## [19325] e-Shop         Flagship store TeleShop       TeleShop      
## [19329] TeleShop       TeleShop       TeleShop       TeleShop      
## [19333] TeleShop       TeleShop       TeleShop       TeleShop      
## [19337] TeleShop       TeleShop       TeleShop       TeleShop      
## [19341] TeleShop       e-Shop         TeleShop       TeleShop      
## [19345] TeleShop       e-Shop         e-Shop         e-Shop        
## [19349] TeleShop       e-Shop         TeleShop       e-Shop        
## [19353] e-Shop         Flagship store Flagship store e-Shop        
## [19357] e-Shop         MBR            MBR            e-Shop        
## [19361] MBR            MBR            e-Shop         e-Shop        
## [19365] TeleShop       e-Shop         e-Shop         e-Shop        
## [19369] TeleShop       e-Shop         MBR            TeleShop      
## [19373] MBR            e-Shop         Flagship store TeleShop      
## [19377] TeleShop       e-Shop         Flagship store Flagship store
## [19381] e-Shop         e-Shop         e-Shop         e-Shop        
## [19385] e-Shop         e-Shop         e-Shop         e-Shop        
## [19389] e-Shop         TeleShop       e-Shop         Flagship store
## [19393] e-Shop         MBR            Flagship store e-Shop        
## [19397] e-Shop         TeleShop       TeleShop       MBR           
## [19401] TeleShop       e-Shop         e-Shop         e-Shop        
## [19405] Flagship store Flagship store e-Shop         Flagship store
## [19409] TeleShop       TeleShop       Flagship store TeleShop      
## [19413] e-Shop         e-Shop         MBR            TeleShop      
## [19417] TeleShop       MBR            TeleShop       e-Shop        
## [19421] e-Shop         TeleShop       TeleShop       MBR           
## [19425] MBR            Flagship store MBR            e-Shop        
## [19429] MBR            Flagship store MBR            e-Shop        
## [19433] MBR            MBR            e-Shop         MBR           
## [19437] MBR            MBR            MBR            MBR           
## [19441] MBR            MBR            MBR            e-Shop        
## [19445] e-Shop         e-Shop         e-Shop         e-Shop        
## [19449] Flagship store e-Shop         Flagship store MBR           
## [19453] TeleShop       e-Shop         e-Shop         e-Shop        
## [19457] MBR            MBR            MBR            MBR           
## [19461] e-Shop         e-Shop         MBR            TeleShop      
## [19465] TeleShop       Flagship store Flagship store Flagship store
## [19469] Flagship store Flagship store TeleShop       MBR           
## [19473] MBR            e-Shop         e-Shop         e-Shop        
## [19477] e-Shop         e-Shop         e-Shop         TeleShop      
## [19481] e-Shop         MBR            e-Shop         e-Shop        
## [19485] e-Shop         e-Shop         e-Shop         e-Shop        
## [19489] e-Shop         TeleShop       e-Shop         e-Shop        
## [19493] MBR            TeleShop       TeleShop       e-Shop        
## [19497] TeleShop       MBR            TeleShop       TeleShop      
## [19501] MBR            MBR            MBR            MBR           
## [19505] MBR            MBR            MBR            MBR           
## [19509] MBR            Flagship store Flagship store TeleShop      
## [19513] TeleShop       TeleShop       TeleShop       TeleShop      
## [19517] TeleShop       TeleShop       TeleShop       TeleShop      
## [19521] TeleShop       TeleShop       TeleShop       TeleShop      
## [19525] Flagship store Flagship store TeleShop       TeleShop      
## [19529] TeleShop       TeleShop       e-Shop         MBR           
## [19533] Flagship store MBR            TeleShop       Flagship store
## [19537] e-Shop         Flagship store MBR            TeleShop      
## [19541] MBR            MBR            Flagship store MBR           
## [19545] MBR            Flagship store Flagship store Flagship store
## [19549] e-Shop         e-Shop         e-Shop         e-Shop        
## [19553] e-Shop         e-Shop         e-Shop         e-Shop        
## [19557] e-Shop         e-Shop         TeleShop       TeleShop      
## [19561] e-Shop         MBR            e-Shop         Flagship store
## [19565] MBR            MBR            Flagship store MBR           
## [19569] Flagship store MBR            Flagship store MBR           
## [19573] e-Shop         Flagship store e-Shop         e-Shop        
## [19577] e-Shop         e-Shop         e-Shop         e-Shop        
## [19581] e-Shop         e-Shop         e-Shop         MBR           
## [19585] MBR            Flagship store Flagship store Flagship store
## [19589] MBR            MBR            MBR            MBR           
## [19593] TeleShop       e-Shop         MBR            MBR           
## [19597] TeleShop       e-Shop         TeleShop       TeleShop      
## [19601] MBR            e-Shop         MBR            TeleShop      
## [19605] e-Shop         MBR            TeleShop       e-Shop        
## [19609] TeleShop       TeleShop       TeleShop       e-Shop        
## [19613] e-Shop         TeleShop       Flagship store MBR           
## [19617] Flagship store Flagship store MBR            MBR           
## [19621] Flagship store Flagship store MBR            MBR           
## [19625] TeleShop       MBR            TeleShop       MBR           
## [19629] MBR            TeleShop       MBR            TeleShop      
## [19633] TeleShop       TeleShop       TeleShop       TeleShop      
## [19637] e-Shop         Flagship store e-Shop         e-Shop        
## [19641] e-Shop         e-Shop         Flagship store TeleShop      
## [19645] TeleShop       TeleShop       TeleShop       Flagship store
## [19649] Flagship store TeleShop       Flagship store TeleShop      
## [19653] TeleShop       TeleShop       TeleShop       Flagship store
## [19657] Flagship store TeleShop       e-Shop         e-Shop        
## [19661] e-Shop         e-Shop         e-Shop         e-Shop        
## [19665] MBR            e-Shop         MBR            e-Shop        
## [19669] e-Shop         e-Shop         e-Shop         e-Shop        
## [19673] e-Shop         e-Shop         e-Shop         MBR           
## [19677] e-Shop         e-Shop         e-Shop         e-Shop        
## [19681] e-Shop         e-Shop         e-Shop         e-Shop        
## [19685] TeleShop       e-Shop         e-Shop         e-Shop        
## [19689] e-Shop         e-Shop         TeleShop       MBR           
## [19693] e-Shop         e-Shop         TeleShop       e-Shop        
## [19697] MBR            e-Shop         TeleShop       e-Shop        
## [19701] e-Shop         TeleShop       MBR            e-Shop        
## [19705] e-Shop         TeleShop       TeleShop       MBR           
## [19709] e-Shop         e-Shop         e-Shop         TeleShop      
## [19713] e-Shop         MBR            e-Shop         TeleShop      
## [19717] MBR            TeleShop       MBR            TeleShop      
## [19721] e-Shop         e-Shop         Flagship store TeleShop      
## [19725] TeleShop       Flagship store TeleShop       TeleShop      
## [19729] Flagship store Flagship store TeleShop       Flagship store
## [19733] Flagship store Flagship store Flagship store Flagship store
## [19737] Flagship store Flagship store Flagship store Flagship store
## [19741] Flagship store Flagship store Flagship store MBR           
## [19745] Flagship store Flagship store MBR            Flagship store
## [19749] e-Shop         Flagship store e-Shop         Flagship store
## [19753] TeleShop       TeleShop       e-Shop         TeleShop      
## [19757] e-Shop         MBR            MBR            MBR           
## [19761] e-Shop         MBR            MBR            MBR           
## [19765] MBR            MBR            MBR            e-Shop        
## [19769] MBR            e-Shop         MBR            MBR           
## [19773] e-Shop         MBR            MBR            MBR           
## [19777] MBR            MBR            MBR            MBR           
## [19781] MBR            MBR            MBR            MBR           
## [19785] MBR            MBR            MBR            MBR           
## [19789] MBR            MBR            MBR            MBR           
## [19793] MBR            MBR            MBR            MBR           
## [19797] MBR            MBR            e-Shop         e-Shop        
## [19801] e-Shop         e-Shop         e-Shop         e-Shop        
## [19805] e-Shop         e-Shop         e-Shop         e-Shop        
## [19809] e-Shop         e-Shop         e-Shop         e-Shop        
## [19813] e-Shop         e-Shop         e-Shop         e-Shop        
## [19817] e-Shop         TeleShop       Flagship store e-Shop        
## [19821] Flagship store e-Shop         e-Shop         e-Shop        
## [19825] TeleShop       e-Shop         e-Shop         e-Shop        
## [19829] TeleShop       e-Shop         e-Shop         TeleShop      
## [19833] e-Shop         e-Shop         TeleShop       e-Shop        
## [19837] e-Shop         Flagship store Flagship store Flagship store
## [19841] Flagship store Flagship store TeleShop       TeleShop      
## [19845] MBR            MBR            Flagship store Flagship store
## [19849] Flagship store Flagship store Flagship store Flagship store
## [19853] Flagship store e-Shop         Flagship store e-Shop        
## [19857] TeleShop       TeleShop       TeleShop       TeleShop      
## [19861] e-Shop         TeleShop       TeleShop       TeleShop      
## [19865] TeleShop       TeleShop       e-Shop         e-Shop        
## [19869] e-Shop         e-Shop         MBR            MBR           
## [19873] MBR            e-Shop         MBR            MBR           
## [19877] e-Shop         e-Shop         MBR            MBR           
## [19881] e-Shop         e-Shop         e-Shop         e-Shop        
## [19885] MBR            Flagship store Flagship store Flagship store
## [19889] TeleShop       TeleShop       e-Shop         e-Shop        
## [19893] e-Shop         e-Shop         e-Shop         e-Shop        
## [19897] e-Shop         e-Shop         e-Shop         e-Shop        
## [19901] e-Shop         e-Shop         e-Shop         e-Shop        
## [19905] e-Shop         e-Shop         e-Shop         e-Shop        
## [19909] e-Shop         Flagship store MBR            Flagship store
## [19913] e-Shop         e-Shop         Flagship store Flagship store
## [19917] e-Shop         Flagship store Flagship store e-Shop        
## [19921] e-Shop         MBR            TeleShop       e-Shop        
## [19925] Flagship store Flagship store MBR            TeleShop      
## [19929] Flagship store TeleShop       TeleShop       e-Shop        
## [19933] e-Shop         TeleShop       Flagship store TeleShop      
## [19937] TeleShop       e-Shop         e-Shop         e-Shop        
## [19941] e-Shop         e-Shop         TeleShop       TeleShop      
## [19945] e-Shop         TeleShop       e-Shop         TeleShop      
## [19949] TeleShop       TeleShop       e-Shop         TeleShop      
## [19953] TeleShop       TeleShop       TeleShop       e-Shop        
## [19957] e-Shop         e-Shop         TeleShop       TeleShop      
## [19961] e-Shop         Flagship store Flagship store Flagship store
## [19965] e-Shop         e-Shop         Flagship store Flagship store
## [19969] e-Shop         e-Shop         MBR            MBR           
## [19973] Flagship store Flagship store TeleShop       TeleShop      
## [19977] Flagship store TeleShop       MBR            Flagship store
## [19981] Flagship store MBR            TeleShop       MBR           
## [19985] Flagship store TeleShop       MBR            MBR           
## [19989] MBR            MBR            TeleShop       TeleShop      
## [19993] MBR            MBR            TeleShop       MBR           
## [19997] TeleShop       TeleShop       MBR            e-Shop        
## [20001] e-Shop         e-Shop         TeleShop       TeleShop      
## [20005] Flagship store TeleShop       TeleShop       Flagship store
## [20009] Flagship store TeleShop       TeleShop       Flagship store
## [20013] Flagship store Flagship store Flagship store Flagship store
## [20017] Flagship store MBR            MBR            MBR           
## [20021] e-Shop         e-Shop         MBR            MBR           
## [20025] MBR            MBR            MBR            e-Shop        
## [20029] MBR            MBR            MBR            MBR           
## [20033] MBR            TeleShop       e-Shop         MBR           
## [20037] TeleShop       e-Shop         e-Shop         e-Shop        
## [20041] e-Shop         MBR            e-Shop         e-Shop        
## [20045] e-Shop         e-Shop         e-Shop         e-Shop        
## [20049] Flagship store Flagship store TeleShop       TeleShop      
## [20053] TeleShop       TeleShop       TeleShop       TeleShop      
## [20057] TeleShop       TeleShop       TeleShop       TeleShop      
## [20061] TeleShop       TeleShop       MBR            MBR           
## [20065] MBR            MBR            Flagship store MBR           
## [20069] Flagship store MBR            MBR            MBR           
## [20073] Flagship store Flagship store Flagship store e-Shop        
## [20077] e-Shop         Flagship store Flagship store Flagship store
## [20081] e-Shop         e-Shop         TeleShop       e-Shop        
## [20085] e-Shop         MBR            MBR            MBR           
## [20089] TeleShop       MBR            e-Shop         TeleShop      
## [20093] Flagship store Flagship store Flagship store Flagship store
## [20097] Flagship store Flagship store Flagship store Flagship store
## [20101] Flagship store Flagship store Flagship store MBR           
## [20105] Flagship store MBR            MBR            MBR           
## [20109] Flagship store Flagship store e-Shop         MBR           
## [20113] Flagship store e-Shop         MBR            TeleShop      
## [20117] TeleShop       Flagship store Flagship store e-Shop        
## [20121] Flagship store e-Shop         Flagship store MBR           
## [20125] Flagship store MBR            TeleShop       MBR           
## [20129] Flagship store Flagship store Flagship store Flagship store
## [20133] Flagship store TeleShop       MBR            Flagship store
## [20137] e-Shop         e-Shop         e-Shop         e-Shop        
## [20141] e-Shop         e-Shop         e-Shop         e-Shop        
## [20145] TeleShop       TeleShop       MBR            MBR           
## [20149] TeleShop       e-Shop         Flagship store MBR           
## [20153] MBR            TeleShop       Flagship store e-Shop        
## [20157] MBR            e-Shop         e-Shop         e-Shop        
## [20161] TeleShop       e-Shop         MBR            TeleShop      
## [20165] e-Shop         e-Shop         MBR            TeleShop      
## [20169] e-Shop         e-Shop         TeleShop       TeleShop      
## [20173] e-Shop         e-Shop         e-Shop         e-Shop        
## [20177] TeleShop       TeleShop       TeleShop       TeleShop      
## [20181] TeleShop       TeleShop       TeleShop       TeleShop      
## [20185] TeleShop       Flagship store Flagship store Flagship store
## [20189] Flagship store Flagship store MBR            e-Shop        
## [20193] e-Shop         MBR            TeleShop       Flagship store
## [20197] TeleShop       MBR            Flagship store MBR           
## [20201] e-Shop         e-Shop         e-Shop         e-Shop        
## [20205] MBR            MBR            TeleShop       TeleShop      
## [20209] Flagship store MBR            MBR            Flagship store
## [20213] MBR            e-Shop         Flagship store Flagship store
## [20217] e-Shop         Flagship store Flagship store e-Shop        
## [20221] Flagship store Flagship store Flagship store Flagship store
## [20225] e-Shop         e-Shop         Flagship store e-Shop        
## [20229] e-Shop         Flagship store e-Shop         e-Shop        
## [20233] e-Shop         TeleShop       TeleShop       TeleShop      
## [20237] TeleShop       TeleShop       e-Shop         e-Shop        
## [20241] Flagship store Flagship store Flagship store e-Shop        
## [20245] Flagship store e-Shop         Flagship store Flagship store
## [20249] Flagship store e-Shop         e-Shop         Flagship store
## [20253] e-Shop         e-Shop         e-Shop         TeleShop      
## [20257] TeleShop       TeleShop       e-Shop         e-Shop        
## [20261] MBR            e-Shop         e-Shop         MBR           
## [20265] e-Shop         e-Shop         MBR            MBR           
## [20269] e-Shop         e-Shop         e-Shop         MBR           
## [20273] MBR            MBR            MBR            MBR           
## [20277] MBR            MBR            MBR            MBR           
## [20281] e-Shop         e-Shop         MBR            e-Shop        
## [20285] e-Shop         MBR            Flagship store Flagship store
## [20289] Flagship store e-Shop         e-Shop         e-Shop        
## [20293] e-Shop         e-Shop         Flagship store Flagship store
## [20297] e-Shop         TeleShop       e-Shop         TeleShop      
## [20301] TeleShop       e-Shop         e-Shop         TeleShop      
## [20305] TeleShop       e-Shop         TeleShop       e-Shop        
## [20309] Flagship store Flagship store e-Shop         e-Shop        
## [20313] e-Shop         Flagship store MBR            TeleShop      
## [20317] TeleShop       MBR            MBR            MBR           
## [20321] e-Shop         MBR            MBR            TeleShop      
## [20325] MBR            MBR            MBR            e-Shop        
## [20329] e-Shop         MBR            MBR            MBR           
## [20333] MBR            MBR            MBR            MBR           
## [20337] e-Shop         e-Shop         MBR            Flagship store
## [20341] MBR            Flagship store e-Shop         Flagship store
## [20345] e-Shop         MBR            Flagship store Flagship store
## [20349] MBR            Flagship store Flagship store MBR           
## [20353] Flagship store Flagship store e-Shop         Flagship store
## [20357] Flagship store MBR            Flagship store Flagship store
## [20361] Flagship store Flagship store MBR            TeleShop      
## [20365] Flagship store Flagship store e-Shop         Flagship store
## [20369] TeleShop       TeleShop       Flagship store Flagship store
## [20373] TeleShop       e-Shop         e-Shop         e-Shop        
## [20377] TeleShop       TeleShop       TeleShop       TeleShop      
## [20381] TeleShop       e-Shop         TeleShop       Flagship store
## [20385] Flagship store Flagship store e-Shop         Flagship store
## [20389] Flagship store Flagship store Flagship store e-Shop        
## [20393] Flagship store Flagship store Flagship store Flagship store
## [20397] Flagship store Flagship store Flagship store Flagship store
## [20401] Flagship store TeleShop       TeleShop       MBR           
## [20405] MBR            Flagship store Flagship store Flagship store
## [20409] Flagship store Flagship store Flagship store MBR           
## [20413] Flagship store Flagship store Flagship store Flagship store
## [20417] MBR            e-Shop         MBR            TeleShop      
## [20421] TeleShop       e-Shop         e-Shop         TeleShop      
## [20425] TeleShop       TeleShop       MBR            e-Shop        
## [20429] MBR            MBR            Flagship store TeleShop      
## [20433] Flagship store e-Shop         e-Shop         e-Shop        
## [20437] Flagship store Flagship store e-Shop         TeleShop      
## [20441] Flagship store TeleShop       e-Shop         TeleShop      
## [20445] TeleShop       e-Shop         e-Shop         e-Shop        
## [20449] e-Shop         e-Shop         TeleShop       Flagship store
## [20453] Flagship store Flagship store e-Shop         e-Shop        
## [20457] e-Shop         TeleShop       e-Shop         e-Shop        
## [20461] e-Shop         e-Shop         e-Shop         e-Shop        
## [20465] e-Shop         e-Shop         e-Shop         e-Shop        
## [20469] e-Shop         MBR            MBR            e-Shop        
## [20473] e-Shop         Flagship store Flagship store e-Shop        
## [20477] e-Shop         Flagship store Flagship store Flagship store
## [20481] Flagship store Flagship store e-Shop         Flagship store
## [20485] Flagship store e-Shop         Flagship store e-Shop        
## [20489] Flagship store e-Shop         TeleShop       e-Shop        
## [20493] e-Shop         TeleShop       TeleShop       TeleShop      
## [20497] TeleShop       TeleShop       TeleShop       TeleShop      
## [20501] TeleShop       TeleShop       TeleShop       TeleShop      
## [20505] TeleShop       TeleShop       e-Shop         e-Shop        
## [20509] e-Shop         e-Shop         e-Shop         e-Shop        
## [20513] e-Shop         e-Shop         Flagship store e-Shop        
## [20517] e-Shop         Flagship store MBR            MBR           
## [20521] e-Shop         MBR            Flagship store Flagship store
## [20525] e-Shop         e-Shop         e-Shop         Flagship store
## [20529] Flagship store e-Shop         e-Shop         e-Shop        
## [20533] e-Shop         TeleShop       TeleShop       e-Shop        
## [20537] e-Shop         MBR            TeleShop       e-Shop        
## [20541] MBR            e-Shop         TeleShop       TeleShop      
## [20545] TeleShop       MBR            TeleShop       TeleShop      
## [20549] TeleShop       MBR            TeleShop       MBR           
## [20553] TeleShop       TeleShop       TeleShop       TeleShop      
## [20557] MBR            TeleShop       TeleShop       MBR           
## [20561] TeleShop       TeleShop       e-Shop         e-Shop        
## [20565] e-Shop         e-Shop         e-Shop         e-Shop        
## [20569] e-Shop         e-Shop         e-Shop         e-Shop        
## [20573] e-Shop         e-Shop         e-Shop         e-Shop        
## [20577] MBR            MBR            MBR            MBR           
## [20581] Flagship store MBR            MBR            Flagship store
## [20585] Flagship store Flagship store MBR            Flagship store
## [20589] MBR            MBR            Flagship store Flagship store
## [20593] Flagship store MBR            MBR            Flagship store
## [20597] MBR            Flagship store TeleShop       TeleShop      
## [20601] Flagship store Flagship store Flagship store Flagship store
## [20605] Flagship store Flagship store Flagship store Flagship store
## [20609] Flagship store Flagship store TeleShop       TeleShop      
## [20613] Flagship store e-Shop         Flagship store TeleShop      
## [20617] TeleShop       TeleShop       TeleShop       e-Shop        
## [20621] e-Shop         Flagship store TeleShop       MBR           
## [20625] MBR            Flagship store Flagship store Flagship store
## [20629] Flagship store Flagship store Flagship store Flagship store
## [20633] Flagship store MBR            e-Shop         MBR           
## [20637] e-Shop         e-Shop         TeleShop       Flagship store
## [20641] Flagship store TeleShop       Flagship store Flagship store
## [20645] Flagship store Flagship store Flagship store e-Shop        
## [20649] e-Shop         e-Shop         Flagship store Flagship store
## [20653] TeleShop       TeleShop       TeleShop       TeleShop      
## [20657] TeleShop       TeleShop       TeleShop       TeleShop      
## [20661] e-Shop         e-Shop         TeleShop       TeleShop      
## [20665] TeleShop       TeleShop       TeleShop       TeleShop      
## [20669] TeleShop       TeleShop       Flagship store TeleShop      
## [20673] TeleShop       TeleShop       Flagship store TeleShop      
## [20677] Flagship store Flagship store Flagship store Flagship store
## [20681] Flagship store Flagship store Flagship store Flagship store
## [20685] Flagship store TeleShop       TeleShop       TeleShop      
## [20689] e-Shop         e-Shop         e-Shop         e-Shop        
## [20693] e-Shop         MBR            e-Shop         MBR           
## [20697] e-Shop         e-Shop         e-Shop         e-Shop        
## [20701] e-Shop         e-Shop         e-Shop         e-Shop        
## [20705] e-Shop         e-Shop         e-Shop         MBR           
## [20709] e-Shop         e-Shop         MBR            MBR           
## [20713] e-Shop         e-Shop         e-Shop         MBR           
## [20717] e-Shop         e-Shop         e-Shop         MBR           
## [20721] e-Shop         MBR            MBR            MBR           
## [20725] Flagship store Flagship store TeleShop       e-Shop        
## [20729] e-Shop         e-Shop         TeleShop       e-Shop        
## [20733] TeleShop       TeleShop       TeleShop       e-Shop        
## [20737] e-Shop         e-Shop         Flagship store Flagship store
## [20741] Flagship store MBR            MBR            MBR           
## [20745] TeleShop       TeleShop       TeleShop       TeleShop      
## [20749] TeleShop       TeleShop       TeleShop       e-Shop        
## [20753] e-Shop         TeleShop       e-Shop         TeleShop      
## [20757] TeleShop       TeleShop       e-Shop         TeleShop      
## [20761] TeleShop       e-Shop         e-Shop         e-Shop        
## [20765] e-Shop         e-Shop         e-Shop         e-Shop        
## [20769] e-Shop         e-Shop         e-Shop         e-Shop        
## [20773] Flagship store Flagship store Flagship store Flagship store
## [20777] Flagship store Flagship store Flagship store Flagship store
## [20781] e-Shop         e-Shop         e-Shop         e-Shop        
## [20785] e-Shop         e-Shop         e-Shop         e-Shop        
## [20789] e-Shop         e-Shop         e-Shop         e-Shop        
## [20793] e-Shop         e-Shop         MBR            e-Shop        
## [20797] e-Shop         e-Shop         e-Shop         MBR           
## [20801] e-Shop         MBR            e-Shop         e-Shop        
## [20805] MBR            MBR            MBR            MBR           
## [20809] MBR            MBR            MBR            MBR           
## [20813] TeleShop       TeleShop       TeleShop       e-Shop        
## [20817] e-Shop         e-Shop         e-Shop         TeleShop      
## [20821] TeleShop       TeleShop       TeleShop       TeleShop      
## [20825] TeleShop       MBR            e-Shop         e-Shop        
## [20829] MBR            TeleShop       TeleShop       e-Shop        
## [20833] TeleShop       e-Shop         MBR            e-Shop        
## [20837] e-Shop         e-Shop         MBR            e-Shop        
## [20841] e-Shop         MBR            MBR            Flagship store
## [20845] Flagship store e-Shop         Flagship store e-Shop        
## [20849] e-Shop         Flagship store e-Shop         e-Shop        
## [20853] e-Shop         e-Shop         e-Shop         MBR           
## [20857] MBR            MBR            MBR            MBR           
## [20861] TeleShop       TeleShop       MBR            MBR           
## [20865] MBR            TeleShop       MBR            TeleShop      
## [20869] TeleShop       Flagship store Flagship store Flagship store
## [20873] Flagship store TeleShop       Flagship store TeleShop      
## [20877] TeleShop       Flagship store TeleShop       Flagship store
## [20881] e-Shop         e-Shop         e-Shop         e-Shop        
## [20885] e-Shop         e-Shop         e-Shop         e-Shop        
## [20889] e-Shop         Flagship store Flagship store Flagship store
## [20893] e-Shop         Flagship store e-Shop         e-Shop        
## [20897] TeleShop       MBR            MBR            MBR           
## [20901] TeleShop       MBR            Flagship store Flagship store
## [20905] TeleShop       Flagship store Flagship store Flagship store
## [20909] Flagship store Flagship store e-Shop         e-Shop        
## [20913] e-Shop         e-Shop         e-Shop         e-Shop        
## [20917] e-Shop         e-Shop         e-Shop         e-Shop        
## [20921] e-Shop         e-Shop         e-Shop         e-Shop        
## [20925] e-Shop         e-Shop         e-Shop         e-Shop        
## [20929] e-Shop         e-Shop         MBR            MBR           
## [20933] MBR            MBR            e-Shop         MBR           
## [20937] e-Shop         e-Shop         e-Shop         e-Shop        
## [20941] e-Shop         e-Shop         e-Shop         e-Shop        
## [20945] e-Shop         e-Shop         e-Shop         e-Shop        
## [20949] e-Shop         e-Shop         e-Shop         e-Shop        
## [20953] e-Shop         e-Shop         MBR            MBR           
## [20957] Flagship store MBR            MBR            MBR           
## [20961] MBR            MBR            Flagship store MBR           
## [20965] MBR            Flagship store MBR            MBR           
## [20969] MBR            MBR            Flagship store e-Shop        
## [20973] e-Shop         Flagship store Flagship store e-Shop        
## [20977] e-Shop         Flagship store Flagship store e-Shop        
## [20981] MBR            MBR            Flagship store e-Shop        
## [20985] Flagship store Flagship store e-Shop         MBR           
## [20989] e-Shop         MBR            e-Shop         e-Shop        
## [20993] e-Shop         e-Shop         e-Shop         MBR           
## [20997] MBR            MBR            MBR            MBR           
## [21001] e-Shop         e-Shop         Flagship store TeleShop      
## [21005] TeleShop       TeleShop       Flagship store TeleShop      
## [21009] e-Shop         Flagship store TeleShop       TeleShop      
## [21013] TeleShop       Flagship store Flagship store TeleShop      
## [21017] e-Shop         e-Shop         TeleShop       TeleShop      
## [21021] TeleShop       TeleShop       TeleShop       TeleShop      
## [21025] TeleShop       Flagship store e-Shop         TeleShop      
## [21029] e-Shop         TeleShop       TeleShop       e-Shop        
## [21033] e-Shop         Flagship store e-Shop         e-Shop        
## [21037] e-Shop         TeleShop       TeleShop       TeleShop      
## [21041] TeleShop       TeleShop       e-Shop         e-Shop        
## [21045] e-Shop         MBR            e-Shop         e-Shop        
## [21049] MBR            MBR            e-Shop         e-Shop        
## [21053] e-Shop         MBR            e-Shop         MBR           
## [21057] MBR            e-Shop         MBR            MBR           
## [21061] MBR            TeleShop       e-Shop         MBR           
## [21065] TeleShop       MBR            MBR            e-Shop        
## [21069] e-Shop         TeleShop       TeleShop       e-Shop        
## [21073] e-Shop         TeleShop       TeleShop       TeleShop      
## [21077] TeleShop       TeleShop       TeleShop       TeleShop      
## [21081] TeleShop       TeleShop       TeleShop       TeleShop      
## [21085] TeleShop       TeleShop       TeleShop       TeleShop      
## [21089] TeleShop       TeleShop       TeleShop       e-Shop        
## [21093] Flagship store e-Shop         Flagship store e-Shop        
## [21097] e-Shop         e-Shop         e-Shop         e-Shop        
## [21101] e-Shop         e-Shop         e-Shop         e-Shop        
## [21105] e-Shop         e-Shop         e-Shop         e-Shop        
## [21109] e-Shop         e-Shop         e-Shop         e-Shop        
## [21113] e-Shop         Flagship store MBR            e-Shop        
## [21117] Flagship store Flagship store MBR            e-Shop        
## [21121] MBR            MBR            e-Shop         MBR           
## [21125] Flagship store e-Shop         Flagship store MBR           
## [21129] Flagship store e-Shop         e-Shop         TeleShop      
## [21133] Flagship store Flagship store Flagship store Flagship store
## [21137] TeleShop       TeleShop       TeleShop       TeleShop      
## [21141] Flagship store MBR            Flagship store MBR           
## [21145] MBR            MBR            Flagship store Flagship store
## [21149] Flagship store MBR            Flagship store MBR           
## [21153] e-Shop         e-Shop         MBR            e-Shop        
## [21157] MBR            e-Shop         Flagship store Flagship store
## [21161] TeleShop       TeleShop       TeleShop       TeleShop      
## [21165] Flagship store Flagship store TeleShop       MBR           
## [21169] TeleShop       Flagship store TeleShop       TeleShop      
## [21173] MBR            TeleShop       Flagship store e-Shop        
## [21177] e-Shop         e-Shop         e-Shop         e-Shop        
## [21181] TeleShop       TeleShop       TeleShop       e-Shop        
## [21185] e-Shop         TeleShop       TeleShop       TeleShop      
## [21189] e-Shop         TeleShop       TeleShop       TeleShop      
## [21193] TeleShop       e-Shop         e-Shop         e-Shop        
## [21197] e-Shop         Flagship store Flagship store e-Shop        
## [21201] e-Shop         Flagship store Flagship store e-Shop        
## [21205] Flagship store e-Shop         MBR            e-Shop        
## [21209] e-Shop         e-Shop         e-Shop         e-Shop        
## [21213] e-Shop         MBR            e-Shop         e-Shop        
## [21217] e-Shop         e-Shop         e-Shop         e-Shop        
## [21221] e-Shop         e-Shop         e-Shop         e-Shop        
## [21225] e-Shop         e-Shop         e-Shop         e-Shop        
## [21229] e-Shop         e-Shop         TeleShop       TeleShop      
## [21233] e-Shop         e-Shop         e-Shop         e-Shop        
## [21237] e-Shop         e-Shop         e-Shop         Flagship store
## [21241] Flagship store Flagship store Flagship store e-Shop        
## [21245] TeleShop       TeleShop       Flagship store e-Shop        
## [21249] e-Shop         e-Shop         e-Shop         e-Shop        
## [21253] e-Shop         Flagship store e-Shop         e-Shop        
## [21257] e-Shop         Flagship store e-Shop         e-Shop        
## [21261] e-Shop         e-Shop         e-Shop         Flagship store
## [21265] Flagship store Flagship store e-Shop         TeleShop      
## [21269] TeleShop       Flagship store MBR            MBR           
## [21273] Flagship store Flagship store Flagship store MBR           
## [21277] Flagship store Flagship store Flagship store Flagship store
## [21281] Flagship store Flagship store Flagship store Flagship store
## [21285] Flagship store Flagship store Flagship store Flagship store
## [21289] Flagship store Flagship store Flagship store Flagship store
## [21293] Flagship store e-Shop         e-Shop         e-Shop        
## [21297] MBR            MBR            MBR            e-Shop        
## [21301] e-Shop         MBR            MBR            MBR           
## [21305] MBR            Flagship store Flagship store Flagship store
## [21309] TeleShop       TeleShop       TeleShop       TeleShop      
## [21313] TeleShop       TeleShop       e-Shop         e-Shop        
## [21317] e-Shop         e-Shop         e-Shop         TeleShop      
## [21321] TeleShop       TeleShop       TeleShop       TeleShop      
## [21325] e-Shop         e-Shop         e-Shop         Flagship store
## [21329] Flagship store Flagship store e-Shop         e-Shop        
## [21333] TeleShop       e-Shop         TeleShop       e-Shop        
## [21337] e-Shop         e-Shop         e-Shop         e-Shop        
## [21341] e-Shop         e-Shop         e-Shop         TeleShop      
## [21345] TeleShop       TeleShop       e-Shop         TeleShop      
## [21349] e-Shop         Flagship store e-Shop         Flagship store
## [21353] e-Shop         Flagship store e-Shop         e-Shop        
## [21357] TeleShop       e-Shop         e-Shop         e-Shop        
## [21361] TeleShop       TeleShop       e-Shop         e-Shop        
## [21365] MBR            e-Shop         e-Shop         e-Shop        
## [21369] e-Shop         MBR            MBR            e-Shop        
## [21373] e-Shop         e-Shop         MBR            e-Shop        
## [21377] e-Shop         MBR            e-Shop         MBR           
## [21381] e-Shop         MBR            MBR            e-Shop        
## [21385] e-Shop         e-Shop         MBR            MBR           
## [21389] e-Shop         e-Shop         e-Shop         e-Shop        
## [21393] e-Shop         e-Shop         e-Shop         e-Shop        
## [21397] e-Shop         e-Shop         MBR            TeleShop      
## [21401] e-Shop         e-Shop         MBR            MBR           
## [21405] TeleShop       e-Shop         e-Shop         e-Shop        
## [21409] e-Shop         Flagship store e-Shop         e-Shop        
## [21413] e-Shop         e-Shop         e-Shop         e-Shop        
## [21417] Flagship store e-Shop         Flagship store e-Shop        
## [21421] e-Shop         e-Shop         e-Shop         e-Shop        
## [21425] e-Shop         e-Shop         e-Shop         e-Shop        
## [21429] e-Shop         MBR            Flagship store TeleShop      
## [21433] e-Shop         e-Shop         TeleShop       MBR           
## [21437] MBR            Flagship store MBR            MBR           
## [21441] e-Shop         TeleShop       MBR            Flagship store
## [21445] TeleShop       e-Shop         e-Shop         e-Shop        
## [21449] e-Shop         Flagship store e-Shop         Flagship store
## [21453] MBR            e-Shop         e-Shop         MBR           
## [21457] MBR            e-Shop         MBR            MBR           
## [21461] e-Shop         e-Shop         TeleShop       TeleShop      
## [21465] TeleShop       TeleShop       TeleShop       e-Shop        
## [21469] e-Shop         e-Shop         e-Shop         MBR           
## [21473] MBR            MBR            MBR            MBR           
## [21477] MBR            TeleShop       MBR            TeleShop      
## [21481] MBR            MBR            MBR            MBR           
## [21485] MBR            e-Shop         e-Shop         e-Shop        
## [21489] TeleShop       Flagship store TeleShop       Flagship store
## [21493] TeleShop       TeleShop       TeleShop       Flagship store
## [21497] Flagship store Flagship store Flagship store Flagship store
## [21501] Flagship store Flagship store Flagship store Flagship store
## [21505] Flagship store TeleShop       Flagship store TeleShop      
## [21509] TeleShop       MBR            e-Shop         MBR           
## [21513] e-Shop         MBR            MBR            MBR           
## [21517] MBR            MBR            MBR            Flagship store
## [21521] e-Shop         e-Shop         Flagship store MBR           
## [21525] MBR            Flagship store Flagship store MBR           
## [21529] e-Shop         MBR            Flagship store TeleShop      
## [21533] TeleShop       Flagship store e-Shop         e-Shop        
## [21537] MBR            e-Shop         e-Shop         Flagship store
## [21541] MBR            MBR            e-Shop         e-Shop        
## [21545] e-Shop         e-Shop         e-Shop         e-Shop        
## [21549] MBR            MBR            MBR            e-Shop        
## [21553] MBR            MBR            e-Shop         MBR           
## [21557] MBR            e-Shop         TeleShop       TeleShop      
## [21561] e-Shop         TeleShop       e-Shop         e-Shop        
## [21565] e-Shop         TeleShop       Flagship store Flagship store
## [21569] Flagship store e-Shop         Flagship store Flagship store
## [21573] Flagship store Flagship store e-Shop         Flagship store
## [21577] Flagship store e-Shop         e-Shop         e-Shop        
## [21581] e-Shop         e-Shop         e-Shop         e-Shop        
## [21585] e-Shop         e-Shop         MBR            e-Shop        
## [21589] MBR            e-Shop         e-Shop         TeleShop      
## [21593] TeleShop       TeleShop       TeleShop       TeleShop      
## [21597] Flagship store e-Shop         e-Shop         e-Shop        
## [21601] Flagship store e-Shop         Flagship store e-Shop        
## [21605] Flagship store MBR            e-Shop         TeleShop      
## [21609] e-Shop         e-Shop         MBR            MBR           
## [21613] e-Shop         TeleShop       MBR            MBR           
## [21617] MBR            e-Shop         e-Shop         MBR           
## [21621] e-Shop         e-Shop         e-Shop         e-Shop        
## [21625] MBR            MBR            Flagship store Flagship store
## [21629] MBR            e-Shop         MBR            MBR           
## [21633] MBR            MBR            MBR            Flagship store
## [21637] e-Shop         MBR            Flagship store MBR           
## [21641] Flagship store e-Shop         MBR            e-Shop        
## [21645] e-Shop         e-Shop         MBR            e-Shop        
## [21649] Flagship store Flagship store Flagship store Flagship store
## [21653] Flagship store Flagship store e-Shop         Flagship store
## [21657] e-Shop         Flagship store e-Shop         e-Shop        
## [21661] e-Shop         TeleShop       e-Shop         e-Shop        
## [21665] TeleShop       e-Shop         TeleShop       TeleShop      
## [21669] TeleShop       TeleShop       TeleShop       TeleShop      
## [21673] TeleShop       TeleShop       TeleShop       TeleShop      
## [21677] TeleShop       e-Shop         MBR            TeleShop      
## [21681] TeleShop       e-Shop         MBR            MBR           
## [21685] MBR            MBR            TeleShop       MBR           
## [21689] e-Shop         e-Shop         e-Shop         MBR           
## [21693] e-Shop         e-Shop         e-Shop         e-Shop        
## [21697] MBR            e-Shop         TeleShop       e-Shop        
## [21701] TeleShop       TeleShop       Flagship store Flagship store
## [21705] Flagship store e-Shop         e-Shop         Flagship store
## [21709] e-Shop         e-Shop         e-Shop         e-Shop        
## [21713] Flagship store e-Shop         e-Shop         Flagship store
## [21717] e-Shop         Flagship store e-Shop         Flagship store
## [21721] e-Shop         e-Shop         Flagship store Flagship store
## [21725] Flagship store Flagship store Flagship store e-Shop        
## [21729] e-Shop         Flagship store Flagship store e-Shop        
## [21733] Flagship store Flagship store Flagship store e-Shop        
## [21737] MBR            e-Shop         MBR            MBR           
## [21741] MBR            MBR            MBR            MBR           
## [21745] e-Shop         MBR            MBR            MBR           
## [21749] Flagship store Flagship store Flagship store e-Shop        
## [21753] e-Shop         e-Shop         MBR            MBR           
## [21757] e-Shop         MBR            e-Shop         TeleShop      
## [21761] TeleShop       MBR            e-Shop         MBR           
## [21765] MBR            MBR            TeleShop       TeleShop      
## [21769] e-Shop         TeleShop       MBR            MBR           
## [21773] MBR            MBR            MBR            MBR           
## [21777] e-Shop         e-Shop         e-Shop         e-Shop        
## [21781] e-Shop         e-Shop         e-Shop         e-Shop        
## [21785] e-Shop         e-Shop         e-Shop         e-Shop        
## [21789] e-Shop         e-Shop         TeleShop       Flagship store
## [21793] MBR            MBR            Flagship store TeleShop      
## [21797] e-Shop         e-Shop         Flagship store e-Shop        
## [21801] Flagship store TeleShop       e-Shop         MBR           
## [21805] TeleShop       MBR            e-Shop         Flagship store
## [21809] e-Shop         e-Shop         e-Shop         Flagship store
## [21813] TeleShop       TeleShop       MBR            MBR           
## [21817] MBR            MBR            MBR            MBR           
## [21821] MBR            MBR            MBR            MBR           
## [21825] e-Shop         e-Shop         e-Shop         e-Shop        
## [21829] e-Shop         e-Shop         e-Shop         e-Shop        
## [21833] e-Shop         e-Shop         e-Shop         Flagship store
## [21837] Flagship store TeleShop       TeleShop       e-Shop        
## [21841] Flagship store MBR            e-Shop         MBR           
## [21845] MBR            MBR            Flagship store e-Shop        
## [21849] e-Shop         Flagship store e-Shop         e-Shop        
## [21853] MBR            MBR            Flagship store e-Shop        
## [21857] e-Shop         e-Shop         e-Shop         e-Shop        
## [21861] TeleShop       TeleShop       TeleShop       TeleShop      
## [21865] TeleShop       TeleShop       Flagship store Flagship store
## [21869] TeleShop       TeleShop       Flagship store MBR           
## [21873] Flagship store Flagship store MBR            MBR           
## [21877] Flagship store Flagship store Flagship store Flagship store
## [21881] MBR            Flagship store Flagship store MBR           
## [21885] MBR            e-Shop         MBR            TeleShop      
## [21889] TeleShop       TeleShop       MBR            e-Shop        
## [21893] e-Shop         TeleShop       e-Shop         TeleShop      
## [21897] MBR            e-Shop         MBR            MBR           
## [21901] Flagship store Flagship store Flagship store Flagship store
## [21905] Flagship store Flagship store Flagship store Flagship store
## [21909] Flagship store Flagship store Flagship store TeleShop      
## [21913] MBR            Flagship store MBR            Flagship store
## [21917] MBR            Flagship store TeleShop       Flagship store
## [21921] MBR            MBR            MBR            MBR           
## [21925] e-Shop         e-Shop         e-Shop         e-Shop        
## [21929] e-Shop         e-Shop         e-Shop         e-Shop        
## [21933] Flagship store e-Shop         e-Shop         e-Shop        
## [21937] Flagship store Flagship store e-Shop         Flagship store
## [21941] e-Shop         e-Shop         Flagship store Flagship store
## [21945] e-Shop         Flagship store e-Shop         Flagship store
## [21949] Flagship store MBR            MBR            MBR           
## [21953] MBR            e-Shop         e-Shop         e-Shop        
## [21957] e-Shop         TeleShop       TeleShop       TeleShop      
## [21961] TeleShop       MBR            e-Shop         e-Shop        
## [21965] e-Shop         MBR            MBR            e-Shop        
## [21969] MBR            e-Shop         e-Shop         MBR           
## [21973] e-Shop         e-Shop         e-Shop         MBR           
## [21977] e-Shop         e-Shop         MBR            MBR           
## [21981] e-Shop         e-Shop         e-Shop         e-Shop        
## [21985] e-Shop         TeleShop       TeleShop       e-Shop        
## [21989] e-Shop         e-Shop         e-Shop         e-Shop        
## [21993] e-Shop         e-Shop         e-Shop         e-Shop        
## [21997] e-Shop         e-Shop         e-Shop         e-Shop        
## [22001] e-Shop         e-Shop         e-Shop         e-Shop        
## [22005] e-Shop         e-Shop         e-Shop         MBR           
## [22009] MBR            MBR            e-Shop         MBR           
## [22013] MBR            e-Shop         MBR            e-Shop        
## [22017] e-Shop         MBR            MBR            MBR           
## [22021] MBR            e-Shop         e-Shop         MBR           
## [22025] TeleShop       MBR            MBR            TeleShop      
## [22029] e-Shop         e-Shop         TeleShop       TeleShop      
## [22033] TeleShop       TeleShop       e-Shop         TeleShop      
## [22037] Flagship store Flagship store e-Shop         Flagship store
## [22041] e-Shop         Flagship store e-Shop         e-Shop        
## [22045] e-Shop         e-Shop         e-Shop         e-Shop        
## [22049] e-Shop         e-Shop         e-Shop         e-Shop        
## [22053] e-Shop         e-Shop         e-Shop         e-Shop        
## [22057] e-Shop         TeleShop       TeleShop       TeleShop      
## [22061] TeleShop       TeleShop       e-Shop         e-Shop        
## [22065] TeleShop       MBR            e-Shop         e-Shop        
## [22069] TeleShop       TeleShop       TeleShop       TeleShop      
## [22073] MBR            e-Shop         e-Shop         TeleShop      
## [22077] TeleShop       MBR            MBR            MBR           
## [22081] MBR            MBR            e-Shop         e-Shop        
## [22085] e-Shop         e-Shop         TeleShop       TeleShop      
## [22089] TeleShop       TeleShop       TeleShop       TeleShop      
## [22093] Flagship store e-Shop         Flagship store e-Shop        
## [22097] e-Shop         Flagship store e-Shop         Flagship store
## [22101] e-Shop         Flagship store e-Shop         Flagship store
## [22105] Flagship store Flagship store e-Shop         TeleShop      
## [22109] TeleShop       e-Shop         TeleShop       e-Shop        
## [22113] e-Shop         e-Shop         e-Shop         MBR           
## [22117] MBR            MBR            MBR            e-Shop        
## [22121] TeleShop       Flagship store MBR            Flagship store
## [22125] MBR            TeleShop       MBR            TeleShop      
## [22129] MBR            TeleShop       MBR            MBR           
## [22133] MBR            e-Shop         MBR            e-Shop        
## [22137] e-Shop         MBR            MBR            e-Shop        
## [22141] e-Shop         e-Shop         TeleShop       TeleShop      
## [22145] e-Shop         e-Shop         e-Shop         e-Shop        
## [22149] e-Shop         e-Shop         e-Shop         e-Shop        
## [22153] e-Shop         Flagship store Flagship store Flagship store
## [22157] Flagship store Flagship store Flagship store Flagship store
## [22161] Flagship store Flagship store Flagship store Flagship store
## [22165] e-Shop         TeleShop       e-Shop         TeleShop      
## [22169] e-Shop         e-Shop         e-Shop         e-Shop        
## [22173] TeleShop       TeleShop       TeleShop       TeleShop      
## [22177] TeleShop       Flagship store Flagship store e-Shop        
## [22181] Flagship store TeleShop       TeleShop       TeleShop      
## [22185] e-Shop         Flagship store e-Shop         Flagship store
## [22189] Flagship store Flagship store Flagship store Flagship store
## [22193] Flagship store Flagship store Flagship store Flagship store
## [22197] Flagship store e-Shop         MBR            MBR           
## [22201] e-Shop         e-Shop         MBR            MBR           
## [22205] MBR            e-Shop         MBR            MBR           
## [22209] e-Shop         e-Shop         e-Shop         e-Shop        
## [22213] e-Shop         MBR            MBR            MBR           
## [22217] e-Shop         e-Shop         e-Shop         MBR           
## [22221] e-Shop         MBR            Flagship store Flagship store
## [22225] Flagship store Flagship store Flagship store Flagship store
## [22229] TeleShop       TeleShop       e-Shop         e-Shop        
## [22233] TeleShop       TeleShop       e-Shop         e-Shop        
## [22237] TeleShop       e-Shop         e-Shop         e-Shop        
## [22241] e-Shop         e-Shop         e-Shop         e-Shop        
## [22245] e-Shop         e-Shop         e-Shop         e-Shop        
## [22249] e-Shop         e-Shop         e-Shop         e-Shop        
## [22253] e-Shop         MBR            e-Shop         e-Shop        
## [22257] e-Shop         e-Shop         e-Shop         e-Shop        
## [22261] MBR            e-Shop         MBR            e-Shop        
## [22265] TeleShop       TeleShop       TeleShop       TeleShop      
## [22269] TeleShop       TeleShop       TeleShop       TeleShop      
## [22273] TeleShop       TeleShop       TeleShop       TeleShop      
## [22277] TeleShop       TeleShop       MBR            MBR           
## [22281] MBR            e-Shop         e-Shop         Flagship store
## [22285] Flagship store e-Shop         Flagship store e-Shop        
## [22289] Flagship store Flagship store Flagship store e-Shop        
## [22293] e-Shop         e-Shop         e-Shop         TeleShop      
## [22297] e-Shop         TeleShop       TeleShop       TeleShop      
## [22301] e-Shop         e-Shop         TeleShop       e-Shop        
## [22305] TeleShop       TeleShop       TeleShop       e-Shop        
## [22309] TeleShop       e-Shop         TeleShop       Flagship store
## [22313] Flagship store Flagship store TeleShop       TeleShop      
## [22317] TeleShop       MBR            MBR            TeleShop      
## [22321] MBR            MBR            TeleShop       TeleShop      
## [22325] TeleShop       MBR            TeleShop       MBR           
## [22329] TeleShop       MBR            e-Shop         MBR           
## [22333] Flagship store e-Shop         e-Shop         e-Shop        
## [22337] MBR            e-Shop         e-Shop         MBR           
## [22341] e-Shop         e-Shop         MBR            Flagship store
## [22345] MBR            MBR            MBR            MBR           
## [22349] TeleShop       e-Shop         e-Shop         MBR           
## [22353] MBR            e-Shop         e-Shop         e-Shop        
## [22357] TeleShop       e-Shop         TeleShop       e-Shop        
## [22361] TeleShop       e-Shop         e-Shop         e-Shop        
## [22365] TeleShop       e-Shop         Flagship store TeleShop      
## [22369] TeleShop       TeleShop       Flagship store Flagship store
## [22373] MBR            TeleShop       TeleShop       e-Shop        
## [22377] TeleShop       TeleShop       e-Shop         TeleShop      
## [22381] TeleShop       MBR            TeleShop       e-Shop        
## [22385] e-Shop         e-Shop         e-Shop         TeleShop      
## [22389] MBR            TeleShop       MBR            TeleShop      
## [22393] MBR            TeleShop       TeleShop       MBR           
## [22397] MBR            MBR            MBR            MBR           
## [22401] MBR            Flagship store Flagship store Flagship store
## [22405] Flagship store Flagship store e-Shop         e-Shop        
## [22409] e-Shop         e-Shop         e-Shop         TeleShop      
## [22413] TeleShop       TeleShop       TeleShop       TeleShop      
## [22417] e-Shop         e-Shop         e-Shop         e-Shop        
## [22421] e-Shop         e-Shop         e-Shop         e-Shop        
## [22425] e-Shop         e-Shop         e-Shop         e-Shop        
## [22429] TeleShop       TeleShop       TeleShop       TeleShop      
## [22433] TeleShop       TeleShop       Flagship store TeleShop      
## [22437] TeleShop       Flagship store TeleShop       Flagship store
## [22441] TeleShop       e-Shop         e-Shop         e-Shop        
## [22445] e-Shop         e-Shop         Flagship store e-Shop        
## [22449] Flagship store Flagship store Flagship store TeleShop      
## [22453] e-Shop         Flagship store Flagship store Flagship store
## [22457] Flagship store Flagship store e-Shop         Flagship store
## [22461] Flagship store e-Shop         Flagship store Flagship store
## [22465] e-Shop         TeleShop       e-Shop         TeleShop      
## [22469] Flagship store Flagship store Flagship store Flagship store
## [22473] Flagship store e-Shop         Flagship store e-Shop        
## [22477] Flagship store Flagship store MBR            MBR           
## [22481] MBR            MBR            e-Shop         e-Shop        
## [22485] e-Shop         e-Shop         MBR            e-Shop        
## [22489] e-Shop         Flagship store Flagship store e-Shop        
## [22493] MBR            MBR            Flagship store MBR           
## [22497] MBR            e-Shop         e-Shop         TeleShop      
## [22501] e-Shop         e-Shop         e-Shop         TeleShop      
## [22505] TeleShop       e-Shop         Flagship store Flagship store
## [22509] Flagship store Flagship store TeleShop       e-Shop        
## [22513] e-Shop         e-Shop         e-Shop         e-Shop        
## [22517] MBR            e-Shop         MBR            MBR           
## [22521] e-Shop         e-Shop         e-Shop         TeleShop      
## [22525] e-Shop         TeleShop       e-Shop         TeleShop      
## [22529] Flagship store Flagship store MBR            Flagship store
## [22533] Flagship store MBR            e-Shop         e-Shop        
## [22537] e-Shop         e-Shop         e-Shop         e-Shop        
## [22541] MBR            MBR            MBR            MBR           
## [22545] MBR            TeleShop       Flagship store Flagship store
## [22549] TeleShop       Flagship store Flagship store Flagship store
## [22553] TeleShop       Flagship store TeleShop       Flagship store
## [22557] e-Shop         e-Shop         e-Shop         e-Shop        
## [22561] e-Shop         e-Shop         Flagship store MBR           
## [22565] Flagship store MBR            Flagship store MBR           
## [22569] MBR            Flagship store Flagship store Flagship store
## [22573] Flagship store Flagship store e-Shop         e-Shop        
## [22577] TeleShop       TeleShop       TeleShop       TeleShop      
## [22581] TeleShop       TeleShop       e-Shop         e-Shop        
## [22585] e-Shop         e-Shop         e-Shop         e-Shop        
## [22589] Flagship store TeleShop       TeleShop       TeleShop      
## [22593] Flagship store e-Shop         e-Shop         TeleShop      
## [22597] TeleShop       TeleShop       e-Shop         TeleShop      
## [22601] TeleShop       TeleShop       MBR            MBR           
## [22605] MBR            e-Shop         e-Shop         TeleShop      
## [22609] TeleShop       Flagship store e-Shop         TeleShop      
## [22613] Flagship store Flagship store Flagship store TeleShop      
## [22617] TeleShop       MBR            e-Shop         MBR           
## [22621] MBR            e-Shop         e-Shop         MBR           
## [22625] e-Shop         MBR            MBR            e-Shop        
## [22629] e-Shop         e-Shop         e-Shop         e-Shop        
## [22633] e-Shop         MBR            e-Shop         MBR           
## [22637] MBR            e-Shop         e-Shop         MBR           
## [22641] e-Shop         e-Shop         e-Shop         e-Shop        
## [22645] e-Shop         e-Shop         e-Shop         TeleShop      
## [22649] Flagship store TeleShop       Flagship store TeleShop      
## [22653] TeleShop       TeleShop       TeleShop       TeleShop      
## [22657] TeleShop       Flagship store TeleShop       TeleShop      
## [22661] TeleShop       TeleShop       TeleShop       TeleShop      
## [22665] TeleShop       TeleShop       e-Shop         e-Shop        
## [22669] TeleShop       TeleShop       TeleShop       e-Shop        
## [22673] TeleShop       e-Shop         TeleShop       MBR           
## [22677] MBR            TeleShop       MBR            e-Shop        
## [22681] TeleShop       TeleShop       TeleShop       Flagship store
## [22685] Flagship store Flagship store Flagship store e-Shop        
## [22689] e-Shop         e-Shop         e-Shop         e-Shop        
## [22693] TeleShop       e-Shop         TeleShop       e-Shop        
## [22697] e-Shop         e-Shop         e-Shop         TeleShop      
## [22701] TeleShop       TeleShop       MBR            MBR           
## [22705] e-Shop         MBR            e-Shop         MBR           
## [22709] MBR            e-Shop         e-Shop         MBR           
## [22713] e-Shop         Flagship store Flagship store Flagship store
## [22717] MBR            TeleShop       TeleShop       MBR           
## [22721] MBR            e-Shop         Flagship store MBR           
## [22725] e-Shop         e-Shop         Flagship store MBR           
## [22729] MBR            e-Shop         e-Shop         e-Shop        
## [22733] e-Shop         e-Shop         TeleShop       TeleShop      
## [22737] TeleShop       TeleShop       TeleShop       TeleShop      
## [22741] TeleShop       TeleShop       TeleShop       TeleShop      
## [22745] TeleShop       TeleShop       e-Shop         e-Shop        
## [22749] Flagship store e-Shop         Flagship store e-Shop        
## [22753] e-Shop         e-Shop         e-Shop         e-Shop        
## [22757] e-Shop         e-Shop         e-Shop         e-Shop        
## [22761] e-Shop         e-Shop         Flagship store MBR           
## [22765] MBR            MBR            MBR            Flagship store
## [22769] Flagship store TeleShop       MBR            MBR           
## [22773] Flagship store TeleShop       Flagship store Flagship store
## [22777] TeleShop       TeleShop       TeleShop       TeleShop      
## [22781] TeleShop       TeleShop       e-Shop         e-Shop        
## [22785] TeleShop       TeleShop       MBR            e-Shop        
## [22789] e-Shop         MBR            e-Shop         TeleShop      
## [22793] e-Shop         MBR            e-Shop         MBR           
## [22797] e-Shop         e-Shop         e-Shop         e-Shop        
## [22801] e-Shop         e-Shop         e-Shop         Flagship store
## [22805] Flagship store Flagship store MBR            MBR           
## [22809] MBR            Flagship store MBR            Flagship store
## [22813] MBR            Flagship store Flagship store Flagship store
## [22817] Flagship store Flagship store Flagship store e-Shop        
## [22821] Flagship store Flagship store Flagship store Flagship store
## [22825] Flagship store Flagship store e-Shop         Flagship store
## [22829] e-Shop         TeleShop       e-Shop         e-Shop        
## [22833] e-Shop         e-Shop         TeleShop       TeleShop      
## [22837] TeleShop       TeleShop       e-Shop         TeleShop      
## [22841] e-Shop         TeleShop       e-Shop         e-Shop        
## [22845] e-Shop         TeleShop       TeleShop       TeleShop      
## [22849] TeleShop       e-Shop         TeleShop       e-Shop        
## [22853] MBR            MBR            MBR            MBR           
## [22857] MBR            TeleShop       TeleShop       e-Shop        
## [22861] e-Shop         TeleShop       TeleShop       e-Shop        
## [22865] e-Shop         e-Shop         TeleShop       e-Shop        
## [22869] e-Shop         e-Shop         e-Shop         e-Shop        
## [22873] e-Shop         e-Shop         e-Shop         e-Shop        
## [22877] e-Shop         e-Shop         e-Shop         e-Shop        
## [22881] e-Shop         e-Shop         e-Shop         e-Shop        
## [22885] e-Shop         e-Shop         e-Shop         e-Shop        
## [22889] MBR            Flagship store MBR            Flagship store
## [22893] MBR            e-Shop         e-Shop         e-Shop        
## [22897] e-Shop         e-Shop         Flagship store MBR           
## [22901] Flagship store MBR            MBR            Flagship store
## [22905] MBR            MBR            MBR            MBR           
## [22909] MBR            e-Shop         Flagship store Flagship store
## [22913] e-Shop         MBR            MBR            MBR           
## [22917] MBR            MBR            MBR            Flagship store
## [22921] e-Shop         e-Shop         e-Shop         e-Shop        
## [22925] e-Shop         e-Shop         e-Shop         e-Shop        
## [22929] e-Shop         e-Shop         e-Shop         e-Shop        
## [22933] e-Shop         e-Shop         e-Shop         e-Shop        
## [22937] e-Shop         e-Shop         e-Shop         TeleShop      
## [22941] TeleShop       e-Shop         e-Shop         e-Shop        
## [22945] e-Shop         TeleShop       TeleShop       e-Shop        
## [22949] TeleShop       e-Shop         e-Shop         MBR           
## [22953] TeleShop       MBR            MBR            e-Shop        
## [22957] e-Shop         e-Shop         Flagship store TeleShop      
## [22961] Flagship store TeleShop       e-Shop         e-Shop        
## [22965] e-Shop         e-Shop         e-Shop         e-Shop        
## [22969] e-Shop         e-Shop         e-Shop         e-Shop        
## [22973] e-Shop         e-Shop         e-Shop         e-Shop        
## [22977] TeleShop       TeleShop       TeleShop       Flagship store
## [22981] Flagship store Flagship store Flagship store Flagship store
## [22985] e-Shop         e-Shop         e-Shop         e-Shop        
## [22989] TeleShop       TeleShop       TeleShop       TeleShop      
## [22993] TeleShop       e-Shop         MBR            MBR           
## [22997] e-Shop         e-Shop         MBR            MBR           
## [23001] MBR            MBR            e-Shop         TeleShop      
## [23005] TeleShop       e-Shop         e-Shop         TeleShop      
## [23009] e-Shop         e-Shop         e-Shop         MBR           
## [23013] MBR            MBR            MBR            MBR           
## [23017] MBR            e-Shop         MBR            MBR           
## [23021] MBR            MBR            MBR            MBR           
## [23025] e-Shop         e-Shop         TeleShop       e-Shop        
## [23029] e-Shop         MBR            e-Shop         e-Shop        
## [23033] TeleShop       Flagship store MBR            TeleShop      
## [23037] MBR            MBR            Flagship store MBR           
## [23041] MBR            Flagship store e-Shop         TeleShop      
## [23045] TeleShop       TeleShop       Flagship store TeleShop      
## [23049] TeleShop       TeleShop       TeleShop       TeleShop      
## [23053] TeleShop       TeleShop       e-Shop         Flagship store
## [23057] Flagship store Flagship store Flagship store Flagship store
## [23061] e-Shop         e-Shop         e-Shop         e-Shop        
## [23065] e-Shop         e-Shop         e-Shop         e-Shop        
## [23069] Flagship store Flagship store Flagship store MBR           
## [23073] MBR            MBR            e-Shop         TeleShop      
## [23077] TeleShop       MBR            TeleShop       TeleShop      
## [23081] MBR            e-Shop         MBR            MBR           
## [23085] e-Shop         e-Shop         e-Shop         e-Shop        
## [23089] e-Shop         e-Shop         e-Shop         e-Shop        
## [23093] e-Shop         e-Shop         e-Shop         e-Shop        
## [23097] MBR            e-Shop         e-Shop         e-Shop        
## [23101] e-Shop         MBR            MBR            e-Shop        
## [23105] MBR            MBR            MBR            MBR           
## [23109] MBR            MBR            MBR            MBR           
## [23113] MBR            MBR            MBR            MBR           
## [23117] MBR            MBR            MBR            Flagship store
## [23121] MBR            MBR            e-Shop         e-Shop        
## [23125] e-Shop         e-Shop         TeleShop       e-Shop        
## [23129] Flagship store TeleShop       e-Shop         e-Shop        
## [23133] e-Shop         TeleShop       e-Shop         e-Shop        
## [23137] e-Shop         e-Shop         MBR            MBR           
## [23141] MBR            e-Shop         e-Shop         e-Shop        
## [23145] Flagship store e-Shop         TeleShop       TeleShop      
## [23149] Flagship store Flagship store TeleShop       TeleShop      
## [23153] TeleShop       TeleShop       TeleShop       TeleShop      
## [23157] e-Shop         Flagship store Flagship store MBR           
## [23161] e-Shop         MBR            e-Shop         e-Shop        
## [23165] MBR            e-Shop         MBR            MBR           
## [23169] e-Shop         e-Shop         MBR            e-Shop        
## [23173] MBR            e-Shop         MBR            MBR           
## [23177] TeleShop       MBR            MBR            MBR           
## [23181] TeleShop       TeleShop       TeleShop       TeleShop      
## [23185] MBR            e-Shop         TeleShop       e-Shop        
## [23189] e-Shop         TeleShop       MBR            e-Shop        
## [23193] MBR            MBR            MBR            e-Shop        
## [23197] e-Shop         e-Shop         MBR            Flagship store
## [23201] MBR            MBR            e-Shop         Flagship store
## [23205] MBR            e-Shop         MBR            e-Shop        
## [23209] e-Shop         e-Shop         e-Shop         MBR           
## [23213] e-Shop         e-Shop         e-Shop         MBR           
## [23217] e-Shop         TeleShop       e-Shop         Flagship store
## [23221] TeleShop       TeleShop       e-Shop         TeleShop      
## [23225] Flagship store TeleShop       Flagship store Flagship store
## [23229] e-Shop         Flagship store e-Shop         e-Shop        
## [23233] e-Shop         e-Shop         e-Shop         e-Shop        
## [23237] MBR            e-Shop         e-Shop         e-Shop        
## [23241] e-Shop         e-Shop         e-Shop         MBR           
## [23245] MBR            e-Shop         MBR            MBR           
## [23249] e-Shop         e-Shop         e-Shop         e-Shop        
## [23253] e-Shop         Flagship store TeleShop       TeleShop      
## [23257] TeleShop       TeleShop       e-Shop         Flagship store
## [23261] e-Shop         Flagship store Flagship store TeleShop      
## [23265] TeleShop       Flagship store e-Shop         Flagship store
## [23269] Flagship store e-Shop         e-Shop         Flagship store
## [23273] e-Shop         e-Shop         e-Shop         e-Shop        
## [23277] e-Shop         e-Shop         Flagship store TeleShop      
## [23281] TeleShop       TeleShop       TeleShop       e-Shop        
## [23285] e-Shop         TeleShop       e-Shop         TeleShop      
## [23289] e-Shop         e-Shop         Flagship store Flagship store
## [23293] e-Shop         Flagship store e-Shop         e-Shop        
## [23297] e-Shop         Flagship store e-Shop         Flagship store
## [23301] Flagship store Flagship store TeleShop       e-Shop        
## [23305] Flagship store Flagship store TeleShop       Flagship store
## [23309] Flagship store TeleShop       Flagship store e-Shop        
## [23313] Flagship store MBR            MBR            MBR           
## [23317] MBR            MBR            MBR            Flagship store
## [23321] MBR            Flagship store Flagship store MBR           
## [23325] MBR            Flagship store e-Shop         Flagship store
## [23329] e-Shop         e-Shop         Flagship store Flagship store
## [23333] e-Shop         Flagship store Flagship store Flagship store
## [23337] Flagship store MBR            Flagship store MBR           
## [23341] TeleShop       MBR            Flagship store TeleShop      
## [23345] e-Shop         TeleShop       TeleShop       Flagship store
## [23349] Flagship store MBR            MBR            MBR           
## [23353] MBR            TeleShop       e-Shop         MBR           
## [23357] TeleShop       e-Shop         e-Shop         e-Shop        
## [23361] TeleShop       MBR            e-Shop         Flagship store
## [23365] Flagship store TeleShop       MBR            TeleShop      
## [23369] TeleShop       Flagship store e-Shop         Flagship store
## [23373] Flagship store Flagship store Flagship store Flagship store
## [23377] Flagship store TeleShop       e-Shop         e-Shop        
## [23381] e-Shop         e-Shop         e-Shop         e-Shop        
## [23385] TeleShop       e-Shop         e-Shop         e-Shop        
## [23389] e-Shop         e-Shop         e-Shop         e-Shop        
## [23393] e-Shop         e-Shop         e-Shop         TeleShop      
## [23397] TeleShop       e-Shop         e-Shop         MBR           
## [23401] e-Shop         e-Shop         e-Shop         MBR           
## [23405] MBR            Flagship store MBR            Flagship store
## [23409] MBR            MBR            Flagship store Flagship store
## [23413] Flagship store Flagship store Flagship store Flagship store
## [23417] Flagship store MBR            e-Shop         MBR           
## [23421] MBR            MBR            Flagship store MBR           
## [23425] Flagship store MBR            e-Shop         e-Shop        
## [23429] Flagship store Flagship store TeleShop       TeleShop      
## [23433] TeleShop       TeleShop       TeleShop       Flagship store
## [23437] TeleShop       TeleShop       Flagship store Flagship store
## [23441] Flagship store TeleShop       Flagship store TeleShop      
## [23445] MBR            e-Shop         Flagship store TeleShop      
## [23449] Flagship store MBR            e-Shop         TeleShop      
## [23453] MBR            e-Shop         e-Shop         Flagship store
## [23457] e-Shop         e-Shop         MBR            MBR           
## [23461] MBR            e-Shop         Flagship store Flagship store
## [23465] Flagship store Flagship store TeleShop       e-Shop        
## [23469] e-Shop         TeleShop       e-Shop         e-Shop        
## [23473] e-Shop         e-Shop         Flagship store e-Shop        
## [23477] TeleShop       e-Shop         TeleShop       TeleShop      
## [23481] Flagship store e-Shop         TeleShop       e-Shop        
## [23485] e-Shop         e-Shop         e-Shop         TeleShop      
## [23489] TeleShop       TeleShop       TeleShop       e-Shop        
## [23493] Flagship store Flagship store Flagship store e-Shop        
## [23497] Flagship store Flagship store e-Shop         e-Shop        
## [23501] e-Shop         e-Shop         e-Shop         e-Shop        
## [23505] e-Shop         e-Shop         e-Shop         e-Shop        
## [23509] TeleShop       TeleShop       e-Shop         TeleShop      
## [23513] e-Shop         TeleShop       TeleShop       TeleShop      
## [23517] e-Shop         TeleShop       TeleShop       TeleShop      
## [23521] e-Shop         TeleShop       e-Shop         TeleShop      
## [23525] e-Shop         MBR            MBR            e-Shop        
## [23529] MBR            e-Shop         TeleShop       TeleShop      
## [23533] TeleShop       TeleShop       TeleShop       TeleShop      
## [23537] TeleShop       TeleShop       TeleShop       TeleShop      
## [23541] TeleShop       TeleShop       TeleShop       MBR           
## [23545] MBR            MBR            MBR            MBR           
## [23549] e-Shop         e-Shop         MBR            MBR           
## [23553] MBR            e-Shop         e-Shop         MBR           
## [23557] MBR            MBR            e-Shop         MBR           
## [23561] e-Shop         e-Shop         e-Shop         Flagship store
## [23565] Flagship store Flagship store Flagship store Flagship store
## [23569] Flagship store Flagship store Flagship store Flagship store
## [23573] Flagship store TeleShop       TeleShop       TeleShop      
## [23577] TeleShop       TeleShop       TeleShop       TeleShop      
## [23581] TeleShop       e-Shop         e-Shop         e-Shop        
## [23585] e-Shop         e-Shop         e-Shop         e-Shop        
## [23589] e-Shop         e-Shop         Flagship store Flagship store
## [23593] Flagship store Flagship store Flagship store e-Shop        
## [23597] e-Shop         e-Shop         Flagship store e-Shop        
## [23601] e-Shop         TeleShop       TeleShop       TeleShop      
## [23605] TeleShop       TeleShop       e-Shop         e-Shop        
## [23609] e-Shop         e-Shop         TeleShop       e-Shop        
## [23613] e-Shop         MBR            Flagship store e-Shop        
## [23617] MBR            e-Shop         e-Shop         Flagship store
## [23621] Flagship store e-Shop         e-Shop         Flagship store
## [23625] MBR            e-Shop         Flagship store e-Shop        
## [23629] e-Shop         e-Shop         TeleShop       e-Shop        
## [23633] e-Shop         TeleShop       TeleShop       TeleShop      
## [23637] e-Shop         e-Shop         e-Shop         e-Shop        
## [23641] TeleShop       e-Shop         TeleShop       TeleShop      
## [23645] Flagship store e-Shop         e-Shop         e-Shop        
## [23649] Flagship store e-Shop         e-Shop         Flagship store
## [23653] e-Shop         Flagship store e-Shop         e-Shop        
## [23657] Flagship store e-Shop         Flagship store e-Shop        
## [23661] Flagship store e-Shop         e-Shop         e-Shop        
## [23665] TeleShop       e-Shop         Flagship store Flagship store
## [23669] Flagship store TeleShop       Flagship store TeleShop      
## [23673] TeleShop       TeleShop       e-Shop         TeleShop      
## [23677] Flagship store e-Shop         TeleShop       TeleShop      
## [23681] e-Shop         e-Shop         TeleShop       MBR           
## [23685] Flagship store TeleShop       TeleShop       MBR           
## [23689] Flagship store Flagship store TeleShop       Flagship store
## [23693] MBR            MBR            TeleShop       Flagship store
## [23697] MBR            MBR            Flagship store TeleShop      
## [23701] e-Shop         TeleShop       TeleShop       e-Shop        
## [23705] e-Shop         e-Shop         TeleShop       e-Shop        
## [23709] e-Shop         TeleShop       e-Shop         e-Shop        
## [23713] e-Shop         e-Shop         e-Shop         e-Shop        
## [23717] e-Shop         e-Shop         Flagship store Flagship store
## [23721] Flagship store Flagship store Flagship store MBR           
## [23725] MBR            MBR            MBR            MBR           
## [23729] e-Shop         e-Shop         e-Shop         e-Shop        
## [23733] Flagship store Flagship store Flagship store Flagship store
## [23737] TeleShop       Flagship store TeleShop       MBR           
## [23741] Flagship store MBR            e-Shop         Flagship store
## [23745] Flagship store e-Shop         Flagship store e-Shop        
## [23749] e-Shop         e-Shop         e-Shop         e-Shop        
## [23753] e-Shop         e-Shop         e-Shop         e-Shop        
## [23757] e-Shop         Flagship store Flagship store Flagship store
## [23761] Flagship store Flagship store Flagship store e-Shop        
## [23765] e-Shop         e-Shop         e-Shop         e-Shop        
## [23769] e-Shop         e-Shop         e-Shop         e-Shop        
## [23773] e-Shop         e-Shop         e-Shop         e-Shop        
## [23777] e-Shop         e-Shop         TeleShop       Flagship store
## [23781] Flagship store TeleShop       TeleShop       TeleShop      
## [23785] TeleShop       TeleShop       TeleShop       TeleShop      
## [23789] Flagship store Flagship store TeleShop       Flagship store
## [23793] TeleShop       e-Shop         e-Shop         e-Shop        
## [23797] Flagship store Flagship store TeleShop       TeleShop      
## [23801] e-Shop         TeleShop       TeleShop       e-Shop        
## [23805] TeleShop       e-Shop         e-Shop         TeleShop      
## [23809] e-Shop         e-Shop         Flagship store e-Shop        
## [23813] Flagship store Flagship store Flagship store Flagship store
## [23817] Flagship store Flagship store e-Shop         Flagship store
## [23821] e-Shop         MBR            MBR            e-Shop        
## [23825] e-Shop         e-Shop         e-Shop         e-Shop        
## [23829] e-Shop         e-Shop         e-Shop         e-Shop        
## [23833] e-Shop         e-Shop         Flagship store e-Shop        
## [23837] MBR            e-Shop         MBR            MBR           
## [23841] MBR            e-Shop         MBR            Flagship store
## [23845] Flagship store Flagship store TeleShop       MBR           
## [23849] MBR            MBR            TeleShop       MBR           
## [23853] MBR            MBR            MBR            MBR           
## [23857] MBR            Flagship store MBR            TeleShop      
## [23861] MBR            MBR            TeleShop       TeleShop      
## [23865] Flagship store MBR            TeleShop       MBR           
## [23869] MBR            MBR            MBR            TeleShop      
## [23873] Flagship store Flagship store Flagship store MBR           
## [23877] MBR            e-Shop         e-Shop         Flagship store
## [23881] MBR            Flagship store MBR            Flagship store
## [23885] MBR            Flagship store Flagship store Flagship store
## [23889] e-Shop         e-Shop         TeleShop       Flagship store
## [23893] TeleShop       TeleShop       e-Shop         TeleShop      
## [23897] TeleShop       Flagship store Flagship store MBR           
## [23901] MBR            MBR            MBR            Flagship store
## [23905] Flagship store e-Shop         e-Shop         e-Shop        
## [23909] e-Shop         e-Shop         e-Shop         e-Shop        
## [23913] e-Shop         e-Shop         e-Shop         e-Shop        
## [23917] e-Shop         e-Shop         Flagship store e-Shop        
## [23921] e-Shop         Flagship store e-Shop         e-Shop        
## [23925] MBR            e-Shop         e-Shop         e-Shop        
## [23929] e-Shop         e-Shop         e-Shop         e-Shop        
## [23933] MBR            e-Shop         e-Shop         TeleShop      
## [23937] Flagship store Flagship store Flagship store TeleShop      
## [23941] MBR            MBR            TeleShop       MBR           
## [23945] MBR            TeleShop       TeleShop       TeleShop      
## [23949] TeleShop       TeleShop       TeleShop       TeleShop      
## [23953] TeleShop       TeleShop       TeleShop       TeleShop      
## [23957] TeleShop       TeleShop       TeleShop       TeleShop      
## [23961] TeleShop       TeleShop       TeleShop       Flagship store
## [23965] Flagship store e-Shop         Flagship store e-Shop        
## [23969] TeleShop       Flagship store Flagship store TeleShop      
## [23973] e-Shop         TeleShop       MBR            MBR           
## [23977] MBR            TeleShop       TeleShop       e-Shop        
## [23981] TeleShop       MBR            TeleShop       TeleShop      
## [23985] TeleShop       TeleShop       TeleShop       MBR           
## [23989] TeleShop       TeleShop       TeleShop       TeleShop      
## [23993] TeleShop       TeleShop       TeleShop       TeleShop      
## [23997] Flagship store Flagship store e-Shop         e-Shop        
## [24001] e-Shop         e-Shop         e-Shop         e-Shop        
## [24005] Flagship store e-Shop         e-Shop         e-Shop        
## [24009] e-Shop         Flagship store Flagship store Flagship store
## [24013] Flagship store Flagship store Flagship store e-Shop        
## [24017] e-Shop         Flagship store Flagship store MBR           
## [24021] MBR            MBR            Flagship store MBR           
## [24025] MBR            Flagship store Flagship store MBR           
## [24029] MBR            TeleShop       e-Shop         TeleShop      
## [24033] MBR            e-Shop         MBR            e-Shop        
## [24037] MBR            TeleShop       TeleShop       MBR           
## [24041] MBR            MBR            e-Shop         e-Shop        
## [24045] e-Shop         e-Shop         e-Shop         e-Shop        
## [24049] e-Shop         e-Shop         e-Shop         e-Shop        
## [24053] e-Shop         e-Shop         e-Shop         e-Shop        
## [24057] e-Shop         e-Shop         e-Shop         e-Shop        
## [24061] Flagship store e-Shop         e-Shop         e-Shop        
## [24065] Flagship store e-Shop         e-Shop         e-Shop        
## [24069] MBR            Flagship store Flagship store e-Shop        
## [24073] Flagship store Flagship store Flagship store MBR           
## [24077] Flagship store e-Shop         Flagship store MBR           
## [24081] Flagship store MBR            MBR            MBR           
## [24085] MBR            e-Shop         MBR            TeleShop      
## [24089] MBR            TeleShop       MBR            MBR           
## [24093] e-Shop         TeleShop       MBR            TeleShop      
## [24097] e-Shop         e-Shop         TeleShop       e-Shop        
## [24101] TeleShop       e-Shop         TeleShop       MBR           
## [24105] TeleShop       e-Shop         e-Shop         e-Shop        
## [24109] e-Shop         e-Shop         TeleShop       Flagship store
## [24113] Flagship store Flagship store Flagship store MBR           
## [24117] Flagship store MBR            MBR            MBR           
## [24121] Flagship store MBR            Flagship store e-Shop        
## [24125] Flagship store MBR            e-Shop         e-Shop        
## [24129] e-Shop         MBR            e-Shop         MBR           
## [24133] MBR            e-Shop         Flagship store MBR           
## [24137] e-Shop         e-Shop         e-Shop         e-Shop        
## [24141] e-Shop         e-Shop         e-Shop         e-Shop        
## [24145] e-Shop         e-Shop         e-Shop         e-Shop        
## [24149] e-Shop         e-Shop         e-Shop         e-Shop        
## [24153] e-Shop         Flagship store e-Shop         Flagship store
## [24157] MBR            MBR            TeleShop       TeleShop      
## [24161] TeleShop       TeleShop       MBR            TeleShop      
## [24165] e-Shop         e-Shop         e-Shop         e-Shop        
## [24169] MBR            MBR            MBR            e-Shop        
## [24173] MBR            e-Shop         e-Shop         e-Shop        
## [24177] MBR            e-Shop         e-Shop         Flagship store
## [24181] Flagship store e-Shop         e-Shop         e-Shop        
## [24185] e-Shop         e-Shop         Flagship store Flagship store
## [24189] e-Shop         Flagship store MBR            MBR           
## [24193] e-Shop         e-Shop         TeleShop       TeleShop      
## [24197] e-Shop         TeleShop       e-Shop         e-Shop        
## [24201] MBR            e-Shop         e-Shop         e-Shop        
## [24205] e-Shop         MBR            e-Shop         MBR           
## [24209] MBR            e-Shop         e-Shop         MBR           
## [24213] e-Shop         TeleShop       TeleShop       e-Shop        
## [24217] TeleShop       e-Shop         TeleShop       e-Shop        
## [24221] TeleShop       e-Shop         e-Shop         e-Shop        
## [24225] e-Shop         e-Shop         e-Shop         e-Shop        
## [24229] e-Shop         e-Shop         e-Shop         e-Shop        
## [24233] e-Shop         Flagship store MBR            MBR           
## [24237] TeleShop       Flagship store Flagship store e-Shop        
## [24241] e-Shop         e-Shop         e-Shop         Flagship store
## [24245] TeleShop       e-Shop         e-Shop         e-Shop        
## [24249] e-Shop         e-Shop         e-Shop         TeleShop      
## [24253] e-Shop         TeleShop       Flagship store Flagship store
## [24257] e-Shop         TeleShop       Flagship store Flagship store
## [24261] Flagship store TeleShop       TeleShop       Flagship store
## [24265] Flagship store e-Shop         Flagship store TeleShop      
## [24269] TeleShop       e-Shop         Flagship store TeleShop      
## [24273] e-Shop         TeleShop       e-Shop         e-Shop        
## [24277] e-Shop         TeleShop       Flagship store Flagship store
## [24281] Flagship store Flagship store Flagship store TeleShop      
## [24285] TeleShop       TeleShop       TeleShop       TeleShop      
## [24289] TeleShop       TeleShop       TeleShop       TeleShop      
## [24293] TeleShop       TeleShop       e-Shop         e-Shop        
## [24297] Flagship store Flagship store Flagship store e-Shop        
## [24301] e-Shop         e-Shop         e-Shop         Flagship store
## [24305] Flagship store Flagship store e-Shop         e-Shop        
## [24309] Flagship store e-Shop         MBR            MBR           
## [24313] MBR            Flagship store e-Shop         e-Shop        
## [24317] e-Shop         e-Shop         Flagship store e-Shop        
## [24321] Flagship store MBR            Flagship store Flagship store
## [24325] Flagship store e-Shop         e-Shop         Flagship store
## [24329] Flagship store MBR            e-Shop         e-Shop        
## [24333] Flagship store e-Shop         e-Shop         e-Shop        
## [24337] e-Shop         e-Shop         Flagship store e-Shop        
## [24341] e-Shop         e-Shop         e-Shop         Flagship store
## [24345] e-Shop         TeleShop       TeleShop       TeleShop      
## [24349] e-Shop         e-Shop         MBR            MBR           
## [24353] MBR            e-Shop         MBR            TeleShop      
## [24357] TeleShop       TeleShop       TeleShop       TeleShop      
## [24361] e-Shop         e-Shop         e-Shop         MBR           
## [24365] e-Shop         e-Shop         MBR            e-Shop        
## [24369] MBR            e-Shop         MBR            MBR           
## [24373] e-Shop         MBR            MBR            MBR           
## [24377] e-Shop         MBR            TeleShop       Flagship store
## [24381] TeleShop       TeleShop       TeleShop       Flagship store
## [24385] TeleShop       TeleShop       TeleShop       TeleShop      
## [24389] MBR            Flagship store MBR            Flagship store
## [24393] MBR            MBR            MBR            MBR           
## [24397] e-Shop         e-Shop         MBR            e-Shop        
## [24401] e-Shop         MBR            MBR            MBR           
## [24405] e-Shop         e-Shop         MBR            e-Shop        
## [24409] e-Shop         e-Shop         TeleShop       TeleShop      
## [24413] TeleShop       TeleShop       TeleShop       Flagship store
## [24417] Flagship store Flagship store Flagship store TeleShop      
## [24421] Flagship store TeleShop       e-Shop         e-Shop        
## [24425] e-Shop         e-Shop         e-Shop         TeleShop      
## [24429] TeleShop       TeleShop       TeleShop       TeleShop      
## [24433] Flagship store Flagship store Flagship store Flagship store
## [24437] TeleShop       Flagship store Flagship store e-Shop        
## [24441] e-Shop         e-Shop         e-Shop         e-Shop        
## [24445] e-Shop         e-Shop         e-Shop         e-Shop        
## [24449] e-Shop         e-Shop         e-Shop         e-Shop        
## [24453] e-Shop         e-Shop         e-Shop         e-Shop        
## [24457] e-Shop         e-Shop         MBR            MBR           
## [24461] MBR            MBR            MBR            e-Shop        
## [24465] MBR            e-Shop         e-Shop         e-Shop        
## [24469] e-Shop         MBR            MBR            e-Shop        
## [24473] e-Shop         e-Shop         MBR            TeleShop      
## [24477] TeleShop       MBR            TeleShop       TeleShop      
## [24481] Flagship store Flagship store Flagship store Flagship store
## [24485] Flagship store Flagship store Flagship store Flagship store
## [24489] Flagship store e-Shop         e-Shop         e-Shop        
## [24493] e-Shop         e-Shop         e-Shop         Flagship store
## [24497] Flagship store e-Shop         e-Shop         e-Shop        
## [24501] e-Shop         e-Shop         e-Shop         MBR           
## [24505] MBR            e-Shop         e-Shop         e-Shop        
## [24509] e-Shop         e-Shop         MBR            TeleShop      
## [24513] TeleShop       e-Shop         TeleShop       e-Shop        
## [24517] TeleShop       TeleShop       TeleShop       TeleShop      
## [24521] TeleShop       MBR            MBR            MBR           
## [24525] MBR            MBR            e-Shop         MBR           
## [24529] e-Shop         e-Shop         e-Shop         e-Shop        
## [24533] MBR            e-Shop         TeleShop       TeleShop      
## [24537] TeleShop       TeleShop       TeleShop       Flagship store
## [24541] Flagship store TeleShop       e-Shop         e-Shop        
## [24545] e-Shop         e-Shop         e-Shop         e-Shop        
## [24549] e-Shop         e-Shop         e-Shop         e-Shop        
## [24553] e-Shop         e-Shop         e-Shop         e-Shop        
## [24557] e-Shop         e-Shop         e-Shop         e-Shop        
## [24561] e-Shop         MBR            MBR            MBR           
## [24565] MBR            MBR            TeleShop       TeleShop      
## [24569] TeleShop       TeleShop       MBR            MBR           
## [24573] e-Shop         e-Shop         e-Shop         MBR           
## [24577] e-Shop         MBR            e-Shop         MBR           
## [24581] MBR            e-Shop         MBR            e-Shop        
## [24585] e-Shop         e-Shop         e-Shop         e-Shop        
## [24589] e-Shop         MBR            e-Shop         e-Shop        
## [24593] e-Shop         e-Shop         MBR            e-Shop        
## [24597] e-Shop         e-Shop         e-Shop         e-Shop        
## [24601] e-Shop         e-Shop         e-Shop         e-Shop        
## [24605] Flagship store Flagship store Flagship store Flagship store
## [24609] Flagship store Flagship store Flagship store Flagship store
## [24613] Flagship store MBR            MBR            Flagship store
## [24617] Flagship store Flagship store Flagship store Flagship store
## [24621] MBR            TeleShop       TeleShop       TeleShop      
## [24625] Flagship store Flagship store Flagship store Flagship store
## [24629] TeleShop       Flagship store e-Shop         TeleShop      
## [24633] e-Shop         Flagship store MBR            e-Shop        
## [24637] e-Shop         e-Shop         e-Shop         MBR           
## [24641] e-Shop         MBR            e-Shop         MBR           
## [24645] TeleShop       TeleShop       MBR            TeleShop      
## [24649] MBR            e-Shop         e-Shop         e-Shop        
## [24653] e-Shop         MBR            MBR            e-Shop        
## [24657] TeleShop       e-Shop         e-Shop         e-Shop        
## [24661] e-Shop         e-Shop         TeleShop       e-Shop        
## [24665] TeleShop       TeleShop       TeleShop       TeleShop      
## [24669] TeleShop       TeleShop       Flagship store TeleShop      
## [24673] MBR            TeleShop       TeleShop       MBR           
## [24677] Flagship store TeleShop       MBR            e-Shop        
## [24681] Flagship store e-Shop         e-Shop         e-Shop        
## [24685] Flagship store Flagship store e-Shop         Flagship store
## [24689] Flagship store Flagship store MBR            MBR           
## [24693] MBR            MBR            MBR            MBR           
## [24697] TeleShop       TeleShop       TeleShop       e-Shop        
## [24701] e-Shop         MBR            MBR            e-Shop        
## [24705] e-Shop         MBR            MBR            MBR           
## [24709] e-Shop         e-Shop         e-Shop         MBR           
## [24713] MBR            MBR            MBR            MBR           
## [24717] e-Shop         e-Shop         MBR            MBR           
## [24721] Flagship store MBR            TeleShop       Flagship store
## [24725] Flagship store TeleShop       Flagship store e-Shop        
## [24729] e-Shop         Flagship store MBR            Flagship store
## [24733] TeleShop       e-Shop         Flagship store MBR           
## [24737] e-Shop         Flagship store TeleShop       e-Shop        
## [24741] Flagship store Flagship store Flagship store Flagship store
## [24745] TeleShop       e-Shop         e-Shop         TeleShop      
## [24749] e-Shop         TeleShop       TeleShop       TeleShop      
## [24753] Flagship store TeleShop       MBR            Flagship store
## [24757] TeleShop       MBR            TeleShop       Flagship store
## [24761] TeleShop       e-Shop         e-Shop         TeleShop      
## [24765] e-Shop         e-Shop         e-Shop         TeleShop      
## [24769] e-Shop         e-Shop         e-Shop         e-Shop        
## [24773] TeleShop       TeleShop       TeleShop       e-Shop        
## [24777] e-Shop         e-Shop         e-Shop         e-Shop        
## [24781] e-Shop         e-Shop         TeleShop       TeleShop      
## [24785] e-Shop         TeleShop       MBR            TeleShop      
## [24789] TeleShop       e-Shop         TeleShop       TeleShop      
## [24793] e-Shop         TeleShop       TeleShop       TeleShop      
## [24797] MBR            e-Shop         MBR            e-Shop        
## [24801] Flagship store e-Shop         Flagship store Flagship store
## [24805] e-Shop         e-Shop         TeleShop       e-Shop        
## [24809] e-Shop         e-Shop         e-Shop         e-Shop        
## [24813] e-Shop         e-Shop         e-Shop         TeleShop      
## [24817] e-Shop         e-Shop         e-Shop         e-Shop        
## [24821] e-Shop         TeleShop       e-Shop         e-Shop        
## [24825] Flagship store TeleShop       TeleShop       TeleShop      
## [24829] TeleShop       Flagship store TeleShop       TeleShop      
## [24833] TeleShop       MBR            MBR            MBR           
## [24837] MBR            MBR            e-Shop         e-Shop        
## [24841] e-Shop         e-Shop         Flagship store Flagship store
## [24845] Flagship store Flagship store Flagship store Flagship store
## [24849] Flagship store TeleShop       TeleShop       TeleShop      
## [24853] Flagship store Flagship store Flagship store Flagship store
## [24857] Flagship store Flagship store e-Shop         Flagship store
## [24861] Flagship store Flagship store Flagship store e-Shop        
## [24865] Flagship store Flagship store Flagship store Flagship store
## [24869] Flagship store e-Shop         e-Shop         e-Shop        
## [24873] e-Shop         Flagship store Flagship store Flagship store
## [24877] Flagship store e-Shop         Flagship store Flagship store
## [24881] Flagship store e-Shop         Flagship store Flagship store
## [24885] Flagship store Flagship store Flagship store TeleShop      
## [24889] Flagship store e-Shop         Flagship store TeleShop      
## [24893] Flagship store Flagship store Flagship store TeleShop      
## [24897] MBR            MBR            TeleShop       Flagship store
## [24901] TeleShop       TeleShop       TeleShop       MBR           
## [24905] Flagship store Flagship store MBR            MBR           
## [24909] e-Shop         Flagship store e-Shop         e-Shop        
## [24913] Flagship store Flagship store e-Shop         e-Shop        
## [24917] Flagship store Flagship store e-Shop         Flagship store
## [24921] Flagship store Flagship store Flagship store Flagship store
## [24925] e-Shop         e-Shop         e-Shop         e-Shop        
## [24929] Flagship store e-Shop         e-Shop         e-Shop        
## [24933] TeleShop       TeleShop       TeleShop       MBR           
## [24937] e-Shop         e-Shop         MBR            TeleShop      
## [24941] MBR            MBR            TeleShop       TeleShop      
## [24945] MBR            e-Shop         e-Shop         Flagship store
## [24949] Flagship store Flagship store TeleShop       TeleShop      
## [24953] TeleShop       TeleShop       Flagship store TeleShop      
## [24957] e-Shop         e-Shop         e-Shop         e-Shop        
## [24961] e-Shop         e-Shop         Flagship store Flagship store
## [24965] e-Shop         Flagship store Flagship store e-Shop        
## [24969] TeleShop       TeleShop       e-Shop         Flagship store
## [24973] TeleShop       e-Shop         e-Shop         e-Shop        
## [24977] e-Shop         MBR            e-Shop         e-Shop        
## [24981] e-Shop         MBR            e-Shop         MBR           
## [24985] e-Shop         MBR            MBR            e-Shop        
## [24989] e-Shop         MBR            MBR            e-Shop        
## [24993] e-Shop         Flagship store Flagship store e-Shop        
## [24997] e-Shop         e-Shop         e-Shop         e-Shop        
## [25001] MBR            e-Shop         e-Shop         e-Shop        
## [25005] e-Shop         e-Shop         MBR            e-Shop        
## [25009] e-Shop         e-Shop         e-Shop         e-Shop        
## [25013] MBR            e-Shop         e-Shop         TeleShop      
## [25017] MBR            TeleShop       MBR            TeleShop      
## [25021] TeleShop       MBR            Flagship store Flagship store
## [25025] Flagship store Flagship store e-Shop         e-Shop        
## [25029] e-Shop         e-Shop         e-Shop         e-Shop        
## [25033] Flagship store Flagship store MBR            Flagship store
## [25037] Flagship store TeleShop       TeleShop       TeleShop      
## [25041] TeleShop       MBR            TeleShop       TeleShop      
## [25045] MBR            Flagship store Flagship store MBR           
## [25049] MBR            TeleShop       TeleShop       TeleShop      
## [25053] TeleShop       TeleShop       MBR            MBR           
## [25057] e-Shop         MBR            e-Shop         MBR           
## [25061] MBR            MBR            e-Shop         e-Shop        
## [25065] MBR            MBR            TeleShop       e-Shop        
## [25069] e-Shop         TeleShop       MBR            TeleShop      
## [25073] e-Shop         TeleShop       Flagship store e-Shop        
## [25077] MBR            e-Shop         e-Shop         e-Shop        
## [25081] TeleShop       e-Shop         e-Shop         e-Shop        
## [25085] Flagship store e-Shop         MBR            MBR           
## [25089] TeleShop       e-Shop         e-Shop         TeleShop      
## [25093] e-Shop         TeleShop       e-Shop         TeleShop      
## [25097] TeleShop       TeleShop       TeleShop       MBR           
## [25101] e-Shop         e-Shop         MBR            MBR           
## [25105] e-Shop         e-Shop         MBR            MBR           
## [25109] Flagship store Flagship store Flagship store e-Shop        
## [25113] e-Shop         e-Shop         e-Shop         Flagship store
## [25117] Flagship store e-Shop         Flagship store Flagship store
## [25121] Flagship store Flagship store e-Shop         e-Shop        
## [25125] Flagship store e-Shop         Flagship store Flagship store
## [25129] Flagship store Flagship store Flagship store Flagship store
## [25133] Flagship store Flagship store e-Shop         Flagship store
## [25137] Flagship store Flagship store e-Shop         e-Shop        
## [25141] Flagship store Flagship store TeleShop       TeleShop      
## [25145] TeleShop       TeleShop       TeleShop       TeleShop      
## [25149] TeleShop       TeleShop       e-Shop         e-Shop        
## [25153] Flagship store Flagship store Flagship store e-Shop        
## [25157] e-Shop         e-Shop         e-Shop         e-Shop        
## [25161] e-Shop         e-Shop         e-Shop         MBR           
## [25165] MBR            e-Shop         e-Shop         e-Shop        
## [25169] e-Shop         e-Shop         Flagship store Flagship store
## [25173] TeleShop       MBR            e-Shop         TeleShop      
## [25177] MBR            e-Shop         MBR            TeleShop      
## [25181] e-Shop         MBR            e-Shop         MBR           
## [25185] e-Shop         e-Shop         MBR            MBR           
## [25189] e-Shop         e-Shop         e-Shop         MBR           
## [25193] e-Shop         e-Shop         e-Shop         MBR           
## [25197] e-Shop         e-Shop         MBR            Flagship store
## [25201] Flagship store MBR            MBR            TeleShop      
## [25205] e-Shop         MBR            e-Shop         TeleShop      
## [25209] MBR            MBR            MBR            MBR           
## [25213] e-Shop         e-Shop         TeleShop       e-Shop        
## [25217] e-Shop         TeleShop       TeleShop       TeleShop      
## [25221] TeleShop       TeleShop       TeleShop       TeleShop      
## [25225] TeleShop       MBR            TeleShop       MBR           
## [25229] e-Shop         e-Shop         e-Shop         e-Shop        
## [25233] e-Shop         MBR            e-Shop         e-Shop        
## [25237] e-Shop         e-Shop         MBR            e-Shop        
## [25241] MBR            MBR            MBR            e-Shop        
## [25245] e-Shop         e-Shop         e-Shop         e-Shop        
## [25249] TeleShop       TeleShop       TeleShop       TeleShop      
## [25253] TeleShop       MBR            MBR            TeleShop      
## [25257] MBR            TeleShop       TeleShop       Flagship store
## [25261] Flagship store TeleShop       Flagship store Flagship store
## [25265] TeleShop       TeleShop       Flagship store Flagship store
## [25269] e-Shop         Flagship store e-Shop         e-Shop        
## [25273] e-Shop         Flagship store TeleShop       e-Shop        
## [25277] Flagship store TeleShop       e-Shop         e-Shop        
## [25281] TeleShop       Flagship store Flagship store Flagship store
## [25285] e-Shop         Flagship store Flagship store Flagship store
## [25289] Flagship store Flagship store TeleShop       Flagship store
## [25293] Flagship store TeleShop       TeleShop       TeleShop      
## [25297] Flagship store Flagship store Flagship store e-Shop        
## [25301] e-Shop         e-Shop         e-Shop         TeleShop      
## [25305] TeleShop       Flagship store Flagship store Flagship store
## [25309] e-Shop         e-Shop         e-Shop         MBR           
## [25313] MBR            MBR            TeleShop       Flagship store
## [25317] e-Shop         Flagship store TeleShop       TeleShop      
## [25321] TeleShop       TeleShop       e-Shop         e-Shop        
## [25325] TeleShop       e-Shop         Flagship store Flagship store
## [25329] Flagship store MBR            MBR            TeleShop      
## [25333] TeleShop       TeleShop       MBR            TeleShop      
## [25337] TeleShop       TeleShop       e-Shop         MBR           
## [25341] TeleShop       e-Shop         e-Shop         e-Shop        
## [25345] TeleShop       MBR            e-Shop         e-Shop        
## [25349] MBR            e-Shop         e-Shop         MBR           
## [25353] Flagship store Flagship store Flagship store Flagship store
## [25357] Flagship store e-Shop         e-Shop         Flagship store
## [25361] Flagship store Flagship store Flagship store e-Shop        
## [25365] Flagship store Flagship store Flagship store Flagship store
## [25369] Flagship store TeleShop       TeleShop       TeleShop      
## [25373] Flagship store Flagship store TeleShop       e-Shop        
## [25377] MBR            e-Shop         MBR            e-Shop        
## [25381] MBR            e-Shop         e-Shop         Flagship store
## [25385] Flagship store Flagship store Flagship store Flagship store
## [25389] Flagship store Flagship store e-Shop         Flagship store
## [25393] e-Shop         e-Shop         TeleShop       Flagship store
## [25397] e-Shop         e-Shop         e-Shop         e-Shop        
## [25401] Flagship store e-Shop         TeleShop       e-Shop        
## [25405] e-Shop         Flagship store e-Shop         MBR           
## [25409] e-Shop         e-Shop         e-Shop         MBR           
## [25413] e-Shop         e-Shop         e-Shop         e-Shop        
## [25417] e-Shop         e-Shop         e-Shop         e-Shop        
## [25421] MBR            e-Shop         e-Shop         e-Shop        
## [25425] TeleShop       e-Shop         e-Shop         TeleShop      
## [25429] TeleShop       TeleShop       e-Shop         TeleShop      
## [25433] e-Shop         TeleShop       e-Shop         Flagship store
## [25437] e-Shop         e-Shop         e-Shop         Flagship store
## [25441] e-Shop         Flagship store e-Shop         MBR           
## [25445] Flagship store Flagship store MBR            e-Shop        
## [25449] MBR            e-Shop         MBR            e-Shop        
## [25453] Flagship store Flagship store Flagship store MBR           
## [25457] MBR            MBR            MBR            MBR           
## [25461] e-Shop         MBR            TeleShop       MBR           
## [25465] MBR            MBR            MBR            MBR           
## [25469] MBR            TeleShop       e-Shop         TeleShop      
## [25473] MBR            MBR            e-Shop         MBR           
## [25477] MBR            TeleShop       MBR            TeleShop      
## [25481] Flagship store Flagship store Flagship store Flagship store
## [25485] Flagship store TeleShop       TeleShop       Flagship store
## [25489] Flagship store Flagship store Flagship store Flagship store
## [25493] TeleShop       TeleShop       e-Shop         e-Shop        
## [25497] MBR            TeleShop       TeleShop       TeleShop      
## [25501] TeleShop       MBR            MBR            e-Shop        
## [25505] e-Shop         e-Shop         e-Shop         e-Shop        
## [25509] e-Shop         e-Shop         e-Shop         e-Shop        
## [25513] e-Shop         e-Shop         TeleShop       TeleShop      
## [25517] TeleShop       TeleShop       TeleShop       e-Shop        
## [25521] TeleShop       e-Shop         Flagship store Flagship store
## [25525] Flagship store e-Shop         e-Shop         e-Shop        
## [25529] e-Shop         Flagship store Flagship store Flagship store
## [25533] TeleShop       Flagship store TeleShop       TeleShop      
## [25537] TeleShop       TeleShop       TeleShop       Flagship store
## [25541] TeleShop       MBR            TeleShop       TeleShop      
## [25545] TeleShop       MBR            TeleShop       MBR           
## [25549] MBR            MBR            MBR            MBR           
## [25553] MBR            MBR            MBR            e-Shop        
## [25557] e-Shop         e-Shop         e-Shop         e-Shop        
## [25561] e-Shop         e-Shop         e-Shop         e-Shop        
## [25565] e-Shop         e-Shop         e-Shop         e-Shop        
## [25569] e-Shop         e-Shop         e-Shop         e-Shop        
## [25573] e-Shop         e-Shop         e-Shop         e-Shop        
## [25577] e-Shop         e-Shop         e-Shop         e-Shop        
## [25581] e-Shop         e-Shop         e-Shop         e-Shop        
## [25585] TeleShop       TeleShop       TeleShop       MBR           
## [25589] MBR            e-Shop         e-Shop         MBR           
## [25593] e-Shop         e-Shop         e-Shop         MBR           
## [25597] MBR            MBR            MBR            e-Shop        
## [25601] e-Shop         MBR            MBR            e-Shop        
## [25605] MBR            e-Shop         MBR            e-Shop        
## [25609] e-Shop         e-Shop         e-Shop         e-Shop        
## [25613] e-Shop         e-Shop         MBR            MBR           
## [25617] TeleShop       Flagship store TeleShop       Flagship store
## [25621] MBR            e-Shop         e-Shop         e-Shop        
## [25625] e-Shop         TeleShop       TeleShop       TeleShop      
## [25629] MBR            MBR            MBR            MBR           
## [25633] MBR            MBR            MBR            MBR           
## [25637] MBR            MBR            TeleShop       e-Shop        
## [25641] TeleShop       TeleShop       e-Shop         Flagship store
## [25645] TeleShop       e-Shop         Flagship store e-Shop        
## [25649] Flagship store Flagship store e-Shop         Flagship store
## [25653] TeleShop       MBR            MBR            MBR           
## [25657] MBR            e-Shop         MBR            MBR           
## [25661] MBR            e-Shop         MBR            MBR           
## [25665] MBR            e-Shop         Flagship store Flagship store
## [25669] Flagship store Flagship store Flagship store Flagship store
## [25673] Flagship store Flagship store Flagship store Flagship store
## [25677] TeleShop       TeleShop       TeleShop       e-Shop        
## [25681] e-Shop         Flagship store Flagship store Flagship store
## [25685] Flagship store Flagship store e-Shop         e-Shop        
## [25689] Flagship store Flagship store Flagship store Flagship store
## [25693] Flagship store e-Shop         Flagship store e-Shop        
## [25697] e-Shop         Flagship store e-Shop         TeleShop      
## [25701] Flagship store Flagship store TeleShop       TeleShop      
## [25705] Flagship store TeleShop       TeleShop       e-Shop        
## [25709] e-Shop         Flagship store Flagship store Flagship store
## [25713] e-Shop         Flagship store TeleShop       Flagship store
## [25717] TeleShop       TeleShop       TeleShop       TeleShop      
## [25721] MBR            MBR            e-Shop         MBR           
## [25725] MBR            e-Shop         MBR            e-Shop        
## [25729] e-Shop         MBR            MBR            MBR           
## [25733] e-Shop         MBR            e-Shop         MBR           
## [25737] MBR            MBR            MBR            MBR           
## [25741] MBR            e-Shop         e-Shop         e-Shop        
## [25745] e-Shop         TeleShop       TeleShop       e-Shop        
## [25749] TeleShop       MBR            MBR            TeleShop      
## [25753] MBR            TeleShop       TeleShop       MBR           
## [25757] MBR            TeleShop       MBR            e-Shop        
## [25761] e-Shop         Flagship store Flagship store MBR           
## [25765] MBR            MBR            Flagship store e-Shop        
## [25769] MBR            MBR            MBR            e-Shop        
## [25773] e-Shop         MBR            MBR            MBR           
## [25777] MBR            e-Shop         MBR            MBR           
## [25781] MBR            MBR            Flagship store MBR           
## [25785] MBR            e-Shop         e-Shop         e-Shop        
## [25789] MBR            e-Shop         e-Shop         e-Shop        
## [25793] e-Shop         MBR            MBR            e-Shop        
## [25797] e-Shop         e-Shop         e-Shop         MBR           
## [25801] e-Shop         MBR            e-Shop         e-Shop        
## [25805] TeleShop       TeleShop       Flagship store e-Shop        
## [25809] e-Shop         TeleShop       TeleShop       TeleShop      
## [25813] e-Shop         TeleShop       e-Shop         e-Shop        
## [25817] Flagship store Flagship store e-Shop         Flagship store
## [25821] Flagship store e-Shop         e-Shop         e-Shop        
## [25825] e-Shop         e-Shop         e-Shop         e-Shop        
## [25829] e-Shop         e-Shop         e-Shop         e-Shop        
## [25833] e-Shop         e-Shop         e-Shop         e-Shop        
## [25837] e-Shop         e-Shop         e-Shop         MBR           
## [25841] e-Shop         e-Shop         Flagship store Flagship store
## [25845] e-Shop         Flagship store Flagship store Flagship store
## [25849] MBR            e-Shop         TeleShop       TeleShop      
## [25853] Flagship store Flagship store e-Shop         TeleShop      
## [25857] Flagship store Flagship store e-Shop         e-Shop        
## [25861] MBR            MBR            TeleShop       TeleShop      
## [25865] MBR            TeleShop       TeleShop       TeleShop      
## [25869] TeleShop       Flagship store TeleShop       Flagship store
## [25873] e-Shop         e-Shop         e-Shop         e-Shop        
## [25877] e-Shop         e-Shop         e-Shop         e-Shop        
## [25881] e-Shop         e-Shop         e-Shop         e-Shop        
## [25885] e-Shop         e-Shop         e-Shop         Flagship store
## [25889] Flagship store Flagship store Flagship store Flagship store
## [25893] Flagship store MBR            MBR            e-Shop        
## [25897] e-Shop         MBR            e-Shop         e-Shop        
## [25901] Flagship store e-Shop         Flagship store e-Shop        
## [25905] MBR            Flagship store Flagship store e-Shop        
## [25909] MBR            e-Shop         Flagship store Flagship store
## [25913] e-Shop         Flagship store Flagship store e-Shop        
## [25917] e-Shop         e-Shop         e-Shop         e-Shop        
## [25921] MBR            Flagship store Flagship store Flagship store
## [25925] Flagship store Flagship store Flagship store MBR           
## [25929] TeleShop       MBR            MBR            TeleShop      
## [25933] TeleShop       TeleShop       MBR            MBR           
## [25937] e-Shop         e-Shop         TeleShop       TeleShop      
## [25941] TeleShop       TeleShop       TeleShop       Flagship store
## [25945] Flagship store e-Shop         Flagship store e-Shop        
## [25949] Flagship store e-Shop         Flagship store Flagship store
## [25953] Flagship store e-Shop         Flagship store Flagship store
## [25957] e-Shop         e-Shop         Flagship store Flagship store
## [25961] Flagship store TeleShop       TeleShop       TeleShop      
## [25965] Flagship store Flagship store e-Shop         e-Shop        
## [25969] Flagship store Flagship store e-Shop         e-Shop        
## [25973] e-Shop         Flagship store Flagship store e-Shop        
## [25977] Flagship store MBR            MBR            e-Shop        
## [25981] TeleShop       e-Shop         TeleShop       TeleShop      
## [25985] e-Shop         TeleShop       e-Shop         e-Shop        
## [25989] TeleShop       TeleShop       e-Shop         e-Shop        
## [25993] e-Shop         e-Shop         e-Shop         e-Shop        
## [25997] e-Shop         e-Shop         e-Shop         e-Shop        
## [26001] TeleShop       Flagship store TeleShop       TeleShop      
## [26005] TeleShop       TeleShop       TeleShop       Flagship store
## [26009] TeleShop       TeleShop       e-Shop         e-Shop        
## [26013] Flagship store TeleShop       Flagship store e-Shop        
## [26017] Flagship store Flagship store Flagship store TeleShop      
## [26021] Flagship store Flagship store e-Shop         Flagship store
## [26025] Flagship store TeleShop       MBR            TeleShop      
## [26029] TeleShop       MBR            MBR            e-Shop        
## [26033] MBR            MBR            MBR            TeleShop      
## [26037] MBR            MBR            MBR            MBR           
## [26041] e-Shop         MBR            TeleShop       e-Shop        
## [26045] Flagship store Flagship store e-Shop         Flagship store
## [26049] Flagship store e-Shop         e-Shop         e-Shop        
## [26053] e-Shop         e-Shop         e-Shop         Flagship store
## [26057] e-Shop         e-Shop         e-Shop         e-Shop        
## [26061] e-Shop         e-Shop         e-Shop         e-Shop        
## [26065] e-Shop         e-Shop         TeleShop       e-Shop        
## [26069] TeleShop       TeleShop       e-Shop         TeleShop      
## [26073] TeleShop       TeleShop       e-Shop         e-Shop        
## [26077] e-Shop         e-Shop         e-Shop         e-Shop        
## [26081] e-Shop         TeleShop       TeleShop       MBR           
## [26085] TeleShop       MBR            TeleShop       TeleShop      
## [26089] MBR            MBR            MBR            MBR           
## [26093] Flagship store Flagship store Flagship store Flagship store
## [26097] TeleShop       MBR            e-Shop         TeleShop      
## [26101] TeleShop       MBR            MBR            e-Shop        
## [26105] TeleShop       e-Shop         TeleShop       e-Shop        
## [26109] TeleShop       e-Shop         MBR            MBR           
## [26113] TeleShop       e-Shop         TeleShop       e-Shop        
## [26117] MBR            MBR            Flagship store Flagship store
## [26121] MBR            MBR            MBR            MBR           
## [26125] MBR            MBR            e-Shop         e-Shop        
## [26129] e-Shop         MBR            e-Shop         e-Shop        
## [26133] e-Shop         MBR            e-Shop         Flagship store
## [26137] e-Shop         Flagship store e-Shop         Flagship store
## [26141] MBR            MBR            TeleShop       Flagship store
## [26145] Flagship store MBR            Flagship store Flagship store
## [26149] Flagship store Flagship store TeleShop       e-Shop        
## [26153] e-Shop         e-Shop         e-Shop         e-Shop        
## [26157] e-Shop         TeleShop       TeleShop       MBR           
## [26161] TeleShop       MBR            MBR            MBR           
## [26165] TeleShop       MBR            e-Shop         MBR           
## [26169] e-Shop         TeleShop       TeleShop       MBR           
## [26173] MBR            TeleShop       TeleShop       TeleShop      
## [26177] MBR            TeleShop       TeleShop       MBR           
## [26181] TeleShop       TeleShop       TeleShop       TeleShop      
## [26185] TeleShop       MBR            MBR            Flagship store
## [26189] Flagship store Flagship store TeleShop       TeleShop      
## [26193] TeleShop       e-Shop         Flagship store e-Shop        
## [26197] TeleShop       TeleShop       TeleShop       TeleShop      
## [26201] e-Shop         e-Shop         e-Shop         e-Shop        
## [26205] MBR            MBR            MBR            Flagship store
## [26209] MBR            MBR            Flagship store MBR           
## [26213] MBR            MBR            e-Shop         e-Shop        
## [26217] Flagship store Flagship store Flagship store MBR           
## [26221] e-Shop         MBR            e-Shop         e-Shop        
## [26225] e-Shop         e-Shop         e-Shop         e-Shop        
## [26229] e-Shop         e-Shop         e-Shop         e-Shop        
## [26233] e-Shop         e-Shop         e-Shop         e-Shop        
## [26237] e-Shop         e-Shop         e-Shop         e-Shop        
## [26241] e-Shop         MBR            MBR            TeleShop      
## [26245] TeleShop       MBR            MBR            MBR           
## [26249] MBR            TeleShop       TeleShop       MBR           
## [26253] MBR            TeleShop       MBR            MBR           
## [26257] MBR            TeleShop       e-Shop         e-Shop        
## [26261] e-Shop         Flagship store e-Shop         e-Shop        
## [26265] Flagship store e-Shop         e-Shop         Flagship store
## [26269] Flagship store Flagship store Flagship store Flagship store
## [26273] Flagship store MBR            MBR            e-Shop        
## [26277] e-Shop         e-Shop         e-Shop         e-Shop        
## [26281] MBR            MBR            TeleShop       e-Shop        
## [26285] TeleShop       e-Shop         TeleShop       e-Shop        
## [26289] e-Shop         e-Shop         TeleShop       e-Shop        
## [26293] e-Shop         e-Shop         TeleShop       e-Shop        
## [26297] TeleShop       TeleShop       TeleShop       e-Shop        
## [26301] e-Shop         e-Shop         e-Shop         e-Shop        
## [26305] e-Shop         e-Shop         e-Shop         MBR           
## [26309] MBR            TeleShop       e-Shop         Flagship store
## [26313] TeleShop       Flagship store e-Shop         e-Shop        
## [26317] e-Shop         e-Shop         Flagship store Flagship store
## [26321] e-Shop         e-Shop         Flagship store e-Shop        
## [26325] TeleShop       e-Shop         TeleShop       TeleShop      
## [26329] MBR            e-Shop         e-Shop         TeleShop      
## [26333] MBR            e-Shop         MBR            e-Shop        
## [26337] TeleShop       MBR            MBR            MBR           
## [26341] MBR            MBR            MBR            e-Shop        
## [26345] e-Shop         e-Shop         e-Shop         e-Shop        
## [26349] e-Shop         MBR            e-Shop         MBR           
## [26353] MBR            MBR            TeleShop       MBR           
## [26357] e-Shop         e-Shop         e-Shop         TeleShop      
## [26361] Flagship store Flagship store MBR            Flagship store
## [26365] Flagship store e-Shop         e-Shop         e-Shop        
## [26369] Flagship store Flagship store e-Shop         e-Shop        
## [26373] Flagship store Flagship store e-Shop         TeleShop      
## [26377] TeleShop       TeleShop       MBR            MBR           
## [26381] MBR            Flagship store Flagship store TeleShop      
## [26385] Flagship store TeleShop       e-Shop         e-Shop        
## [26389] e-Shop         e-Shop         e-Shop         e-Shop        
## [26393] e-Shop         e-Shop         e-Shop         Flagship store
## [26397] e-Shop         e-Shop         Flagship store e-Shop        
## [26401] e-Shop         Flagship store MBR            MBR           
## [26405] MBR            MBR            MBR            TeleShop      
## [26409] TeleShop       TeleShop       TeleShop       TeleShop      
## [26413] Flagship store TeleShop       e-Shop         e-Shop        
## [26417] Flagship store Flagship store Flagship store TeleShop      
## [26421] Flagship store TeleShop       TeleShop       TeleShop      
## [26425] TeleShop       Flagship store e-Shop         e-Shop        
## [26429] e-Shop         e-Shop         Flagship store TeleShop      
## [26433] TeleShop       MBR            Flagship store e-Shop        
## [26437] Flagship store TeleShop       TeleShop       MBR           
## [26441] TeleShop       TeleShop       TeleShop       Flagship store
## [26445] Flagship store MBR            e-Shop         e-Shop        
## [26449] e-Shop         MBR            MBR            MBR           
## [26453] MBR            MBR            Flagship store Flagship store
## [26457] TeleShop       TeleShop       MBR            TeleShop      
## [26461] MBR            TeleShop       Flagship store TeleShop      
## [26465] Flagship store MBR            MBR            MBR           
## [26469] MBR            e-Shop         MBR            e-Shop        
## [26473] MBR            e-Shop         e-Shop         e-Shop        
## [26477] Flagship store Flagship store Flagship store Flagship store
## [26481] e-Shop         Flagship store e-Shop         Flagship store
## [26485] TeleShop       TeleShop       TeleShop       TeleShop      
## [26489] TeleShop       Flagship store Flagship store Flagship store
## [26493] Flagship store Flagship store Flagship store Flagship store
## [26497] e-Shop         e-Shop         e-Shop         TeleShop      
## [26501] e-Shop         TeleShop       TeleShop       TeleShop      
## [26505] e-Shop         TeleShop       e-Shop         e-Shop        
## [26509] e-Shop         TeleShop       TeleShop       e-Shop        
## [26513] e-Shop         e-Shop         e-Shop         TeleShop      
## [26517] TeleShop       e-Shop         TeleShop       e-Shop        
## [26521] e-Shop         MBR            MBR            MBR           
## [26525] MBR            MBR            MBR            MBR           
## [26529] e-Shop         MBR            e-Shop         e-Shop        
## [26533] MBR            e-Shop         e-Shop         e-Shop        
## [26537] e-Shop         e-Shop         e-Shop         e-Shop        
## [26541] e-Shop         e-Shop         e-Shop         e-Shop        
## [26545] MBR            e-Shop         e-Shop         e-Shop        
## [26549] e-Shop         e-Shop         e-Shop         e-Shop        
## [26553] e-Shop         e-Shop         e-Shop         MBR           
## [26557] e-Shop         MBR            e-Shop         MBR           
## [26561] e-Shop         MBR            Flagship store MBR           
## [26565] Flagship store MBR            e-Shop         e-Shop        
## [26569] e-Shop         e-Shop         e-Shop         e-Shop        
## [26573] e-Shop         e-Shop         TeleShop       TeleShop      
## [26577] e-Shop         e-Shop         e-Shop         e-Shop        
## [26581] e-Shop         TeleShop       MBR            e-Shop        
## [26585] e-Shop         e-Shop         e-Shop         e-Shop        
## [26589] MBR            MBR            e-Shop         MBR           
## [26593] MBR            e-Shop         e-Shop         MBR           
## [26597] MBR            TeleShop       TeleShop       e-Shop        
## [26601] TeleShop       e-Shop         e-Shop         e-Shop        
## [26605] TeleShop       e-Shop         TeleShop       e-Shop        
## [26609] e-Shop         e-Shop         MBR            MBR           
## [26613] MBR            MBR            MBR            MBR           
## [26617] MBR            MBR            MBR            MBR           
## [26621] MBR            MBR            e-Shop         e-Shop        
## [26625] MBR            e-Shop         e-Shop         MBR           
## [26629] e-Shop         MBR            e-Shop         e-Shop        
## [26633] e-Shop         e-Shop         e-Shop         e-Shop        
## [26637] e-Shop         e-Shop         e-Shop         e-Shop        
## [26641] TeleShop       Flagship store Flagship store Flagship store
## [26645] Flagship store MBR            Flagship store Flagship store
## [26649] Flagship store Flagship store TeleShop       Flagship store
## [26653] MBR            TeleShop       MBR            TeleShop      
## [26657] TeleShop       TeleShop       TeleShop       TeleShop      
## [26661] e-Shop         e-Shop         e-Shop         e-Shop        
## [26665] e-Shop         e-Shop         e-Shop         e-Shop        
## [26669] e-Shop         MBR            e-Shop         MBR           
## [26673] MBR            e-Shop         MBR            e-Shop        
## [26677] e-Shop         e-Shop         MBR            e-Shop        
## [26681] e-Shop         TeleShop       TeleShop       TeleShop      
## [26685] TeleShop       MBR            MBR            MBR           
## [26689] e-Shop         MBR            e-Shop         MBR           
## [26693] e-Shop         MBR            e-Shop         e-Shop        
## [26697] e-Shop         e-Shop         e-Shop         e-Shop        
## [26701] e-Shop         e-Shop         e-Shop         Flagship store
## [26705] Flagship store Flagship store e-Shop         e-Shop        
## [26709] TeleShop       TeleShop       TeleShop       Flagship store
## [26713] Flagship store e-Shop         Flagship store MBR           
## [26717] e-Shop         MBR            MBR            e-Shop        
## [26721] e-Shop         Flagship store Flagship store Flagship store
## [26725] e-Shop         e-Shop         e-Shop         e-Shop        
## [26729] e-Shop         e-Shop         Flagship store Flagship store
## [26733] TeleShop       Flagship store TeleShop       Flagship store
## [26737] Flagship store Flagship store Flagship store TeleShop      
## [26741] Flagship store TeleShop       Flagship store Flagship store
## [26745] Flagship store e-Shop         e-Shop         e-Shop        
## [26749] Flagship store TeleShop       e-Shop         TeleShop      
## [26753] TeleShop       e-Shop         e-Shop         TeleShop      
## [26757] TeleShop       TeleShop       e-Shop         e-Shop        
## [26761] e-Shop         e-Shop         Flagship store Flagship store
## [26765] Flagship store Flagship store Flagship store Flagship store
## [26769] TeleShop       TeleShop       TeleShop       e-Shop        
## [26773] e-Shop         e-Shop         e-Shop         e-Shop        
## [26777] e-Shop         Flagship store e-Shop         e-Shop        
## [26781] e-Shop         e-Shop         e-Shop         Flagship store
## [26785] e-Shop         e-Shop         e-Shop         e-Shop        
## [26789] e-Shop         e-Shop         e-Shop         e-Shop        
## [26793] e-Shop         e-Shop         TeleShop       MBR           
## [26797] TeleShop       e-Shop         MBR            TeleShop      
## [26801] TeleShop       TeleShop       TeleShop       TeleShop      
## [26805] Flagship store e-Shop         TeleShop       TeleShop      
## [26809] TeleShop       Flagship store e-Shop         Flagship store
## [26813] Flagship store Flagship store TeleShop       MBR           
## [26817] MBR            MBR            MBR            MBR           
## [26821] MBR            e-Shop         e-Shop         e-Shop        
## [26825] e-Shop         e-Shop         e-Shop         e-Shop        
## [26829] e-Shop         e-Shop         e-Shop         e-Shop        
## [26833] e-Shop         e-Shop         e-Shop         e-Shop        
## [26837] e-Shop         e-Shop         e-Shop         Flagship store
## [26841] Flagship store Flagship store e-Shop         Flagship store
## [26845] Flagship store Flagship store TeleShop       MBR           
## [26849] TeleShop       Flagship store MBR            TeleShop      
## [26853] MBR            e-Shop         Flagship store Flagship store
## [26857] Flagship store Flagship store Flagship store Flagship store
## [26861] Flagship store Flagship store Flagship store Flagship store
## [26865] TeleShop       TeleShop       TeleShop       e-Shop        
## [26869] TeleShop       e-Shop         TeleShop       e-Shop        
## [26873] e-Shop         e-Shop         e-Shop         TeleShop      
## [26877] TeleShop       Flagship store Flagship store Flagship store
## [26881] Flagship store Flagship store Flagship store e-Shop        
## [26885] e-Shop         e-Shop         MBR            Flagship store
## [26889] e-Shop         e-Shop         MBR            MBR           
## [26893] e-Shop         e-Shop         e-Shop         e-Shop        
## [26897] e-Shop         MBR            e-Shop         MBR           
## [26901] Flagship store e-Shop         e-Shop         Flagship store
## [26905] MBR            TeleShop       e-Shop         e-Shop        
## [26909] TeleShop       MBR            MBR            TeleShop      
## [26913] Flagship store e-Shop         TeleShop       Flagship store
## [26917] e-Shop         Flagship store e-Shop         e-Shop        
## [26921] e-Shop         TeleShop       Flagship store Flagship store
## [26925] MBR            TeleShop       MBR            Flagship store
## [26929] e-Shop         Flagship store MBR            e-Shop        
## [26933] e-Shop         TeleShop       MBR            TeleShop      
## [26937] e-Shop         e-Shop         e-Shop         Flagship store
## [26941] TeleShop       MBR            e-Shop         Flagship store
## [26945] e-Shop         e-Shop         MBR            TeleShop      
## [26949] e-Shop         e-Shop         MBR            TeleShop      
## [26953] Flagship store Flagship store e-Shop         MBR           
## [26957] TeleShop       TeleShop       MBR            MBR           
## [26961] MBR            e-Shop         e-Shop         e-Shop        
## [26965] e-Shop         e-Shop         MBR            Flagship store
## [26969] MBR            MBR            MBR            MBR           
## [26973] TeleShop       Flagship store TeleShop       Flagship store
## [26977] MBR            Flagship store MBR            MBR           
## [26981] Flagship store Flagship store MBR            Flagship store
## [26985] Flagship store MBR            e-Shop         e-Shop        
## [26989] e-Shop         e-Shop         e-Shop         e-Shop        
## [26993] e-Shop         e-Shop         e-Shop         e-Shop        
## [26997] TeleShop       e-Shop         e-Shop         e-Shop        
## [27001] e-Shop         TeleShop       e-Shop         TeleShop      
## [27005] e-Shop         TeleShop       TeleShop       Flagship store
## [27009] TeleShop       TeleShop       TeleShop       TeleShop      
## [27013] TeleShop       TeleShop       TeleShop       Flagship store
## [27017] TeleShop       TeleShop       Flagship store Flagship store
## [27021] TeleShop       MBR            e-Shop         e-Shop        
## [27025] e-Shop         MBR            MBR            e-Shop        
## [27029] e-Shop         MBR            Flagship store MBR           
## [27033] Flagship store e-Shop         Flagship store Flagship store
## [27037] Flagship store MBR            TeleShop       e-Shop        
## [27041] TeleShop       e-Shop         e-Shop         e-Shop        
## [27045] Flagship store Flagship store e-Shop         Flagship store
## [27049] Flagship store e-Shop         Flagship store Flagship store
## [27053] Flagship store Flagship store e-Shop         Flagship store
## [27057] e-Shop         e-Shop         e-Shop         e-Shop        
## [27061] e-Shop         e-Shop         Flagship store Flagship store
## [27065] e-Shop         e-Shop         TeleShop       TeleShop      
## [27069] TeleShop       TeleShop       TeleShop       TeleShop      
## [27073] TeleShop       TeleShop       TeleShop       TeleShop      
## [27077] TeleShop       e-Shop         e-Shop         e-Shop        
## [27081] TeleShop       TeleShop       e-Shop         e-Shop        
## [27085] TeleShop       e-Shop         e-Shop         e-Shop        
## [27089] TeleShop       TeleShop       Flagship store TeleShop      
## [27093] TeleShop       TeleShop       TeleShop       e-Shop        
## [27097] TeleShop       e-Shop         e-Shop         MBR           
## [27101] Flagship store e-Shop         e-Shop         MBR           
## [27105] e-Shop         e-Shop         e-Shop         e-Shop        
## [27109] e-Shop         Flagship store e-Shop         Flagship store
## [27113] TeleShop       TeleShop       e-Shop         TeleShop      
## [27117] e-Shop         e-Shop         e-Shop         e-Shop        
## [27121] e-Shop         MBR            MBR            MBR           
## [27125] e-Shop         TeleShop       TeleShop       e-Shop        
## [27129] TeleShop       e-Shop         TeleShop       TeleShop      
## [27133] e-Shop         e-Shop         Flagship store Flagship store
## [27137] Flagship store e-Shop         e-Shop         Flagship store
## [27141] e-Shop         e-Shop         e-Shop         Flagship store
## [27145] e-Shop         e-Shop         e-Shop         e-Shop        
## [27149] e-Shop         e-Shop         e-Shop         e-Shop        
## [27153] e-Shop         e-Shop         e-Shop         e-Shop        
## [27157] e-Shop         e-Shop         e-Shop         e-Shop        
## [27161] e-Shop         e-Shop         Flagship store Flagship store
## [27165] e-Shop         e-Shop         e-Shop         MBR           
## [27169] MBR            e-Shop         e-Shop         e-Shop        
## [27173] e-Shop         MBR            e-Shop         MBR           
## [27177] MBR            TeleShop       TeleShop       TeleShop      
## [27181] e-Shop         Flagship store Flagship store e-Shop        
## [27185] Flagship store TeleShop       e-Shop         TeleShop      
## [27189] e-Shop         e-Shop         Flagship store e-Shop        
## [27193] e-Shop         e-Shop         TeleShop       e-Shop        
## [27197] TeleShop       e-Shop         MBR            TeleShop      
## [27201] Flagship store MBR            Flagship store TeleShop      
## [27205] Flagship store Flagship store Flagship store Flagship store
## [27209] Flagship store TeleShop       e-Shop         e-Shop        
## [27213] Flagship store TeleShop       e-Shop         MBR           
## [27217] MBR            e-Shop         e-Shop         e-Shop        
## [27221] e-Shop         TeleShop       e-Shop         Flagship store
## [27225] Flagship store e-Shop         MBR            TeleShop      
## [27229] TeleShop       Flagship store MBR            Flagship store
## [27233] TeleShop       Flagship store e-Shop         TeleShop      
## [27237] e-Shop         e-Shop         e-Shop         TeleShop      
## [27241] TeleShop       TeleShop       e-Shop         e-Shop        
## [27245] TeleShop       e-Shop         e-Shop         TeleShop      
## [27249] e-Shop         e-Shop         TeleShop       e-Shop        
## [27253] e-Shop         e-Shop         e-Shop         e-Shop        
## [27257] e-Shop         e-Shop         e-Shop         MBR           
## [27261] MBR            MBR            e-Shop         MBR           
## [27265] MBR            MBR            e-Shop         e-Shop        
## [27269] TeleShop       TeleShop       e-Shop         MBR           
## [27273] Flagship store MBR            TeleShop       Flagship store
## [27277] e-Shop         Flagship store MBR            TeleShop      
## [27281] e-Shop         MBR            MBR            MBR           
## [27285] MBR            e-Shop         e-Shop         MBR           
## [27289] e-Shop         MBR            MBR            e-Shop        
## [27293] e-Shop         e-Shop         e-Shop         e-Shop        
## [27297] MBR            MBR            MBR            TeleShop      
## [27301] TeleShop       TeleShop       e-Shop         TeleShop      
## [27305] e-Shop         TeleShop       TeleShop       TeleShop      
## [27309] TeleShop       TeleShop       Flagship store TeleShop      
## [27313] Flagship store e-Shop         e-Shop         Flagship store
## [27317] Flagship store Flagship store Flagship store Flagship store
## [27321] Flagship store e-Shop         Flagship store TeleShop      
## [27325] TeleShop       MBR            MBR            MBR           
## [27329] e-Shop         e-Shop         TeleShop       TeleShop      
## [27333] MBR            TeleShop       TeleShop       e-Shop        
## [27337] MBR            e-Shop         e-Shop         e-Shop        
## [27341] TeleShop       e-Shop         e-Shop         e-Shop        
## [27345] MBR            MBR            e-Shop         e-Shop        
## [27349] MBR            MBR            e-Shop         MBR           
## [27353] e-Shop         e-Shop         e-Shop         e-Shop        
## [27357] e-Shop         Flagship store MBR            e-Shop        
## [27361] e-Shop         e-Shop         e-Shop         e-Shop        
## [27365] Flagship store MBR            Flagship store MBR           
## [27369] TeleShop       TeleShop       TeleShop       TeleShop      
## [27373] TeleShop       MBR            TeleShop       TeleShop      
## [27377] MBR            TeleShop       TeleShop       TeleShop      
## [27381] e-Shop         MBR            e-Shop         e-Shop        
## [27385] e-Shop         e-Shop         e-Shop         e-Shop        
## [27389] MBR            e-Shop         e-Shop         e-Shop        
## [27393] TeleShop       e-Shop         e-Shop         e-Shop        
## [27397] e-Shop         e-Shop         e-Shop         e-Shop        
## [27401] e-Shop         TeleShop       e-Shop         e-Shop        
## [27405] e-Shop         e-Shop         TeleShop       MBR           
## [27409] MBR            TeleShop       TeleShop       TeleShop      
## [27413] TeleShop       MBR            MBR            e-Shop        
## [27417] e-Shop         e-Shop         e-Shop         Flagship store
## [27421] Flagship store MBR            MBR            Flagship store
## [27425] Flagship store MBR            MBR            MBR           
## [27429] MBR            MBR            MBR            MBR           
## [27433] MBR            Flagship store MBR            MBR           
## [27437] Flagship store MBR            MBR            MBR           
## [27441] MBR            MBR            Flagship store Flagship store
## [27445] e-Shop         e-Shop         e-Shop         e-Shop        
## [27449] e-Shop         e-Shop         Flagship store e-Shop        
## [27453] e-Shop         e-Shop         e-Shop         Flagship store
## [27457] e-Shop         e-Shop         Flagship store e-Shop        
## [27461] e-Shop         e-Shop         e-Shop         e-Shop        
## [27465] Flagship store e-Shop         e-Shop         e-Shop        
## [27469] Flagship store e-Shop         MBR            MBR           
## [27473] MBR            MBR            MBR            MBR           
## [27477] TeleShop       TeleShop       Flagship store Flagship store
## [27481] Flagship store Flagship store TeleShop       Flagship store
## [27485] Flagship store e-Shop         e-Shop         Flagship store
## [27489] MBR            MBR            MBR            MBR           
## [27493] MBR            e-Shop         e-Shop         MBR           
## [27497] MBR            MBR            e-Shop         e-Shop        
## [27501] e-Shop         e-Shop         e-Shop         e-Shop        
## [27505] MBR            MBR            e-Shop         e-Shop        
## [27509] e-Shop         e-Shop         e-Shop         e-Shop        
## [27513] e-Shop         e-Shop         e-Shop         e-Shop        
## [27517] TeleShop       TeleShop       TeleShop       TeleShop      
## [27521] TeleShop       TeleShop       e-Shop         e-Shop        
## [27525] e-Shop         e-Shop         e-Shop         e-Shop        
## [27529] e-Shop         MBR            MBR            MBR           
## [27533] MBR            MBR            MBR            MBR           
## [27537] e-Shop         MBR            MBR            MBR           
## [27541] e-Shop         MBR            MBR            MBR           
## [27545] MBR            MBR            MBR            TeleShop      
## [27549] TeleShop       TeleShop       TeleShop       TeleShop      
## [27553] TeleShop       e-Shop         TeleShop       MBR           
## [27557] MBR            TeleShop       TeleShop       e-Shop        
## [27561] TeleShop       TeleShop       e-Shop         TeleShop      
## [27565] e-Shop         Flagship store MBR            Flagship store
## [27569] MBR            MBR            e-Shop         e-Shop        
## [27573] e-Shop         MBR            e-Shop         e-Shop        
## [27577] Flagship store e-Shop         MBR            e-Shop        
## [27581] e-Shop         e-Shop         e-Shop         e-Shop        
## [27585] e-Shop         e-Shop         e-Shop         e-Shop        
## [27589] e-Shop         e-Shop         e-Shop         e-Shop        
## [27593] e-Shop         e-Shop         e-Shop         e-Shop        
## [27597] e-Shop         e-Shop         e-Shop         e-Shop        
## [27601] Flagship store Flagship store Flagship store Flagship store
## [27605] Flagship store e-Shop         e-Shop         e-Shop        
## [27609] TeleShop       e-Shop         e-Shop         e-Shop        
## [27613] e-Shop         e-Shop         e-Shop         e-Shop        
## [27617] TeleShop       e-Shop         TeleShop       TeleShop      
## [27621] TeleShop       TeleShop       TeleShop       MBR           
## [27625] TeleShop       MBR            e-Shop         e-Shop        
## [27629] e-Shop         e-Shop         e-Shop         e-Shop        
## [27633] MBR            MBR            TeleShop       TeleShop      
## [27637] e-Shop         e-Shop         e-Shop         MBR           
## [27641] MBR            MBR            e-Shop         MBR           
## [27645] e-Shop         MBR            MBR            Flagship store
## [27649] Flagship store MBR            MBR            MBR           
## [27653] Flagship store MBR            Flagship store Flagship store
## [27657] e-Shop         TeleShop       e-Shop         e-Shop        
## [27661] e-Shop         e-Shop         TeleShop       TeleShop      
## [27665] TeleShop       MBR            MBR            MBR           
## [27669] MBR            MBR            e-Shop         e-Shop        
## [27673] e-Shop         Flagship store Flagship store Flagship store
## [27677] Flagship store TeleShop       TeleShop       Flagship store
## [27681] Flagship store Flagship store Flagship store Flagship store
## [27685] e-Shop         Flagship store e-Shop         Flagship store
## [27689] Flagship store MBR            MBR            MBR           
## [27693] MBR            Flagship store MBR            Flagship store
## [27697] e-Shop         e-Shop         e-Shop         e-Shop        
## [27701] e-Shop         MBR            MBR            MBR           
## [27705] e-Shop         TeleShop       e-Shop         TeleShop      
## [27709] Flagship store MBR            e-Shop         e-Shop        
## [27713] e-Shop         e-Shop         MBR            Flagship store
## [27717] e-Shop         Flagship store Flagship store e-Shop        
## [27721] e-Shop         e-Shop         Flagship store e-Shop        
## [27725] e-Shop         e-Shop         e-Shop         e-Shop        
## [27729] e-Shop         e-Shop         e-Shop         e-Shop        
## [27733] e-Shop         e-Shop         e-Shop         e-Shop        
## [27737] e-Shop         e-Shop         e-Shop         e-Shop        
## [27741] e-Shop         e-Shop         e-Shop         MBR           
## [27745] MBR            e-Shop         e-Shop         e-Shop        
## [27749] e-Shop         MBR            MBR            MBR           
## [27753] e-Shop         MBR            MBR            e-Shop        
## [27757] e-Shop         e-Shop         e-Shop         e-Shop        
## [27761] e-Shop         e-Shop         e-Shop         MBR           
## [27765] e-Shop         e-Shop         MBR            MBR           
## [27769] e-Shop         MBR            Flagship store Flagship store
## [27773] MBR            MBR            MBR            MBR           
## [27777] MBR            MBR            MBR            e-Shop        
## [27781] Flagship store Flagship store e-Shop         e-Shop        
## [27785] e-Shop         e-Shop         Flagship store e-Shop        
## [27789] e-Shop         TeleShop       TeleShop       e-Shop        
## [27793] TeleShop       TeleShop       MBR            TeleShop      
## [27797] Flagship store Flagship store MBR            TeleShop      
## [27801] MBR            MBR            TeleShop       Flagship store
## [27805] TeleShop       Flagship store Flagship store MBR           
## [27809] MBR            TeleShop       MBR            MBR           
## [27813] MBR            TeleShop       TeleShop       TeleShop      
## [27817] e-Shop         e-Shop         e-Shop         e-Shop        
## [27821] e-Shop         e-Shop         e-Shop         MBR           
## [27825] e-Shop         e-Shop         Flagship store e-Shop        
## [27829] Flagship store e-Shop         MBR            MBR           
## [27833] Flagship store e-Shop         e-Shop         e-Shop        
## [27837] e-Shop         e-Shop         TeleShop       TeleShop      
## [27841] TeleShop       MBR            MBR            TeleShop      
## [27845] TeleShop       MBR            MBR            MBR           
## [27849] TeleShop       e-Shop         MBR            MBR           
## [27853] e-Shop         MBR            e-Shop         e-Shop        
## [27857] e-Shop         e-Shop         e-Shop         e-Shop        
## [27861] e-Shop         e-Shop         e-Shop         e-Shop        
## [27865] e-Shop         e-Shop         e-Shop         e-Shop        
## [27869] e-Shop         e-Shop         e-Shop         e-Shop        
## [27873] e-Shop         e-Shop         e-Shop         e-Shop        
## [27877] e-Shop         e-Shop         e-Shop         e-Shop        
## [27881] e-Shop         e-Shop         e-Shop         e-Shop        
## [27885] e-Shop         e-Shop         MBR            MBR           
## [27889] e-Shop         Flagship store Flagship store e-Shop        
## [27893] e-Shop         e-Shop         e-Shop         e-Shop        
## [27897] e-Shop         e-Shop         e-Shop         e-Shop        
## [27901] e-Shop         e-Shop         Flagship store Flagship store
## [27905] MBR            MBR            MBR            MBR           
## [27909] MBR            e-Shop         e-Shop         e-Shop        
## [27913] Flagship store Flagship store Flagship store Flagship store
## [27917] Flagship store e-Shop         e-Shop         MBR           
## [27921] e-Shop         MBR            MBR            MBR           
## [27925] MBR            TeleShop       e-Shop         MBR           
## [27929] MBR            e-Shop         MBR            TeleShop      
## [27933] TeleShop       e-Shop         MBR            TeleShop      
## [27937] e-Shop         MBR            MBR            TeleShop      
## [27941] TeleShop       TeleShop       MBR            e-Shop        
## [27945] TeleShop       TeleShop       TeleShop       TeleShop      
## [27949] TeleShop       TeleShop       MBR            TeleShop      
## [27953] MBR            MBR            MBR            MBR           
## [27957] MBR            Flagship store MBR            e-Shop        
## [27961] MBR            e-Shop         Flagship store Flagship store
## [27965] e-Shop         e-Shop         e-Shop         TeleShop      
## [27969] TeleShop       TeleShop       MBR            MBR           
## [27973] e-Shop         e-Shop         e-Shop         e-Shop        
## [27977] e-Shop         e-Shop         e-Shop         e-Shop        
## [27981] e-Shop         e-Shop         Flagship store e-Shop        
## [27985] e-Shop         e-Shop         Flagship store e-Shop        
## [27989] Flagship store Flagship store Flagship store Flagship store
## [27993] Flagship store Flagship store e-Shop         TeleShop      
## [27997] TeleShop       e-Shop         TeleShop       e-Shop        
## [28001] TeleShop       TeleShop       e-Shop         e-Shop        
## [28005] TeleShop       TeleShop       MBR            MBR           
## [28009] MBR            MBR            MBR            MBR           
## [28013] TeleShop       TeleShop       Flagship store Flagship store
## [28017] Flagship store Flagship store Flagship store Flagship store
## [28021] Flagship store Flagship store e-Shop         e-Shop        
## [28025] TeleShop       e-Shop         e-Shop         TeleShop      
## [28029] e-Shop         e-Shop         e-Shop         TeleShop      
## [28033] e-Shop         TeleShop       TeleShop       TeleShop      
## [28037] TeleShop       TeleShop       e-Shop         Flagship store
## [28041] e-Shop         Flagship store Flagship store Flagship store
## [28045] e-Shop         Flagship store Flagship store e-Shop        
## [28049] e-Shop         Flagship store Flagship store Flagship store
## [28053] Flagship store Flagship store Flagship store Flagship store
## [28057] Flagship store Flagship store Flagship store Flagship store
## [28061] Flagship store Flagship store Flagship store Flagship store
## [28065] Flagship store e-Shop         TeleShop       TeleShop      
## [28069] Flagship store e-Shop         TeleShop       e-Shop        
## [28073] e-Shop         e-Shop         Flagship store Flagship store
## [28077] e-Shop         Flagship store Flagship store MBR           
## [28081] MBR            MBR            TeleShop       TeleShop      
## [28085] TeleShop       TeleShop       TeleShop       e-Shop        
## [28089] e-Shop         e-Shop         e-Shop         e-Shop        
## [28093] e-Shop         e-Shop         e-Shop         e-Shop        
## [28097] e-Shop         e-Shop         TeleShop       TeleShop      
## [28101] e-Shop         e-Shop         MBR            e-Shop        
## [28105] Flagship store e-Shop         e-Shop         e-Shop        
## [28109] MBR            Flagship store e-Shop         MBR           
## [28113] MBR            MBR            Flagship store Flagship store
## [28117] Flagship store MBR            Flagship store Flagship store
## [28121] Flagship store MBR            MBR            Flagship store
## [28125] MBR            Flagship store Flagship store Flagship store
## [28129] MBR            Flagship store MBR            MBR           
## [28133] MBR            MBR            MBR            Flagship store
## [28137] e-Shop         e-Shop         e-Shop         e-Shop        
## [28141] Flagship store MBR            MBR            Flagship store
## [28145] MBR            Flagship store MBR            e-Shop        
## [28149] MBR            Flagship store Flagship store e-Shop        
## [28153] Flagship store e-Shop         Flagship store Flagship store
## [28157] e-Shop         e-Shop         e-Shop         e-Shop        
## [28161] Flagship store e-Shop         e-Shop         MBR           
## [28165] MBR            e-Shop         MBR            MBR           
## [28169] e-Shop         e-Shop         e-Shop         e-Shop        
## [28173] e-Shop         e-Shop         e-Shop         e-Shop        
## [28177] e-Shop         e-Shop         e-Shop         e-Shop        
## [28181] MBR            e-Shop         MBR            MBR           
## [28185] MBR            MBR            e-Shop         MBR           
## [28189] MBR            MBR            MBR            MBR           
## [28193] MBR            MBR            MBR            MBR           
## [28197] MBR            MBR            MBR            MBR           
## [28201] e-Shop         e-Shop         e-Shop         e-Shop        
## [28205] e-Shop         MBR            e-Shop         MBR           
## [28209] MBR            e-Shop         Flagship store MBR           
## [28213] Flagship store MBR            MBR            MBR           
## [28217] MBR            e-Shop         e-Shop         e-Shop        
## [28221] e-Shop         e-Shop         e-Shop         e-Shop        
## [28225] e-Shop         e-Shop         e-Shop         e-Shop        
## [28229] e-Shop         e-Shop         e-Shop         TeleShop      
## [28233] TeleShop       e-Shop         e-Shop         TeleShop      
## [28237] Flagship store Flagship store e-Shop         Flagship store
## [28241] MBR            MBR            e-Shop         e-Shop        
## [28245] MBR            TeleShop       TeleShop       TeleShop      
## [28249] TeleShop       e-Shop         e-Shop         e-Shop        
## [28253] e-Shop         e-Shop         e-Shop         e-Shop        
## [28257] e-Shop         e-Shop         e-Shop         e-Shop        
## [28261] e-Shop         e-Shop         e-Shop         e-Shop        
## [28265] Flagship store Flagship store MBR            MBR           
## [28269] Flagship store Flagship store Flagship store Flagship store
## [28273] Flagship store TeleShop       TeleShop       e-Shop        
## [28277] Flagship store TeleShop       Flagship store TeleShop      
## [28281] Flagship store TeleShop       TeleShop       e-Shop        
## [28285] TeleShop       e-Shop         MBR            TeleShop      
## [28289] TeleShop       MBR            Flagship store e-Shop        
## [28293] TeleShop       TeleShop       TeleShop       e-Shop        
## [28297] e-Shop         TeleShop       Flagship store Flagship store
## [28301] MBR            MBR            MBR            MBR           
## [28305] MBR            MBR            TeleShop       MBR           
## [28309] MBR            MBR            TeleShop       TeleShop      
## [28313] TeleShop       TeleShop       MBR            MBR           
## [28317] TeleShop       MBR            TeleShop       MBR           
## [28321] TeleShop       MBR            TeleShop       TeleShop      
## [28325] MBR            e-Shop         e-Shop         TeleShop      
## [28329] TeleShop       TeleShop       TeleShop       e-Shop        
## [28333] TeleShop       e-Shop         e-Shop         Flagship store
## [28337] e-Shop         e-Shop         e-Shop         Flagship store
## [28341] Flagship store e-Shop         e-Shop         e-Shop        
## [28345] e-Shop         e-Shop         MBR            MBR           
## [28349] MBR            Flagship store Flagship store Flagship store
## [28353] Flagship store Flagship store Flagship store e-Shop        
## [28357] e-Shop         e-Shop         e-Shop         MBR           
## [28361] MBR            MBR            MBR            MBR           
## [28365] MBR            MBR            MBR            TeleShop      
## [28369] Flagship store TeleShop       Flagship store Flagship store
## [28373] e-Shop         Flagship store e-Shop         e-Shop        
## [28377] e-Shop         Flagship store Flagship store e-Shop        
## [28381] e-Shop         e-Shop         e-Shop         e-Shop        
## [28385] e-Shop         e-Shop         e-Shop         e-Shop        
## [28389] e-Shop         e-Shop         e-Shop         e-Shop        
## [28393] e-Shop         TeleShop       e-Shop         TeleShop      
## [28397] TeleShop       e-Shop         e-Shop         e-Shop        
## [28401] e-Shop         e-Shop         e-Shop         e-Shop        
## [28405] e-Shop         e-Shop         e-Shop         e-Shop        
## [28409] e-Shop         e-Shop         MBR            MBR           
## [28413] MBR            MBR            MBR            MBR           
## [28417] e-Shop         e-Shop         MBR            e-Shop        
## [28421] e-Shop         e-Shop         e-Shop         MBR           
## [28425] MBR            MBR            TeleShop       TeleShop      
## [28429] e-Shop         TeleShop       TeleShop       e-Shop        
## [28433] TeleShop       TeleShop       e-Shop         TeleShop      
## [28437] TeleShop       e-Shop         e-Shop         e-Shop        
## [28441] e-Shop         e-Shop         e-Shop         e-Shop        
## [28445] e-Shop         TeleShop       e-Shop         TeleShop      
## [28449] e-Shop         e-Shop         TeleShop       TeleShop      
## [28453] e-Shop         TeleShop       e-Shop         e-Shop        
## [28457] TeleShop       TeleShop       e-Shop         e-Shop        
## [28461] e-Shop         e-Shop         e-Shop         Flagship store
## [28465] Flagship store e-Shop         Flagship store e-Shop        
## [28469] e-Shop         e-Shop         e-Shop         Flagship store
## [28473] MBR            MBR            MBR            TeleShop      
## [28477] TeleShop       TeleShop       Flagship store TeleShop      
## [28481] Flagship store MBR            Flagship store Flagship store
## [28485] MBR            Flagship store Flagship store TeleShop      
## [28489] MBR            TeleShop       e-Shop         e-Shop        
## [28493] e-Shop         Flagship store Flagship store e-Shop        
## [28497] Flagship store Flagship store e-Shop         TeleShop      
## [28501] e-Shop         Flagship store TeleShop       TeleShop      
## [28505] TeleShop       Flagship store TeleShop       MBR           
## [28509] MBR            MBR            MBR            MBR           
## [28513] MBR            e-Shop         MBR            MBR           
## [28517] e-Shop         MBR            MBR            MBR           
## [28521] MBR            MBR            e-Shop         e-Shop        
## [28525] MBR            e-Shop         e-Shop         MBR           
## [28529] MBR            e-Shop         e-Shop         e-Shop        
## [28533] e-Shop         Flagship store Flagship store Flagship store
## [28537] Flagship store Flagship store Flagship store Flagship store
## [28541] e-Shop         e-Shop         e-Shop         e-Shop        
## [28545] e-Shop         e-Shop         e-Shop         e-Shop        
## [28549] e-Shop         TeleShop       e-Shop         MBR           
## [28553] TeleShop       e-Shop         MBR            TeleShop      
## [28557] Flagship store Flagship store MBR            MBR           
## [28561] MBR            e-Shop         MBR            Flagship store
## [28565] e-Shop         MBR            e-Shop         e-Shop        
## [28569] e-Shop         e-Shop         MBR            e-Shop        
## [28573] MBR            e-Shop         e-Shop         e-Shop        
## [28577] MBR            TeleShop       MBR            e-Shop        
## [28581] MBR            e-Shop         e-Shop         e-Shop        
## [28585] MBR            MBR            TeleShop       TeleShop      
## [28589] TeleShop       e-Shop         e-Shop         TeleShop      
## [28593] e-Shop         e-Shop         e-Shop         MBR           
## [28597] e-Shop         TeleShop       e-Shop         e-Shop        
## [28601] TeleShop       e-Shop         TeleShop       TeleShop      
## [28605] MBR            MBR            MBR            TeleShop      
## [28609] MBR            MBR            e-Shop         e-Shop        
## [28613] e-Shop         TeleShop       Flagship store MBR           
## [28617] e-Shop         TeleShop       TeleShop       Flagship store
## [28621] TeleShop       TeleShop       Flagship store e-Shop        
## [28625] TeleShop       MBR            TeleShop       Flagship store
## [28629] MBR            MBR            Flagship store TeleShop      
## [28633] MBR            Flagship store MBR            MBR           
## [28637] Flagship store MBR            MBR            Flagship store
## [28641] MBR            Flagship store Flagship store MBR           
## [28645] Flagship store MBR            MBR            MBR           
## [28649] MBR            MBR            Flagship store Flagship store
## [28653] Flagship store Flagship store Flagship store Flagship store
## [28657] e-Shop         Flagship store Flagship store Flagship store
## [28661] Flagship store Flagship store e-Shop         e-Shop        
## [28665] e-Shop         Flagship store Flagship store e-Shop        
## [28669] Flagship store Flagship store TeleShop       Flagship store
## [28673] Flagship store TeleShop       MBR            MBR           
## [28677] MBR            MBR            MBR            MBR           
## [28681] MBR            MBR            MBR            MBR           
## [28685] MBR            MBR            MBR            Flagship store
## [28689] Flagship store MBR            Flagship store MBR           
## [28693] Flagship store MBR            Flagship store TeleShop      
## [28697] TeleShop       Flagship store Flagship store e-Shop        
## [28701] Flagship store MBR            MBR            e-Shop        
## [28705] Flagship store Flagship store MBR            Flagship store
## [28709] Flagship store Flagship store Flagship store Flagship store
## [28713] Flagship store e-Shop         e-Shop         MBR           
## [28717] MBR            MBR            MBR            MBR           
## [28721] e-Shop         e-Shop         e-Shop         e-Shop        
## [28725] e-Shop         TeleShop       TeleShop       e-Shop        
## [28729] MBR            TeleShop       MBR            TeleShop      
## [28733] e-Shop         MBR            TeleShop       Flagship store
## [28737] Flagship store Flagship store e-Shop         e-Shop        
## [28741] e-Shop         e-Shop         Flagship store e-Shop        
## [28745] e-Shop         e-Shop         e-Shop         e-Shop        
## [28749] Flagship store e-Shop         e-Shop         e-Shop        
## [28753] Flagship store e-Shop         e-Shop         e-Shop        
## [28757] e-Shop         e-Shop         e-Shop         e-Shop        
## [28761] e-Shop         e-Shop         e-Shop         e-Shop        
## [28765] e-Shop         e-Shop         e-Shop         TeleShop      
## [28769] e-Shop         e-Shop         e-Shop         TeleShop      
## [28773] e-Shop         e-Shop         e-Shop         Flagship store
## [28777] e-Shop         Flagship store Flagship store e-Shop        
## [28781] Flagship store Flagship store Flagship store Flagship store
## [28785] TeleShop       Flagship store TeleShop       e-Shop        
## [28789] e-Shop         e-Shop         Flagship store Flagship store
## [28793] e-Shop         e-Shop         e-Shop         e-Shop        
## [28797] e-Shop         MBR            MBR            TeleShop      
## [28801] MBR            MBR            MBR            e-Shop        
## [28805] e-Shop         Flagship store Flagship store TeleShop      
## [28809] e-Shop         MBR            TeleShop       Flagship store
## [28813] Flagship store MBR            Flagship store MBR           
## [28817] MBR            MBR            TeleShop       Flagship store
## [28821] MBR            e-Shop         TeleShop       MBR           
## [28825] e-Shop         Flagship store Flagship store TeleShop      
## [28829] MBR            TeleShop       MBR            TeleShop      
## [28833] TeleShop       MBR            MBR            Flagship store
## [28837] MBR            MBR            TeleShop       MBR           
## [28841] e-Shop         e-Shop         MBR            MBR           
## [28845] MBR            MBR            MBR            MBR           
## [28849] MBR            MBR            MBR            e-Shop        
## [28853] e-Shop         e-Shop         MBR            TeleShop      
## [28857] TeleShop       e-Shop         TeleShop       e-Shop        
## [28861] TeleShop       e-Shop         TeleShop       e-Shop        
## [28865] e-Shop         MBR            e-Shop         MBR           
## [28869] Flagship store e-Shop         Flagship store e-Shop        
## [28873] Flagship store TeleShop       TeleShop       TeleShop      
## [28877] Flagship store e-Shop         Flagship store e-Shop        
## [28881] e-Shop         TeleShop       Flagship store Flagship store
## [28885] Flagship store e-Shop         Flagship store e-Shop        
## [28889] e-Shop         e-Shop         e-Shop         TeleShop      
## [28893] TeleShop       TeleShop       e-Shop         e-Shop        
## [28897] e-Shop         e-Shop         e-Shop         e-Shop        
## [28901] e-Shop         e-Shop         e-Shop         MBR           
## [28905] MBR            MBR            Flagship store Flagship store
## [28909] Flagship store Flagship store MBR            e-Shop        
## [28913] MBR            MBR            e-Shop         e-Shop        
## [28917] e-Shop         TeleShop       TeleShop       TeleShop      
## [28921] TeleShop       TeleShop       TeleShop       MBR           
## [28925] MBR            MBR            TeleShop       e-Shop        
## [28929] TeleShop       TeleShop       TeleShop       TeleShop      
## [28933] TeleShop       TeleShop       TeleShop       e-Shop        
## [28937] MBR            MBR            TeleShop       TeleShop      
## [28941] e-Shop         TeleShop       TeleShop       TeleShop      
## [28945] TeleShop       e-Shop         TeleShop       e-Shop        
## [28949] TeleShop       TeleShop       TeleShop       e-Shop        
## [28953] e-Shop         e-Shop         e-Shop         e-Shop        
## [28957] e-Shop         TeleShop       TeleShop       TeleShop      
## [28961] Flagship store e-Shop         e-Shop         Flagship store
## [28965] e-Shop         Flagship store MBR            MBR           
## [28969] Flagship store TeleShop       TeleShop       Flagship store
## [28973] TeleShop       MBR            TeleShop       MBR           
## [28977] TeleShop       TeleShop       MBR            MBR           
## [28981] Flagship store MBR            Flagship store MBR           
## [28985] MBR            MBR            Flagship store Flagship store
## [28989] Flagship store MBR            e-Shop         MBR           
## [28993] Flagship store Flagship store e-Shop         MBR           
## [28997] MBR            MBR            MBR            MBR           
## [29001] TeleShop       MBR            TeleShop       MBR           
## [29005] MBR            MBR            TeleShop       MBR           
## [29009] Flagship store Flagship store Flagship store Flagship store
## [29013] Flagship store e-Shop         TeleShop       TeleShop      
## [29017] Flagship store Flagship store TeleShop       TeleShop      
## [29021] Flagship store e-Shop         TeleShop       e-Shop        
## [29025] Flagship store TeleShop       Flagship store e-Shop        
## [29029] e-Shop         Flagship store MBR            e-Shop        
## [29033] e-Shop         TeleShop       MBR            MBR           
## [29037] e-Shop         TeleShop       TeleShop       TeleShop      
## [29041] Flagship store TeleShop       e-Shop         e-Shop        
## [29045] TeleShop       TeleShop       MBR            e-Shop        
## [29049] MBR            e-Shop         e-Shop         MBR           
## [29053] TeleShop       TeleShop       Flagship store Flagship store
## [29057] Flagship store Flagship store Flagship store TeleShop      
## [29061] TeleShop       TeleShop       e-Shop         e-Shop        
## [29065] TeleShop       TeleShop       TeleShop       TeleShop      
## [29069] TeleShop       TeleShop       TeleShop       TeleShop      
## [29073] TeleShop       TeleShop       TeleShop       e-Shop        
## [29077] e-Shop         e-Shop         e-Shop         e-Shop        
## [29081] e-Shop         e-Shop         e-Shop         e-Shop        
## [29085] e-Shop         e-Shop         e-Shop         e-Shop        
## [29089] e-Shop         e-Shop         e-Shop         e-Shop        
## [29093] e-Shop         e-Shop         e-Shop         MBR           
## [29097] Flagship store MBR            TeleShop       MBR           
## [29101] Flagship store MBR            Flagship store TeleShop      
## [29105] TeleShop       e-Shop         MBR            MBR           
## [29109] Flagship store TeleShop       TeleShop       Flagship store
## [29113] Flagship store Flagship store TeleShop       TeleShop      
## [29117] TeleShop       e-Shop         TeleShop       e-Shop        
## [29121] MBR            TeleShop       TeleShop       MBR           
## [29125] MBR            MBR            MBR            e-Shop        
## [29129] TeleShop       MBR            TeleShop       TeleShop      
## [29133] TeleShop       e-Shop         e-Shop         MBR           
## [29137] e-Shop         e-Shop         TeleShop       e-Shop        
## [29141] e-Shop         e-Shop         e-Shop         e-Shop        
## [29145] e-Shop         e-Shop         e-Shop         e-Shop        
## [29149] e-Shop         e-Shop         e-Shop         e-Shop        
## [29153] e-Shop         e-Shop         e-Shop         MBR           
## [29157] MBR            e-Shop         MBR            e-Shop        
## [29161] e-Shop         e-Shop         e-Shop         e-Shop        
## [29165] e-Shop         MBR            e-Shop         e-Shop        
## [29169] MBR            MBR            MBR            TeleShop      
## [29173] MBR            MBR            MBR            TeleShop      
## [29177] MBR            TeleShop       e-Shop         e-Shop        
## [29181] e-Shop         MBR            Flagship store Flagship store
## [29185] MBR            Flagship store Flagship store Flagship store
## [29189] TeleShop       TeleShop       TeleShop       TeleShop      
## [29193] TeleShop       TeleShop       TeleShop       TeleShop      
## [29197] TeleShop       TeleShop       MBR            MBR           
## [29201] MBR            MBR            MBR            MBR           
## [29205] MBR            MBR            MBR            MBR           
## [29209] MBR            e-Shop         e-Shop         e-Shop        
## [29213] Flagship store e-Shop         Flagship store TeleShop      
## [29217] Flagship store Flagship store e-Shop         TeleShop      
## [29221] e-Shop         TeleShop       TeleShop       Flagship store
## [29225] Flagship store MBR            MBR            e-Shop        
## [29229] MBR            MBR            e-Shop         MBR           
## [29233] Flagship store e-Shop         Flagship store e-Shop        
## [29237] e-Shop         Flagship store Flagship store Flagship store
## [29241] MBR            MBR            MBR            MBR           
## [29245] MBR            e-Shop         e-Shop         e-Shop        
## [29249] e-Shop         e-Shop         MBR            MBR           
## [29253] MBR            Flagship store Flagship store Flagship store
## [29257] Flagship store Flagship store Flagship store Flagship store
## [29261] Flagship store MBR            Flagship store MBR           
## [29265] Flagship store e-Shop         TeleShop       e-Shop        
## [29269] e-Shop         e-Shop         e-Shop         e-Shop        
## [29273] e-Shop         TeleShop       e-Shop         TeleShop      
## [29277] TeleShop       TeleShop       TeleShop       TeleShop      
## [29281] TeleShop       TeleShop       TeleShop       e-Shop        
## [29285] e-Shop         e-Shop         e-Shop         e-Shop        
## [29289] e-Shop         e-Shop         e-Shop         e-Shop        
## [29293] e-Shop         e-Shop         e-Shop         Flagship store
## [29297] MBR            MBR            MBR            e-Shop        
## [29301] MBR            e-Shop         e-Shop         e-Shop        
## [29305] e-Shop         e-Shop         e-Shop         MBR           
## [29309] e-Shop         MBR            e-Shop         e-Shop        
## [29313] e-Shop         e-Shop         e-Shop         e-Shop        
## [29317] e-Shop         e-Shop         Flagship store e-Shop        
## [29321] Flagship store MBR            e-Shop         e-Shop        
## [29325] e-Shop         e-Shop         MBR            MBR           
## [29329] MBR            MBR            MBR            TeleShop      
## [29333] TeleShop       Flagship store TeleShop       Flagship store
## [29337] Flagship store Flagship store e-Shop         e-Shop        
## [29341] e-Shop         e-Shop         e-Shop         e-Shop        
## [29345] e-Shop         e-Shop         e-Shop         e-Shop        
## [29349] e-Shop         e-Shop         e-Shop         Flagship store
## [29353] Flagship store e-Shop         Flagship store Flagship store
## [29357] Flagship store e-Shop         e-Shop         e-Shop        
## [29361] e-Shop         Flagship store TeleShop       Flagship store
## [29365] Flagship store TeleShop       TeleShop       Flagship store
## [29369] Flagship store Flagship store Flagship store Flagship store
## [29373] Flagship store Flagship store Flagship store Flagship store
## [29377] e-Shop         Flagship store e-Shop         e-Shop        
## [29381] Flagship store e-Shop         Flagship store Flagship store
## [29385] Flagship store Flagship store Flagship store Flagship store
## [29389] Flagship store Flagship store Flagship store Flagship store
## [29393] MBR            MBR            MBR            MBR           
## [29397] Flagship store Flagship store MBR            MBR           
## [29401] MBR            e-Shop         MBR            MBR           
## [29405] e-Shop         MBR            MBR            MBR           
## [29409] e-Shop         e-Shop         e-Shop         e-Shop        
## [29413] e-Shop         e-Shop         e-Shop         e-Shop        
## [29417] e-Shop         e-Shop         e-Shop         e-Shop        
## [29421] e-Shop         Flagship store Flagship store Flagship store
## [29425] Flagship store e-Shop         Flagship store Flagship store
## [29429] Flagship store Flagship store Flagship store e-Shop        
## [29433] MBR            MBR            e-Shop         MBR           
## [29437] e-Shop         MBR            e-Shop         e-Shop        
## [29441] e-Shop         e-Shop         e-Shop         MBR           
## [29445] TeleShop       e-Shop         e-Shop         TeleShop      
## [29449] MBR            MBR            Flagship store MBR           
## [29453] Flagship store e-Shop         e-Shop         e-Shop        
## [29457] e-Shop         e-Shop         e-Shop         e-Shop        
## [29461] e-Shop         e-Shop         e-Shop         MBR           
## [29465] MBR            Flagship store Flagship store e-Shop        
## [29469] Flagship store e-Shop         Flagship store e-Shop        
## [29473] Flagship store e-Shop         e-Shop         e-Shop        
## [29477] Flagship store e-Shop         e-Shop         e-Shop        
## [29481] e-Shop         e-Shop         e-Shop         e-Shop        
## [29485] e-Shop         Flagship store Flagship store e-Shop        
## [29489] Flagship store e-Shop         e-Shop         e-Shop        
## [29493] Flagship store e-Shop         Flagship store e-Shop        
## [29497] Flagship store TeleShop       MBR            TeleShop      
## [29501] MBR            TeleShop       Flagship store Flagship store
## [29505] e-Shop         e-Shop         Flagship store e-Shop        
## [29509] Flagship store e-Shop         e-Shop         e-Shop        
## [29513] e-Shop         e-Shop         MBR            MBR           
## [29517] MBR            MBR            MBR            MBR           
## [29521] MBR            MBR            MBR            e-Shop        
## [29525] MBR            MBR            e-Shop         e-Shop        
## [29529] Flagship store Flagship store Flagship store Flagship store
## [29533] Flagship store Flagship store Flagship store TeleShop      
## [29537] TeleShop       TeleShop       TeleShop       TeleShop      
## [29541] TeleShop       e-Shop         e-Shop         e-Shop        
## [29545] TeleShop       TeleShop       e-Shop         e-Shop        
## [29549] e-Shop         MBR            TeleShop       e-Shop        
## [29553] e-Shop         MBR            e-Shop         TeleShop      
## [29557] e-Shop         MBR            MBR            e-Shop        
## [29561] TeleShop       e-Shop         TeleShop       TeleShop      
## [29565] MBR            TeleShop       MBR            TeleShop      
## [29569] MBR            MBR            MBR            MBR           
## [29573] TeleShop       TeleShop       e-Shop         MBR           
## [29577] MBR            TeleShop       TeleShop       TeleShop      
## [29581] e-Shop         e-Shop         TeleShop       e-Shop        
## [29585] MBR            TeleShop       TeleShop       e-Shop        
## [29589] e-Shop         e-Shop         MBR            TeleShop      
## [29593] MBR            e-Shop         Flagship store Flagship store
## [29597] Flagship store MBR            Flagship store e-Shop        
## [29601] e-Shop         e-Shop         e-Shop         e-Shop        
## [29605] Flagship store Flagship store TeleShop       e-Shop        
## [29609] Flagship store MBR            e-Shop         MBR           
## [29613] e-Shop         MBR            TeleShop       TeleShop      
## [29617] e-Shop         e-Shop         e-Shop         Flagship store
## [29621] e-Shop         e-Shop         TeleShop       TeleShop      
## [29625] TeleShop       e-Shop         e-Shop         e-Shop        
## [29629] e-Shop         e-Shop         e-Shop         Flagship store
## [29633] e-Shop         Flagship store e-Shop         e-Shop        
## [29637] TeleShop       TeleShop       TeleShop       TeleShop      
## [29641] TeleShop       Flagship store Flagship store Flagship store
## [29645] e-Shop         e-Shop         Flagship store Flagship store
## [29649] e-Shop         e-Shop         e-Shop         e-Shop        
## [29653] e-Shop         e-Shop         e-Shop         e-Shop        
## [29657] e-Shop         e-Shop         e-Shop         e-Shop        
## [29661] e-Shop         e-Shop         e-Shop         e-Shop        
## [29665] e-Shop         e-Shop         e-Shop         MBR           
## [29669] MBR            Flagship store Flagship store MBR           
## [29673] Flagship store MBR            Flagship store Flagship store
## [29677] Flagship store TeleShop       TeleShop       TeleShop      
## [29681] TeleShop       TeleShop       TeleShop       TeleShop      
## [29685] Flagship store Flagship store Flagship store e-Shop        
## [29689] TeleShop       e-Shop         e-Shop         TeleShop      
## [29693] MBR            MBR            e-Shop         e-Shop        
## [29697] MBR            TeleShop       TeleShop       TeleShop      
## [29701] e-Shop         MBR            TeleShop       MBR           
## [29705] TeleShop       e-Shop         e-Shop         e-Shop        
## [29709] e-Shop         e-Shop         e-Shop         e-Shop        
## [29713] e-Shop         e-Shop         e-Shop         e-Shop        
## [29717] e-Shop         e-Shop         e-Shop         Flagship store
## [29721] TeleShop       TeleShop       TeleShop       e-Shop        
## [29725] TeleShop       Flagship store Flagship store Flagship store
## [29729] Flagship store Flagship store TeleShop       Flagship store
## [29733] TeleShop       Flagship store e-Shop         Flagship store
## [29737] Flagship store Flagship store Flagship store Flagship store
## [29741] e-Shop         e-Shop         Flagship store Flagship store
## [29745] Flagship store Flagship store Flagship store e-Shop        
## [29749] e-Shop         e-Shop         e-Shop         TeleShop      
## [29753] e-Shop         e-Shop         TeleShop       TeleShop      
## [29757] e-Shop         TeleShop       e-Shop         e-Shop        
## [29761] e-Shop         e-Shop         e-Shop         e-Shop        
## [29765] e-Shop         e-Shop         e-Shop         e-Shop        
## [29769] e-Shop         e-Shop         e-Shop         e-Shop        
## [29773] e-Shop         e-Shop         e-Shop         e-Shop        
## [29777] e-Shop         e-Shop         MBR            e-Shop        
## [29781] MBR            e-Shop         e-Shop         e-Shop        
## [29785] e-Shop         e-Shop         e-Shop         e-Shop        
## [29789] e-Shop         e-Shop         e-Shop         e-Shop        
## [29793] TeleShop       e-Shop         TeleShop       e-Shop        
## [29797] TeleShop       e-Shop         TeleShop       e-Shop        
## [29801] e-Shop         e-Shop         TeleShop       e-Shop        
## [29805] e-Shop         e-Shop         e-Shop         e-Shop        
## [29809] e-Shop         e-Shop         e-Shop         e-Shop        
## [29813] e-Shop         e-Shop         Flagship store e-Shop        
## [29817] e-Shop         e-Shop         e-Shop         e-Shop        
## [29821] e-Shop         e-Shop         e-Shop         Flagship store
## [29825] e-Shop         e-Shop         Flagship store e-Shop        
## [29829] Flagship store Flagship store Flagship store Flagship store
## [29833] Flagship store e-Shop         MBR            MBR           
## [29837] e-Shop         e-Shop         e-Shop         MBR           
## [29841] Flagship store Flagship store e-Shop         e-Shop        
## [29845] e-Shop         e-Shop         Flagship store e-Shop        
## [29849] MBR            TeleShop       TeleShop       MBR           
## [29853] MBR            TeleShop       e-Shop         e-Shop        
## [29857] e-Shop         Flagship store e-Shop         e-Shop        
## [29861] Flagship store Flagship store e-Shop         e-Shop        
## [29865] Flagship store e-Shop         Flagship store e-Shop        
## [29869] e-Shop         MBR            e-Shop         MBR           
## [29873] MBR            TeleShop       MBR            e-Shop        
## [29877] TeleShop       e-Shop         MBR            MBR           
## [29881] e-Shop         e-Shop         MBR            TeleShop      
## [29885] MBR            TeleShop       TeleShop       e-Shop        
## [29889] e-Shop         e-Shop         e-Shop         e-Shop        
## [29893] e-Shop         e-Shop         Flagship store Flagship store
## [29897] Flagship store Flagship store Flagship store e-Shop        
## [29901] TeleShop       TeleShop       e-Shop         e-Shop        
## [29905] e-Shop         TeleShop       e-Shop         e-Shop        
## [29909] TeleShop       TeleShop       Flagship store TeleShop      
## [29913] e-Shop         Flagship store e-Shop         Flagship store
## [29917] e-Shop         Flagship store e-Shop         MBR           
## [29921] MBR            MBR            MBR            MBR           
## [29925] MBR            Flagship store Flagship store Flagship store
## [29929] Flagship store Flagship store e-Shop         e-Shop        
## [29933] MBR            TeleShop       TeleShop       MBR           
## [29937] MBR            TeleShop       TeleShop       TeleShop      
## [29941] MBR            TeleShop       e-Shop         TeleShop      
## [29945] TeleShop       TeleShop       TeleShop       MBR           
## [29949] e-Shop         MBR            e-Shop         e-Shop        
## [29953] e-Shop         e-Shop         e-Shop         e-Shop        
## [29957] e-Shop         e-Shop         e-Shop         e-Shop        
## [29961] e-Shop         e-Shop         e-Shop         e-Shop        
## [29965] e-Shop         e-Shop         e-Shop         e-Shop        
## [29969] TeleShop       TeleShop       e-Shop         e-Shop        
## [29973] e-Shop         e-Shop         e-Shop         e-Shop        
## [29977] e-Shop         e-Shop         e-Shop         e-Shop        
## [29981] MBR            e-Shop         MBR            e-Shop        
## [29985] e-Shop         e-Shop         e-Shop         e-Shop        
## [29989] TeleShop       TeleShop       TeleShop       TeleShop      
## [29993] TeleShop       TeleShop       TeleShop       TeleShop      
## [29997] TeleShop       TeleShop       TeleShop       TeleShop      
## [30001] MBR            e-Shop         MBR            e-Shop        
## [30005] MBR            e-Shop         TeleShop       TeleShop      
## [30009] TeleShop       Flagship store TeleShop       Flagship store
## [30013] TeleShop       TeleShop       e-Shop         e-Shop        
## [30017] TeleShop       MBR            MBR            MBR           
## [30021] e-Shop         MBR            e-Shop         e-Shop        
## [30025] e-Shop         e-Shop         MBR            Flagship store
## [30029] Flagship store e-Shop         Flagship store Flagship store
## [30033] e-Shop         Flagship store Flagship store e-Shop        
## [30037] Flagship store Flagship store Flagship store Flagship store
## [30041] Flagship store e-Shop         Flagship store e-Shop        
## [30045] e-Shop         Flagship store e-Shop         Flagship store
## [30049] Flagship store e-Shop         e-Shop         e-Shop        
## [30053] e-Shop         e-Shop         e-Shop         e-Shop        
## [30057] e-Shop         e-Shop         e-Shop         MBR           
## [30061] e-Shop         e-Shop         MBR            MBR           
## [30065] MBR            e-Shop         e-Shop         e-Shop        
## [30069] MBR            MBR            e-Shop         e-Shop        
## [30073] e-Shop         e-Shop         MBR            e-Shop        
## [30077] e-Shop         TeleShop       e-Shop         TeleShop      
## [30081] e-Shop         e-Shop         e-Shop         TeleShop      
## [30085] e-Shop         Flagship store e-Shop         TeleShop      
## [30089] Flagship store TeleShop       e-Shop         e-Shop        
## [30093] e-Shop         e-Shop         e-Shop         e-Shop        
## [30097] e-Shop         e-Shop         e-Shop         e-Shop        
## [30101] e-Shop         MBR            MBR            e-Shop        
## [30105] MBR            e-Shop         e-Shop         e-Shop        
## [30109] e-Shop         e-Shop         e-Shop         e-Shop        
## [30113] MBR            MBR            e-Shop         TeleShop      
## [30117] e-Shop         e-Shop         TeleShop       e-Shop        
## [30121] TeleShop       e-Shop         Flagship store Flagship store
## [30125] Flagship store e-Shop         Flagship store TeleShop      
## [30129] Flagship store Flagship store e-Shop         Flagship store
## [30133] Flagship store TeleShop       Flagship store Flagship store
## [30137] Flagship store e-Shop         TeleShop       e-Shop        
## [30141] Flagship store e-Shop         TeleShop       TeleShop      
## [30145] Flagship store TeleShop       TeleShop       TeleShop      
## [30149] MBR            TeleShop       MBR            MBR           
## [30153] e-Shop         MBR            e-Shop         MBR           
## [30157] e-Shop         TeleShop       e-Shop         e-Shop        
## [30161] TeleShop       TeleShop       e-Shop         Flagship store
## [30165] Flagship store Flagship store e-Shop         e-Shop        
## [30169] e-Shop         e-Shop         e-Shop         e-Shop        
## [30173] e-Shop         e-Shop         e-Shop         e-Shop        
## [30177] e-Shop         MBR            e-Shop         MBR           
## [30181] MBR            MBR            MBR            MBR           
## [30185] MBR            e-Shop         e-Shop         e-Shop        
## [30189] Flagship store e-Shop         e-Shop         e-Shop        
## [30193] Flagship store e-Shop         e-Shop         e-Shop        
## [30197] e-Shop         e-Shop         e-Shop         Flagship store
## [30201] e-Shop         MBR            e-Shop         e-Shop        
## [30205] e-Shop         e-Shop         e-Shop         MBR           
## [30209] MBR            e-Shop         e-Shop         e-Shop        
## [30213] e-Shop         TeleShop       MBR            e-Shop        
## [30217] e-Shop         e-Shop         TeleShop       MBR           
## [30221] TeleShop       e-Shop         MBR            e-Shop        
## [30225] MBR            e-Shop         TeleShop       MBR           
## [30229] MBR            MBR            MBR            MBR           
## [30233] MBR            MBR            MBR            MBR           
## [30237] MBR            MBR            MBR            MBR           
## [30241] Flagship store MBR            MBR            MBR           
## [30245] Flagship store Flagship store TeleShop       e-Shop        
## [30249] TeleShop       e-Shop         TeleShop       TeleShop      
## [30253] e-Shop         e-Shop         TeleShop       e-Shop        
## [30257] MBR            TeleShop       MBR            TeleShop      
## [30261] MBR            MBR            MBR            MBR           
## [30265] TeleShop       MBR            TeleShop       MBR           
## [30269] TeleShop       MBR            MBR            TeleShop      
## [30273] MBR            TeleShop       MBR            TeleShop      
## [30277] TeleShop       MBR            MBR            MBR           
## [30281] MBR            MBR            e-Shop         e-Shop        
## [30285] Flagship store Flagship store Flagship store e-Shop        
## [30289] e-Shop         e-Shop         e-Shop         e-Shop        
## [30293] e-Shop         e-Shop         e-Shop         e-Shop        
## [30297] e-Shop         e-Shop         e-Shop         e-Shop        
## [30301] e-Shop         e-Shop         e-Shop         e-Shop        
## [30305] e-Shop         e-Shop         MBR            MBR           
## [30309] MBR            MBR            MBR            MBR           
## [30313] MBR            MBR            MBR            MBR           
## [30317] MBR            TeleShop       TeleShop       TeleShop      
## [30321] MBR            TeleShop       TeleShop       TeleShop      
## [30325] e-Shop         TeleShop       TeleShop       TeleShop      
## [30329] e-Shop         e-Shop         TeleShop       TeleShop      
## [30333] MBR            e-Shop         Flagship store MBR           
## [30337] MBR            Flagship store e-Shop         Flagship store
## [30341] e-Shop         e-Shop         Flagship store Flagship store
## [30345] e-Shop         MBR            e-Shop         MBR           
## [30349] e-Shop         Flagship store MBR            e-Shop        
## [30353] e-Shop         e-Shop         e-Shop         e-Shop        
## [30357] TeleShop       TeleShop       TeleShop       MBR           
## [30361] e-Shop         Flagship store Flagship store MBR           
## [30365] Flagship store MBR            MBR            MBR           
## [30369] e-Shop         Flagship store MBR            MBR           
## [30373] MBR            MBR            MBR            MBR           
## [30377] MBR            Flagship store MBR            MBR           
## [30381] Flagship store Flagship store MBR            MBR           
## [30385] e-Shop         e-Shop         e-Shop         e-Shop        
## [30389] e-Shop         e-Shop         e-Shop         e-Shop        
## [30393] e-Shop         e-Shop         e-Shop         e-Shop        
## [30397] e-Shop         e-Shop         e-Shop         e-Shop        
## [30401] e-Shop         e-Shop         e-Shop         e-Shop        
## [30405] e-Shop         Flagship store TeleShop       TeleShop      
## [30409] Flagship store e-Shop         e-Shop         e-Shop        
## [30413] e-Shop         e-Shop         e-Shop         e-Shop        
## [30417] e-Shop         e-Shop         e-Shop         e-Shop        
## [30421] e-Shop         e-Shop         TeleShop       e-Shop        
## [30425] TeleShop       TeleShop       TeleShop       TeleShop      
## [30429] e-Shop         TeleShop       e-Shop         e-Shop        
## [30433] e-Shop         e-Shop         e-Shop         Flagship store
## [30437] Flagship store Flagship store MBR            MBR           
## [30441] Flagship store MBR            MBR            Flagship store
## [30445] MBR            MBR            MBR            MBR           
## [30449] MBR            MBR            MBR            e-Shop        
## [30453] MBR            MBR            MBR            MBR           
## [30457] e-Shop         e-Shop         e-Shop         MBR           
## [30461] MBR            MBR            MBR            e-Shop        
## [30465] e-Shop         e-Shop         e-Shop         MBR           
## [30469] e-Shop         MBR            MBR            MBR           
## [30473] MBR            e-Shop         e-Shop         MBR           
## [30477] e-Shop         MBR            e-Shop         e-Shop        
## [30481] MBR            e-Shop         MBR            e-Shop        
## [30485] e-Shop         e-Shop         e-Shop         e-Shop        
## [30489] e-Shop         e-Shop         e-Shop         e-Shop        
## [30493] e-Shop         e-Shop         e-Shop         e-Shop        
## [30497] e-Shop         e-Shop         MBR            e-Shop        
## [30501] e-Shop         e-Shop         e-Shop         e-Shop        
## [30505] e-Shop         e-Shop         e-Shop         e-Shop        
## [30509] MBR            TeleShop       TeleShop       TeleShop      
## [30513] e-Shop         e-Shop         e-Shop         e-Shop        
## [30517] e-Shop         e-Shop         e-Shop         e-Shop        
## [30521] TeleShop       e-Shop         MBR            e-Shop        
## [30525] e-Shop         MBR            TeleShop       TeleShop      
## [30529] MBR            MBR            TeleShop       Flagship store
## [30533] Flagship store TeleShop       e-Shop         e-Shop        
## [30537] Flagship store TeleShop       Flagship store Flagship store
## [30541] e-Shop         MBR            MBR            e-Shop        
## [30545] MBR            MBR            MBR            e-Shop        
## [30549] MBR            MBR            MBR            MBR           
## [30553] MBR            MBR            e-Shop         e-Shop        
## [30557] e-Shop         e-Shop         e-Shop         e-Shop        
## [30561] e-Shop         MBR            e-Shop         e-Shop        
## [30565] MBR            e-Shop         MBR            e-Shop        
## [30569] e-Shop         e-Shop         Flagship store Flagship store
## [30573] MBR            e-Shop         TeleShop       Flagship store
## [30577] e-Shop         TeleShop       MBR            e-Shop        
## [30581] Flagship store MBR            e-Shop         MBR           
## [30585] Flagship store MBR            e-Shop         Flagship store
## [30589] MBR            Flagship store Flagship store Flagship store
## [30593] MBR            TeleShop       e-Shop         MBR           
## [30597] e-Shop         e-Shop         TeleShop       e-Shop        
## [30601] MBR            e-Shop         MBR            e-Shop        
## [30605] TeleShop       TeleShop       Flagship store TeleShop      
## [30609] e-Shop         e-Shop         MBR            e-Shop        
## [30613] MBR            MBR            e-Shop         Flagship store
## [30617] TeleShop       TeleShop       TeleShop       e-Shop        
## [30621] e-Shop         TeleShop       TeleShop       e-Shop        
## [30625] e-Shop         Flagship store Flagship store Flagship store
## [30629] Flagship store Flagship store Flagship store e-Shop        
## [30633] e-Shop         Flagship store e-Shop         TeleShop      
## [30637] e-Shop         TeleShop       e-Shop         e-Shop        
## [30641] e-Shop         TeleShop       Flagship store MBR           
## [30645] e-Shop         e-Shop         e-Shop         e-Shop        
## [30649] MBR            MBR            e-Shop         e-Shop        
## [30653] Flagship store Flagship store e-Shop         e-Shop        
## [30657] TeleShop       e-Shop         TeleShop       TeleShop      
## [30661] e-Shop         e-Shop         Flagship store TeleShop      
## [30665] Flagship store TeleShop       TeleShop       TeleShop      
## [30669] Flagship store Flagship store TeleShop       Flagship store
## [30673] Flagship store e-Shop         Flagship store e-Shop        
## [30677] Flagship store e-Shop         Flagship store e-Shop        
## [30681] e-Shop         TeleShop       TeleShop       e-Shop        
## [30685] e-Shop         TeleShop       e-Shop         Flagship store
## [30689] e-Shop         e-Shop         Flagship store MBR           
## [30693] Flagship store e-Shop         e-Shop         Flagship store
## [30697] MBR            Flagship store MBR            MBR           
## [30701] Flagship store e-Shop         e-Shop         e-Shop        
## [30705] MBR            Flagship store e-Shop         Flagship store
## [30709] Flagship store Flagship store e-Shop         Flagship store
## [30713] e-Shop         MBR            TeleShop       MBR           
## [30717] Flagship store Flagship store TeleShop       MBR           
## [30721] MBR            TeleShop       Flagship store MBR           
## [30725] TeleShop       TeleShop       TeleShop       MBR           
## [30729] Flagship store Flagship store Flagship store MBR           
## [30733] e-Shop         TeleShop       e-Shop         e-Shop        
## [30737] e-Shop         MBR            e-Shop         e-Shop        
## [30741] e-Shop         MBR            e-Shop         e-Shop        
## [30745] e-Shop         e-Shop         Flagship store Flagship store
## [30749] Flagship store Flagship store Flagship store Flagship store
## [30753] e-Shop         Flagship store e-Shop         Flagship store
## [30757] MBR            Flagship store e-Shop         Flagship store
## [30761] MBR            Flagship store Flagship store e-Shop        
## [30765] Flagship store Flagship store e-Shop         Flagship store
## [30769] e-Shop         Flagship store Flagship store MBR           
## [30773] MBR            Flagship store MBR            e-Shop        
## [30777] MBR            MBR            TeleShop       TeleShop      
## [30781] TeleShop       e-Shop         e-Shop         e-Shop        
## [30785] e-Shop         e-Shop         e-Shop         Flagship store
## [30789] e-Shop         e-Shop         e-Shop         e-Shop        
## [30793] MBR            e-Shop         MBR            Flagship store
## [30797] TeleShop       TeleShop       e-Shop         TeleShop      
## [30801] e-Shop         e-Shop         e-Shop         e-Shop        
## [30805] TeleShop       TeleShop       TeleShop       TeleShop      
## [30809] e-Shop         TeleShop       TeleShop       TeleShop      
## [30813] TeleShop       MBR            TeleShop       e-Shop        
## [30817] e-Shop         MBR            TeleShop       e-Shop        
## [30821] TeleShop       TeleShop       e-Shop         e-Shop        
## [30825] e-Shop         e-Shop         TeleShop       e-Shop        
## [30829] TeleShop       e-Shop         TeleShop       TeleShop      
## [30833] TeleShop       TeleShop       e-Shop         Flagship store
## [30837] e-Shop         TeleShop       Flagship store Flagship store
## [30841] TeleShop       Flagship store TeleShop       Flagship store
## [30845] MBR            e-Shop         e-Shop         e-Shop        
## [30849] e-Shop         e-Shop         e-Shop         MBR           
## [30853] MBR            MBR            MBR            MBR           
## [30857] MBR            e-Shop         e-Shop         TeleShop      
## [30861] TeleShop       TeleShop       TeleShop       TeleShop      
## [30865] TeleShop       TeleShop       TeleShop       e-Shop        
## [30869] e-Shop         e-Shop         TeleShop       e-Shop        
## [30873] e-Shop         e-Shop         Flagship store MBR           
## [30877] MBR            MBR            Flagship store Flagship store
## [30881] MBR            MBR            Flagship store e-Shop        
## [30885] Flagship store e-Shop         MBR            e-Shop        
## [30889] e-Shop         e-Shop         e-Shop         MBR           
## [30893] Flagship store Flagship store MBR            e-Shop        
## [30897] e-Shop         e-Shop         e-Shop         e-Shop        
## [30901] e-Shop         e-Shop         Flagship store MBR           
## [30905] MBR            Flagship store MBR            Flagship store
## [30909] Flagship store Flagship store Flagship store MBR           
## [30913] MBR            MBR            TeleShop       TeleShop      
## [30917] MBR            TeleShop       MBR            MBR           
## [30921] Flagship store TeleShop       Flagship store Flagship store
## [30925] TeleShop       Flagship store Flagship store e-Shop        
## [30929] e-Shop         TeleShop       Flagship store TeleShop      
## [30933] Flagship store Flagship store Flagship store TeleShop      
## [30937] Flagship store TeleShop       Flagship store Flagship store
## [30941] Flagship store MBR            Flagship store Flagship store
## [30945] Flagship store MBR            MBR            Flagship store
## [30949] Flagship store Flagship store Flagship store Flagship store
## [30953] Flagship store Flagship store Flagship store TeleShop      
## [30957] TeleShop       e-Shop         e-Shop         TeleShop      
## [30961] TeleShop       e-Shop         TeleShop       TeleShop      
## [30965] TeleShop       TeleShop       TeleShop       TeleShop      
## [30969] TeleShop       TeleShop       e-Shop         e-Shop        
## [30973] e-Shop         e-Shop         e-Shop         e-Shop        
## [30977] e-Shop         e-Shop         e-Shop         e-Shop        
## [30981] e-Shop         e-Shop         e-Shop         e-Shop        
## [30985] e-Shop         e-Shop         e-Shop         Flagship store
## [30989] Flagship store Flagship store Flagship store TeleShop      
## [30993] TeleShop       TeleShop       MBR            TeleShop      
## [30997] TeleShop       e-Shop         MBR            TeleShop      
## [31001] e-Shop         MBR            e-Shop         MBR           
## [31005] MBR            e-Shop         e-Shop         TeleShop      
## [31009] TeleShop       TeleShop       MBR            TeleShop      
## [31013] MBR            MBR            MBR            e-Shop        
## [31017] e-Shop         MBR            e-Shop         e-Shop        
## [31021] e-Shop         MBR            MBR            e-Shop        
## [31025] e-Shop         e-Shop         e-Shop         e-Shop        
## [31029] e-Shop         Flagship store Flagship store Flagship store
## [31033] MBR            Flagship store MBR            Flagship store
## [31037] e-Shop         e-Shop         e-Shop         MBR           
## [31041] e-Shop         e-Shop         e-Shop         Flagship store
## [31045] Flagship store Flagship store e-Shop         e-Shop        
## [31049] e-Shop         e-Shop         e-Shop         Flagship store
## [31053] e-Shop         Flagship store Flagship store e-Shop        
## [31057] e-Shop         e-Shop         Flagship store Flagship store
## [31061] Flagship store e-Shop         e-Shop         Flagship store
## [31065] e-Shop         MBR            MBR            MBR           
## [31069] MBR            Flagship store e-Shop         e-Shop        
## [31073] MBR            MBR            e-Shop         Flagship store
## [31077] e-Shop         e-Shop         Flagship store Flagship store
## [31081] MBR            e-Shop         e-Shop         MBR           
## [31085] e-Shop         e-Shop         Flagship store e-Shop        
## [31089] e-Shop         Flagship store e-Shop         Flagship store
## [31093] Flagship store Flagship store Flagship store e-Shop        
## [31097] Flagship store e-Shop         Flagship store e-Shop        
## [31101] Flagship store Flagship store MBR            MBR           
## [31105] Flagship store Flagship store e-Shop         MBR           
## [31109] e-Shop         e-Shop         e-Shop         e-Shop        
## [31113] MBR            e-Shop         e-Shop         e-Shop        
## [31117] MBR            MBR            Flagship store e-Shop        
## [31121] e-Shop         e-Shop         e-Shop         Flagship store
## [31125] Flagship store e-Shop         e-Shop         Flagship store
## [31129] Flagship store e-Shop         e-Shop         e-Shop        
## [31133] TeleShop       e-Shop         Flagship store TeleShop      
## [31137] e-Shop         TeleShop       e-Shop         TeleShop      
## [31141] TeleShop       TeleShop       TeleShop       TeleShop      
## [31145] TeleShop       TeleShop       Flagship store TeleShop      
## [31149] e-Shop         e-Shop         e-Shop         e-Shop        
## [31153] TeleShop       TeleShop       e-Shop         e-Shop        
## [31157] TeleShop       e-Shop         TeleShop       TeleShop      
## [31161] e-Shop         TeleShop       TeleShop       Flagship store
## [31165] Flagship store Flagship store TeleShop       Flagship store
## [31169] Flagship store TeleShop       e-Shop         e-Shop        
## [31173] MBR            e-Shop         MBR            e-Shop        
## [31177] e-Shop         e-Shop         e-Shop         TeleShop      
## [31181] TeleShop       TeleShop       TeleShop       TeleShop      
## [31185] TeleShop       TeleShop       TeleShop       TeleShop      
## [31189] e-Shop         TeleShop       e-Shop         TeleShop      
## [31193] TeleShop       e-Shop         TeleShop       TeleShop      
## [31197] MBR            TeleShop       e-Shop         TeleShop      
## [31201] TeleShop       MBR            MBR            MBR           
## [31205] TeleShop       Flagship store e-Shop         e-Shop        
## [31209] e-Shop         Flagship store MBR            Flagship store
## [31213] Flagship store MBR            Flagship store MBR           
## [31217] MBR            MBR            TeleShop       TeleShop      
## [31221] TeleShop       TeleShop       Flagship store TeleShop      
## [31225] Flagship store e-Shop         MBR            MBR           
## [31229] MBR            e-Shop         MBR            MBR           
## [31233] e-Shop         MBR            Flagship store TeleShop      
## [31237] TeleShop       TeleShop       TeleShop       TeleShop      
## [31241] Flagship store TeleShop       TeleShop       Flagship store
## [31245] TeleShop       Flagship store Flagship store MBR           
## [31249] TeleShop       e-Shop         e-Shop         MBR           
## [31253] TeleShop       TeleShop       e-Shop         e-Shop        
## [31257] Flagship store Flagship store Flagship store Flagship store
## [31261] Flagship store Flagship store Flagship store Flagship store
## [31265] Flagship store Flagship store Flagship store Flagship store
## [31269] Flagship store TeleShop       TeleShop       Flagship store
## [31273] Flagship store Flagship store Flagship store Flagship store
## [31277] e-Shop         e-Shop         Flagship store Flagship store
## [31281] e-Shop         e-Shop         e-Shop         Flagship store
## [31285] MBR            Flagship store MBR            Flagship store
## [31289] Flagship store MBR            MBR            MBR           
## [31293] MBR            MBR            Flagship store Flagship store
## [31297] MBR            MBR            Flagship store e-Shop        
## [31301] Flagship store e-Shop         Flagship store MBR           
## [31305] MBR            Flagship store Flagship store MBR           
## [31309] MBR            e-Shop         e-Shop         TeleShop      
## [31313] Flagship store TeleShop       Flagship store e-Shop        
## [31317] e-Shop         Flagship store Flagship store Flagship store
## [31321] MBR            Flagship store Flagship store TeleShop      
## [31325] Flagship store MBR            e-Shop         MBR           
## [31329] e-Shop         e-Shop         e-Shop         MBR           
## [31333] MBR            e-Shop         MBR            e-Shop        
## [31337] e-Shop         e-Shop         MBR            Flagship store
## [31341] Flagship store Flagship store Flagship store Flagship store
## [31345] Flagship store TeleShop       e-Shop         TeleShop      
## [31349] TeleShop       TeleShop       TeleShop       e-Shop        
## [31353] Flagship store Flagship store Flagship store Flagship store
## [31357] Flagship store Flagship store Flagship store Flagship store
## [31361] Flagship store e-Shop         e-Shop         Flagship store
## [31365] e-Shop         Flagship store Flagship store e-Shop        
## [31369] Flagship store e-Shop         Flagship store e-Shop        
## [31373] e-Shop         e-Shop         e-Shop         e-Shop        
## [31377] e-Shop         e-Shop         e-Shop         e-Shop        
## [31381] e-Shop         e-Shop         e-Shop         TeleShop      
## [31385] TeleShop       TeleShop       e-Shop         TeleShop      
## [31389] TeleShop       TeleShop       e-Shop         e-Shop        
## [31393] e-Shop         e-Shop         e-Shop         e-Shop        
## [31397] e-Shop         TeleShop       TeleShop       TeleShop      
## [31401] TeleShop       e-Shop         Flagship store e-Shop        
## [31405] e-Shop         e-Shop         Flagship store e-Shop        
## [31409] Flagship store e-Shop         e-Shop         e-Shop        
## [31413] TeleShop       TeleShop       TeleShop       TeleShop      
## [31417] TeleShop       e-Shop         TeleShop       TeleShop      
## [31421] e-Shop         TeleShop       e-Shop         e-Shop        
## [31425] TeleShop       TeleShop       TeleShop       TeleShop      
## [31429] e-Shop         TeleShop       e-Shop         MBR           
## [31433] e-Shop         e-Shop         MBR            MBR           
## [31437] e-Shop         e-Shop         e-Shop         MBR           
## [31441] e-Shop         e-Shop         e-Shop         Flagship store
## [31445] Flagship store Flagship store e-Shop         e-Shop        
## [31449] e-Shop         e-Shop         Flagship store Flagship store
## [31453] e-Shop         e-Shop         e-Shop         e-Shop        
## [31457] Flagship store e-Shop         TeleShop       e-Shop        
## [31461] TeleShop       TeleShop       MBR            e-Shop        
## [31465] MBR            MBR            TeleShop       e-Shop        
## [31469] TeleShop       e-Shop         e-Shop         e-Shop        
## [31473] MBR            Flagship store MBR            Flagship store
## [31477] Flagship store Flagship store Flagship store e-Shop        
## [31481] e-Shop         e-Shop         e-Shop         Flagship store
## [31485] Flagship store e-Shop         e-Shop         Flagship store
## [31489] TeleShop       Flagship store TeleShop       TeleShop      
## [31493] Flagship store TeleShop       Flagship store Flagship store
## [31497] Flagship store Flagship store TeleShop       TeleShop      
## [31501] TeleShop       Flagship store e-Shop         Flagship store
## [31505] e-Shop         e-Shop         Flagship store Flagship store
## [31509] e-Shop         e-Shop         e-Shop         e-Shop        
## [31513] e-Shop         e-Shop         e-Shop         e-Shop        
## [31517] e-Shop         e-Shop         e-Shop         e-Shop        
## [31521] e-Shop         e-Shop         e-Shop         MBR           
## [31525] MBR            MBR            TeleShop       TeleShop      
## [31529] TeleShop       e-Shop         TeleShop       TeleShop      
## [31533] TeleShop       TeleShop       TeleShop       TeleShop      
## [31537] e-Shop         TeleShop       TeleShop       MBR           
## [31541] MBR            MBR            MBR            MBR           
## [31545] MBR            MBR            MBR            MBR           
## [31549] MBR            MBR            MBR            MBR           
## [31553] MBR            MBR            MBR            MBR           
## [31557] MBR            MBR            MBR            MBR           
## [31561] TeleShop       Flagship store TeleShop       Flagship store
## [31565] Flagship store TeleShop       Flagship store Flagship store
## [31569] TeleShop       Flagship store Flagship store TeleShop      
## [31573] TeleShop       Flagship store TeleShop       Flagship store
## [31577] Flagship store Flagship store Flagship store MBR           
## [31581] MBR            Flagship store e-Shop         e-Shop        
## [31585] e-Shop         e-Shop         e-Shop         Flagship store
## [31589] e-Shop         Flagship store e-Shop         Flagship store
## [31593] Flagship store Flagship store Flagship store e-Shop        
## [31597] e-Shop         Flagship store Flagship store e-Shop        
## [31601] Flagship store e-Shop         e-Shop         e-Shop        
## [31605] TeleShop       e-Shop         TeleShop       TeleShop      
## [31609] e-Shop         e-Shop         TeleShop       e-Shop        
## [31613] e-Shop         TeleShop       e-Shop         e-Shop        
## [31617] TeleShop       e-Shop         TeleShop       e-Shop        
## [31621] TeleShop       e-Shop         e-Shop         e-Shop        
## [31625] TeleShop       e-Shop         e-Shop         e-Shop        
## [31629] e-Shop         e-Shop         Flagship store e-Shop        
## [31633] Flagship store MBR            Flagship store e-Shop        
## [31637] MBR            Flagship store MBR            Flagship store
## [31641] TeleShop       TeleShop       TeleShop       TeleShop      
## [31645] e-Shop         e-Shop         MBR            e-Shop        
## [31649] MBR            e-Shop         MBR            e-Shop        
## [31653] Flagship store e-Shop         Flagship store Flagship store
## [31657] MBR            e-Shop         MBR            Flagship store
## [31661] Flagship store Flagship store TeleShop       TeleShop      
## [31665] TeleShop       TeleShop       e-Shop         Flagship store
## [31669] TeleShop       Flagship store Flagship store TeleShop      
## [31673] Flagship store e-Shop         e-Shop         Flagship store
## [31677] e-Shop         TeleShop       e-Shop         Flagship store
## [31681] Flagship store MBR            Flagship store Flagship store
## [31685] MBR            MBR            Flagship store MBR           
## [31689] MBR            MBR            TeleShop       TeleShop      
## [31693] MBR            MBR            e-Shop         e-Shop        
## [31697] e-Shop         e-Shop         Flagship store Flagship store
## [31701] Flagship store e-Shop         e-Shop         e-Shop        
## [31705] MBR            MBR            MBR            e-Shop        
## [31709] e-Shop         e-Shop         TeleShop       MBR           
## [31713] MBR            e-Shop         e-Shop         TeleShop      
## [31717] e-Shop         e-Shop         TeleShop       MBR           
## [31721] MBR            MBR            e-Shop         e-Shop        
## [31725] e-Shop         e-Shop         e-Shop         Flagship store
## [31729] Flagship store TeleShop       Flagship store TeleShop      
## [31733] TeleShop       TeleShop       TeleShop       TeleShop      
## [31737] TeleShop       TeleShop       e-Shop         e-Shop        
## [31741] e-Shop         e-Shop         e-Shop         e-Shop        
## [31745] e-Shop         e-Shop         TeleShop       TeleShop      
## [31749] TeleShop       TeleShop       e-Shop         TeleShop      
## [31753] e-Shop         TeleShop       e-Shop         e-Shop        
## [31757] TeleShop       e-Shop         TeleShop       MBR           
## [31761] MBR            Flagship store Flagship store e-Shop        
## [31765] e-Shop         Flagship store Flagship store e-Shop        
## [31769] Flagship store e-Shop         Flagship store Flagship store
## [31773] Flagship store e-Shop         e-Shop         e-Shop        
## [31777] e-Shop         Flagship store e-Shop         Flagship store
## [31781] Flagship store Flagship store e-Shop         Flagship store
## [31785] e-Shop         e-Shop         e-Shop         e-Shop        
## [31789] e-Shop         e-Shop         e-Shop         e-Shop        
## [31793] e-Shop         e-Shop         e-Shop         e-Shop        
## [31797] e-Shop         e-Shop         e-Shop         e-Shop        
## [31801] e-Shop         TeleShop       TeleShop       TeleShop      
## [31805] TeleShop       TeleShop       TeleShop       TeleShop      
## [31809] TeleShop       TeleShop       TeleShop       TeleShop      
## [31813] TeleShop       TeleShop       TeleShop       MBR           
## [31817] MBR            TeleShop       TeleShop       MBR           
## [31821] MBR            TeleShop       MBR            TeleShop      
## [31825] TeleShop       e-Shop         e-Shop         e-Shop        
## [31829] e-Shop         e-Shop         e-Shop         e-Shop        
## [31833] e-Shop         e-Shop         e-Shop         e-Shop        
## [31837] e-Shop         Flagship store e-Shop         e-Shop        
## [31841] Flagship store TeleShop       Flagship store TeleShop      
## [31845] Flagship store Flagship store e-Shop         e-Shop        
## [31849] e-Shop         e-Shop         e-Shop         TeleShop      
## [31853] e-Shop         e-Shop         Flagship store e-Shop        
## [31857] TeleShop       e-Shop         Flagship store TeleShop      
## [31861] Flagship store Flagship store MBR            TeleShop      
## [31865] TeleShop       MBR            MBR            TeleShop      
## [31869] MBR            MBR            MBR            MBR           
## [31873] MBR            e-Shop         e-Shop         e-Shop        
## [31877] MBR            MBR            e-Shop         e-Shop        
## [31881] MBR            TeleShop       TeleShop       TeleShop      
## [31885] TeleShop       TeleShop       TeleShop       TeleShop      
## [31889] TeleShop       e-Shop         MBR            MBR           
## [31893] MBR            e-Shop         MBR            e-Shop        
## [31897] e-Shop         TeleShop       e-Shop         MBR           
## [31901] MBR            MBR            e-Shop         MBR           
## [31905] MBR            e-Shop         Flagship store MBR           
## [31909] MBR            Flagship store MBR            MBR           
## [31913] MBR            MBR            MBR            MBR           
## [31917] MBR            MBR            MBR            Flagship store
## [31921] TeleShop       MBR            MBR            MBR           
## [31925] MBR            MBR            Flagship store MBR           
## [31929] MBR            TeleShop       TeleShop       MBR           
## [31933] MBR            TeleShop       TeleShop       MBR           
## [31937] TeleShop       MBR            MBR            MBR           
## [31941] MBR            MBR            MBR            TeleShop      
## [31945] e-Shop         e-Shop         Flagship store e-Shop        
## [31949] e-Shop         e-Shop         MBR            MBR           
## [31953] e-Shop         Flagship store e-Shop         e-Shop        
## [31957] e-Shop         e-Shop         Flagship store e-Shop        
## [31961] e-Shop         Flagship store e-Shop         Flagship store
## [31965] Flagship store Flagship store e-Shop         Flagship store
## [31969] Flagship store e-Shop         e-Shop         e-Shop        
## [31973] MBR            e-Shop         MBR            MBR           
## [31977] e-Shop         e-Shop         e-Shop         e-Shop        
## [31981] e-Shop         MBR            e-Shop         e-Shop        
## [31985] MBR            e-Shop         e-Shop         e-Shop        
## [31989] e-Shop         e-Shop         e-Shop         TeleShop      
## [31993] MBR            TeleShop       MBR            TeleShop      
## [31997] TeleShop       MBR            MBR            MBR           
## [32001] TeleShop       TeleShop       TeleShop       MBR           
## [32005] e-Shop         e-Shop         MBR            MBR           
## [32009] MBR            MBR            MBR            MBR           
## [32013] MBR            MBR            MBR            MBR           
## [32017] MBR            MBR            MBR            MBR           
## [32021] MBR            Flagship store Flagship store e-Shop        
## [32025] Flagship store e-Shop         e-Shop         e-Shop        
## [32029] e-Shop         e-Shop         e-Shop         e-Shop        
## [32033] e-Shop         e-Shop         e-Shop         e-Shop        
## [32037] e-Shop         e-Shop         e-Shop         e-Shop        
## [32041] e-Shop         e-Shop         MBR            MBR           
## [32045] e-Shop         MBR            Flagship store MBR           
## [32049] Flagship store Flagship store Flagship store MBR           
## [32053] e-Shop         Flagship store Flagship store e-Shop        
## [32057] Flagship store e-Shop         Flagship store Flagship store
## [32061] Flagship store MBR            MBR            MBR           
## [32065] MBR            Flagship store Flagship store MBR           
## [32069] TeleShop       MBR            MBR            e-Shop        
## [32073] e-Shop         e-Shop         e-Shop         MBR           
## [32077] e-Shop         e-Shop         e-Shop         TeleShop      
## [32081] e-Shop         e-Shop         e-Shop         e-Shop        
## [32085] e-Shop         MBR            e-Shop         e-Shop        
## [32089] MBR            Flagship store Flagship store TeleShop      
## [32093] TeleShop       Flagship store TeleShop       TeleShop      
## [32097] Flagship store Flagship store Flagship store TeleShop      
## [32101] Flagship store Flagship store Flagship store MBR           
## [32105] Flagship store MBR            MBR            MBR           
## [32109] MBR            MBR            Flagship store MBR           
## [32113] e-Shop         e-Shop         e-Shop         Flagship store
## [32117] MBR            Flagship store MBR            MBR           
## [32121] MBR            e-Shop         MBR            e-Shop        
## [32125] e-Shop         e-Shop         Flagship store Flagship store
## [32129] Flagship store MBR            Flagship store MBR           
## [32133] MBR            MBR            MBR            MBR           
## [32137] MBR            e-Shop         e-Shop         e-Shop        
## [32141] e-Shop         TeleShop       e-Shop         TeleShop      
## [32145] e-Shop         e-Shop         e-Shop         e-Shop        
## [32149] e-Shop         e-Shop         Flagship store Flagship store
## [32153] e-Shop         e-Shop         e-Shop         e-Shop        
## [32157] Flagship store e-Shop         TeleShop       TeleShop      
## [32161] TeleShop       TeleShop       e-Shop         e-Shop        
## [32165] e-Shop         e-Shop         MBR            e-Shop        
## [32169] MBR            MBR            e-Shop         MBR           
## [32173] e-Shop         MBR            MBR            e-Shop        
## [32177] MBR            e-Shop         MBR            MBR           
## [32181] e-Shop         TeleShop       TeleShop       e-Shop        
## [32185] TeleShop       e-Shop         TeleShop       TeleShop      
## [32189] TeleShop       TeleShop       e-Shop         e-Shop        
## [32193] TeleShop       TeleShop       e-Shop         TeleShop      
## [32197] TeleShop       TeleShop       TeleShop       TeleShop      
## [32201] TeleShop       TeleShop       TeleShop       TeleShop      
## [32205] TeleShop       MBR            MBR            MBR           
## [32209] MBR            MBR            Flagship store e-Shop        
## [32213] Flagship store Flagship store Flagship store e-Shop        
## [32217] Flagship store Flagship store e-Shop         e-Shop        
## [32221] e-Shop         e-Shop         e-Shop         MBR           
## [32225] Flagship store Flagship store e-Shop         MBR           
## [32229] MBR            MBR            MBR            MBR           
## [32233] e-Shop         MBR            MBR            e-Shop        
## [32237] MBR            MBR            MBR            e-Shop        
## [32241] e-Shop         e-Shop         TeleShop       TeleShop      
## [32245] TeleShop       e-Shop         e-Shop         e-Shop        
## [32249] TeleShop       TeleShop       e-Shop         e-Shop        
## [32253] TeleShop       TeleShop       MBR            MBR           
## [32257] MBR            MBR            MBR            MBR           
## [32261] e-Shop         e-Shop         e-Shop         MBR           
## [32265] e-Shop         e-Shop         e-Shop         MBR           
## [32269] e-Shop         MBR            e-Shop         e-Shop        
## [32273] e-Shop         e-Shop         e-Shop         Flagship store
## [32277] e-Shop         Flagship store TeleShop       Flagship store
## [32281] e-Shop         TeleShop       Flagship store Flagship store
## [32285] Flagship store e-Shop         Flagship store Flagship store
## [32289] TeleShop       TeleShop       TeleShop       TeleShop      
## [32293] TeleShop       TeleShop       e-Shop         e-Shop        
## [32297] MBR            MBR            e-Shop         TeleShop      
## [32301] MBR            e-Shop         MBR            e-Shop        
## [32305] TeleShop       e-Shop         MBR            e-Shop        
## [32309] MBR            TeleShop       TeleShop       e-Shop        
## [32313] e-Shop         e-Shop         Flagship store e-Shop        
## [32317] e-Shop         Flagship store e-Shop         Flagship store
## [32321] Flagship store e-Shop         e-Shop         Flagship store
## [32325] Flagship store e-Shop         Flagship store Flagship store
## [32329] e-Shop         e-Shop         e-Shop         e-Shop        
## [32333] Flagship store e-Shop         e-Shop         e-Shop        
## [32337] e-Shop         e-Shop         e-Shop         Flagship store
## [32341] e-Shop         e-Shop         e-Shop         e-Shop        
## [32345] e-Shop         e-Shop         TeleShop       MBR           
## [32349] MBR            TeleShop       Flagship store Flagship store
## [32353] TeleShop       Flagship store Flagship store Flagship store
## [32357] Flagship store Flagship store Flagship store e-Shop        
## [32361] MBR            MBR            e-Shop         MBR           
## [32365] MBR            MBR            MBR            e-Shop        
## [32369] MBR            e-Shop         e-Shop         MBR           
## [32373] MBR            e-Shop         Flagship store e-Shop        
## [32377] Flagship store Flagship store Flagship store e-Shop        
## [32381] MBR            e-Shop         MBR            e-Shop        
## [32385] MBR            e-Shop         MBR            MBR           
## [32389] MBR            MBR            e-Shop         e-Shop        
## [32393] e-Shop         e-Shop         TeleShop       TeleShop      
## [32397] TeleShop       Flagship store Flagship store MBR           
## [32401] TeleShop       TeleShop       MBR            Flagship store
## [32405] e-Shop         MBR            Flagship store TeleShop      
## [32409] TeleShop       e-Shop         e-Shop         TeleShop      
## [32413] Flagship store Flagship store Flagship store Flagship store
## [32417] Flagship store Flagship store Flagship store e-Shop        
## [32421] e-Shop         e-Shop         e-Shop         e-Shop        
## [32425] e-Shop         Flagship store e-Shop         e-Shop        
## [32429] Flagship store e-Shop         e-Shop         MBR           
## [32433] MBR            TeleShop       TeleShop       e-Shop        
## [32437] TeleShop       TeleShop       e-Shop         TeleShop      
## [32441] e-Shop         e-Shop         e-Shop         e-Shop        
## [32445] e-Shop         e-Shop         e-Shop         e-Shop        
## [32449] e-Shop         e-Shop         e-Shop         MBR           
## [32453] TeleShop       e-Shop         MBR            MBR           
## [32457] TeleShop       MBR            MBR            e-Shop        
## [32461] MBR            TeleShop       TeleShop       TeleShop      
## [32465] TeleShop       TeleShop       TeleShop       MBR           
## [32469] MBR            MBR            MBR            MBR           
## [32473] e-Shop         e-Shop         e-Shop         MBR           
## [32477] MBR            e-Shop         e-Shop         e-Shop        
## [32481] e-Shop         e-Shop         e-Shop         e-Shop        
## [32485] e-Shop         e-Shop         e-Shop         e-Shop        
## [32489] e-Shop         e-Shop         e-Shop         e-Shop        
## [32493] TeleShop       e-Shop         e-Shop         MBR           
## [32497] MBR            TeleShop       TeleShop       MBR           
## [32501] TeleShop       TeleShop       e-Shop         MBR           
## [32505] MBR            Flagship store e-Shop         e-Shop        
## [32509] e-Shop         e-Shop         Flagship store e-Shop        
## [32513] Flagship store Flagship store Flagship store e-Shop        
## [32517] TeleShop       Flagship store Flagship store TeleShop      
## [32521] Flagship store Flagship store TeleShop       Flagship store
## [32525] Flagship store TeleShop       Flagship store e-Shop        
## [32529] Flagship store e-Shop         TeleShop       e-Shop        
## [32533] e-Shop         e-Shop         Flagship store MBR           
## [32537] MBR            MBR            MBR            e-Shop        
## [32541] MBR            e-Shop         e-Shop         e-Shop        
## [32545] e-Shop         e-Shop         e-Shop         e-Shop        
## [32549] e-Shop         Flagship store Flagship store e-Shop        
## [32553] MBR            e-Shop         MBR            e-Shop        
## [32557] e-Shop         e-Shop         MBR            MBR           
## [32561] MBR            MBR            MBR            e-Shop        
## [32565] e-Shop         e-Shop         e-Shop         e-Shop        
## [32569] e-Shop         e-Shop         e-Shop         e-Shop        
## [32573] e-Shop         Flagship store e-Shop         e-Shop        
## [32577] e-Shop         Flagship store MBR            MBR           
## [32581] e-Shop         MBR            MBR            MBR           
## [32585] Flagship store e-Shop         e-Shop         e-Shop        
## [32589] e-Shop         e-Shop         e-Shop         e-Shop        
## [32593] e-Shop         e-Shop         e-Shop         e-Shop        
## [32597] e-Shop         e-Shop         e-Shop         e-Shop        
## [32601] e-Shop         e-Shop         MBR            MBR           
## [32605] TeleShop       TeleShop       e-Shop         e-Shop        
## [32609] e-Shop         e-Shop         e-Shop         e-Shop        
## [32613] e-Shop         e-Shop         e-Shop         e-Shop        
## [32617] e-Shop         TeleShop       e-Shop         e-Shop        
## [32621] Flagship store MBR            e-Shop         MBR           
## [32625] e-Shop         e-Shop         Flagship store TeleShop      
## [32629] MBR            Flagship store TeleShop       MBR           
## [32633] TeleShop       TeleShop       MBR            TeleShop      
## [32637] MBR            MBR            MBR            MBR           
## [32641] Flagship store MBR            TeleShop       TeleShop      
## [32645] MBR            TeleShop       MBR            MBR           
## [32649] MBR            Flagship store TeleShop       TeleShop      
## [32653] e-Shop         MBR            Flagship store Flagship store
## [32657] e-Shop         MBR            TeleShop       TeleShop      
## [32661] TeleShop       TeleShop       TeleShop       TeleShop      
## [32665] TeleShop       TeleShop       TeleShop       TeleShop      
## [32669] TeleShop       Flagship store TeleShop       Flagship store
## [32673] e-Shop         Flagship store Flagship store e-Shop        
## [32677] TeleShop       Flagship store TeleShop       e-Shop        
## [32681] TeleShop       e-Shop         Flagship store TeleShop      
## [32685] TeleShop       Flagship store Flagship store e-Shop        
## [32689] TeleShop       TeleShop       Flagship store Flagship store
## [32693] Flagship store Flagship store TeleShop       MBR           
## [32697] MBR            MBR            MBR            MBR           
## [32701] MBR            MBR            Flagship store Flagship store
## [32705] MBR            MBR            MBR            Flagship store
## [32709] Flagship store e-Shop         e-Shop         e-Shop        
## [32713] e-Shop         MBR            MBR            MBR           
## [32717] MBR            TeleShop       MBR            MBR           
## [32721] TeleShop       MBR            MBR            MBR           
## [32725] e-Shop         e-Shop         e-Shop         e-Shop        
## [32729] e-Shop         e-Shop         e-Shop         e-Shop        
## [32733] MBR            MBR            MBR            MBR           
## [32737] MBR            MBR            MBR            MBR           
## [32741] MBR            Flagship store Flagship store Flagship store
## [32745] MBR            Flagship store Flagship store Flagship store
## [32749] MBR            Flagship store TeleShop       TeleShop      
## [32753] TeleShop       TeleShop       Flagship store TeleShop      
## [32757] TeleShop       Flagship store Flagship store Flagship store
## [32761] Flagship store Flagship store e-Shop         e-Shop        
## [32765] e-Shop         Flagship store e-Shop         TeleShop      
## [32769] TeleShop       Flagship store TeleShop       TeleShop      
## [32773] TeleShop       Flagship store TeleShop       TeleShop      
## [32777] TeleShop       TeleShop       TeleShop       TeleShop      
## [32781] e-Shop         e-Shop         e-Shop         e-Shop        
## [32785] e-Shop         e-Shop         e-Shop         e-Shop        
## [32789] e-Shop         e-Shop         e-Shop         e-Shop        
## [32793] e-Shop         TeleShop       TeleShop       TeleShop      
## [32797] TeleShop       TeleShop       TeleShop       TeleShop      
## [32801] TeleShop       TeleShop       TeleShop       e-Shop        
## [32805] e-Shop         TeleShop       MBR            e-Shop        
## [32809] TeleShop       MBR            MBR            e-Shop        
## [32813] TeleShop       TeleShop       TeleShop       MBR           
## [32817] MBR            TeleShop       MBR            MBR           
## [32821] TeleShop       TeleShop       TeleShop       TeleShop      
## [32825] TeleShop       TeleShop       TeleShop       TeleShop      
## [32829] TeleShop       TeleShop       e-Shop         e-Shop        
## [32833] e-Shop         e-Shop         TeleShop       TeleShop      
## [32837] Flagship store Flagship store Flagship store Flagship store
## [32841] Flagship store Flagship store TeleShop       TeleShop      
## [32845] TeleShop       TeleShop       TeleShop       e-Shop        
## [32849] e-Shop         TeleShop       TeleShop       e-Shop        
## [32853] TeleShop       TeleShop       e-Shop         e-Shop        
## [32857] e-Shop         e-Shop         e-Shop         e-Shop        
## [32861] e-Shop         e-Shop         e-Shop         e-Shop        
## [32865] e-Shop         e-Shop         e-Shop         e-Shop        
## [32869] e-Shop         e-Shop         e-Shop         e-Shop        
## [32873] e-Shop         TeleShop       e-Shop         TeleShop      
## [32877] e-Shop         TeleShop       TeleShop       e-Shop        
## [32881] TeleShop       e-Shop         TeleShop       e-Shop        
## [32885] e-Shop         e-Shop         TeleShop       TeleShop      
## [32889] TeleShop       e-Shop         TeleShop       TeleShop      
## [32893] e-Shop         Flagship store Flagship store Flagship store
## [32897] e-Shop         e-Shop         Flagship store Flagship store
## [32901] e-Shop         Flagship store e-Shop         MBR           
## [32905] e-Shop         MBR            MBR            e-Shop        
## [32909] MBR            MBR            MBR            MBR           
## [32913] MBR            MBR            MBR            e-Shop        
## [32917] e-Shop         e-Shop         e-Shop         e-Shop        
## [32921] e-Shop         e-Shop         e-Shop         e-Shop        
## [32925] e-Shop         MBR            MBR            MBR           
## [32929] e-Shop         e-Shop         e-Shop         e-Shop        
## [32933] e-Shop         TeleShop       e-Shop         TeleShop      
## [32937] e-Shop         TeleShop       e-Shop         e-Shop        
## [32941] e-Shop         e-Shop         e-Shop         e-Shop        
## [32945] TeleShop       e-Shop         e-Shop         e-Shop        
## [32949] TeleShop       e-Shop         e-Shop         e-Shop        
## [32953] e-Shop         e-Shop         TeleShop       MBR           
## [32957] MBR            MBR            TeleShop       e-Shop        
## [32961] e-Shop         TeleShop       e-Shop         TeleShop      
## [32965] e-Shop         MBR            TeleShop       e-Shop        
## [32969] e-Shop         e-Shop         TeleShop       MBR           
## [32973] MBR            MBR            MBR            MBR           
## [32977] MBR            e-Shop         e-Shop         e-Shop        
## [32981] MBR            e-Shop         e-Shop         MBR           
## [32985] MBR            MBR            MBR            e-Shop        
## [32989] MBR            MBR            TeleShop       TeleShop      
## [32993] TeleShop       TeleShop       MBR            MBR           
## [32997] MBR            MBR            e-Shop         e-Shop        
## [33001] e-Shop         e-Shop         e-Shop         Flagship store
## [33005] e-Shop         e-Shop         e-Shop         e-Shop        
## [33009] Flagship store e-Shop         e-Shop         e-Shop        
## [33013] e-Shop         e-Shop         TeleShop       e-Shop        
## [33017] e-Shop         TeleShop       e-Shop         e-Shop        
## [33021] e-Shop         e-Shop         MBR            e-Shop        
## [33025] e-Shop         Flagship store Flagship store MBR           
## [33029] MBR            e-Shop         MBR            MBR           
## [33033] e-Shop         Flagship store e-Shop         Flagship store
## [33037] MBR            Flagship store MBR            MBR           
## [33041] e-Shop         e-Shop         MBR            MBR           
## [33045] e-Shop         e-Shop         MBR            e-Shop        
## [33049] e-Shop         e-Shop         MBR            MBR           
## [33053] e-Shop         e-Shop         e-Shop         e-Shop        
## [33057] e-Shop         Flagship store Flagship store e-Shop        
## [33061] e-Shop         e-Shop         TeleShop       TeleShop      
## [33065] TeleShop       TeleShop       e-Shop         e-Shop        
## [33069] e-Shop         e-Shop         e-Shop         e-Shop        
## [33073] TeleShop       TeleShop       TeleShop       TeleShop      
## [33077] TeleShop       e-Shop         e-Shop         e-Shop        
## [33081] e-Shop         e-Shop         e-Shop         MBR           
## [33085] e-Shop         e-Shop         MBR            TeleShop      
## [33089] TeleShop       TeleShop       TeleShop       TeleShop      
## [33093] TeleShop       e-Shop         TeleShop       e-Shop        
## [33097] TeleShop       Flagship store Flagship store Flagship store
## [33101] Flagship store Flagship store Flagship store TeleShop      
## [33105] Flagship store Flagship store TeleShop       Flagship store
## [33109] TeleShop       Flagship store TeleShop       MBR           
## [33113] TeleShop       MBR            Flagship store TeleShop      
## [33117] Flagship store MBR            e-Shop         e-Shop        
## [33121] TeleShop       TeleShop       e-Shop         MBR           
## [33125] TeleShop       MBR            e-Shop         e-Shop        
## [33129] TeleShop       TeleShop       MBR            e-Shop        
## [33133] e-Shop         e-Shop         Flagship store Flagship store
## [33137] TeleShop       Flagship store TeleShop       Flagship store
## [33141] TeleShop       TeleShop       TeleShop       TeleShop      
## [33145] TeleShop       TeleShop       TeleShop       e-Shop        
## [33149] e-Shop         e-Shop         e-Shop         e-Shop        
## [33153] e-Shop         Flagship store Flagship store TeleShop      
## [33157] TeleShop       e-Shop         Flagship store Flagship store
## [33161] Flagship store TeleShop       e-Shop         Flagship store
## [33165] e-Shop         TeleShop       TeleShop       e-Shop        
## [33169] Flagship store Flagship store Flagship store Flagship store
## [33173] Flagship store Flagship store Flagship store Flagship store
## [33177] Flagship store Flagship store Flagship store Flagship store
## [33181] TeleShop       TeleShop       MBR            e-Shop        
## [33185] e-Shop         e-Shop         e-Shop         MBR           
## [33189] TeleShop       MBR            e-Shop         TeleShop      
## [33193] e-Shop         e-Shop         e-Shop         e-Shop        
## [33197] e-Shop         e-Shop         MBR            TeleShop      
## [33201] MBR            TeleShop       e-Shop         MBR           
## [33205] MBR            e-Shop         e-Shop         e-Shop        
## [33209] e-Shop         e-Shop         e-Shop         e-Shop        
## [33213] e-Shop         e-Shop         e-Shop         e-Shop        
## [33217] Flagship store Flagship store e-Shop         MBR           
## [33221] Flagship store e-Shop         MBR            e-Shop        
## [33225] e-Shop         Flagship store MBR            MBR           
## [33229] MBR            MBR            MBR            MBR           
## [33233] e-Shop         e-Shop         Flagship store Flagship store
## [33237] Flagship store Flagship store e-Shop         Flagship store
## [33241] e-Shop         e-Shop         Flagship store e-Shop        
## [33245] TeleShop       e-Shop         TeleShop       TeleShop      
## [33249] e-Shop         TeleShop       e-Shop         TeleShop      
## [33253] MBR            MBR            e-Shop         TeleShop      
## [33257] Flagship store e-Shop         e-Shop         Flagship store
## [33261] e-Shop         TeleShop       TeleShop       TeleShop      
## [33265] TeleShop       TeleShop       MBR            TeleShop      
## [33269] TeleShop       MBR            e-Shop         e-Shop        
## [33273] e-Shop         TeleShop       TeleShop       TeleShop      
## [33277] TeleShop       MBR            TeleShop       TeleShop      
## [33281] MBR            MBR            TeleShop       MBR           
## [33285] MBR            MBR            e-Shop         e-Shop        
## [33289] e-Shop         e-Shop         e-Shop         e-Shop        
## [33293] e-Shop         MBR            MBR            MBR           
## [33297] e-Shop         e-Shop         MBR            e-Shop        
## [33301] MBR            MBR            MBR            MBR           
## [33305] MBR            MBR            MBR            MBR           
## [33309] MBR            MBR            MBR            MBR           
## [33313] MBR            MBR            MBR            MBR           
## [33317] MBR            MBR            e-Shop         e-Shop        
## [33321] e-Shop         e-Shop         e-Shop         e-Shop        
## [33325] TeleShop       TeleShop       e-Shop         e-Shop        
## [33329] Flagship store e-Shop         Flagship store Flagship store
## [33333] Flagship store e-Shop         Flagship store Flagship store
## [33337] e-Shop         e-Shop         e-Shop         Flagship store
## [33341] e-Shop         e-Shop         e-Shop         Flagship store
## [33345] e-Shop         e-Shop         Flagship store Flagship store
## [33349] e-Shop         TeleShop       Flagship store e-Shop        
## [33353] e-Shop         Flagship store TeleShop       e-Shop        
## [33357] Flagship store TeleShop       TeleShop       Flagship store
## [33361] Flagship store TeleShop       Flagship store Flagship store
## [33365] Flagship store TeleShop       Flagship store TeleShop      
## [33369] Flagship store Flagship store Flagship store Flagship store
## [33373] Flagship store Flagship store Flagship store TeleShop      
## [33377] TeleShop       e-Shop         e-Shop         e-Shop        
## [33381] e-Shop         e-Shop         e-Shop         e-Shop        
## [33385] e-Shop         e-Shop         e-Shop         e-Shop        
## [33389] e-Shop         e-Shop         e-Shop         e-Shop        
## [33393] e-Shop         e-Shop         e-Shop         e-Shop        
## [33397] e-Shop         e-Shop         e-Shop         e-Shop        
## [33401] e-Shop         e-Shop         e-Shop         e-Shop        
## [33405] e-Shop         e-Shop         e-Shop         TeleShop      
## [33409] e-Shop         e-Shop         TeleShop       e-Shop        
## [33413] e-Shop         TeleShop       Flagship store Flagship store
## [33417] Flagship store TeleShop       Flagship store Flagship store
## [33421] TeleShop       e-Shop         MBR            e-Shop        
## [33425] e-Shop         MBR            MBR            MBR           
## [33429] MBR            MBR            Flagship store Flagship store
## [33433] Flagship store Flagship store Flagship store e-Shop        
## [33437] e-Shop         e-Shop         e-Shop         e-Shop        
## [33441] e-Shop         e-Shop         TeleShop       TeleShop      
## [33445] TeleShop       TeleShop       TeleShop       TeleShop      
## [33449] TeleShop       TeleShop       TeleShop       TeleShop      
## [33453] TeleShop       TeleShop       TeleShop       TeleShop      
## [33457] TeleShop       e-Shop         Flagship store Flagship store
## [33461] Flagship store Flagship store e-Shop         e-Shop        
## [33465] TeleShop       MBR            TeleShop       MBR           
## [33469] TeleShop       MBR            MBR            MBR           
## [33473] MBR            TeleShop       TeleShop       TeleShop      
## [33477] TeleShop       e-Shop         TeleShop       TeleShop      
## [33481] TeleShop       e-Shop         TeleShop       TeleShop      
## [33485] e-Shop         e-Shop         TeleShop       e-Shop        
## [33489] e-Shop         e-Shop         e-Shop         MBR           
## [33493] MBR            MBR            MBR            MBR           
## [33497] MBR            MBR            MBR            MBR           
## [33501] MBR            MBR            MBR            e-Shop        
## [33505] e-Shop         Flagship store e-Shop         TeleShop      
## [33509] e-Shop         e-Shop         TeleShop       TeleShop      
## [33513] Flagship store Flagship store Flagship store Flagship store
## [33517] Flagship store MBR            MBR            MBR           
## [33521] MBR            e-Shop         e-Shop         e-Shop        
## [33525] MBR            e-Shop         Flagship store Flagship store
## [33529] Flagship store Flagship store Flagship store e-Shop        
## [33533] Flagship store Flagship store e-Shop         Flagship store
## [33537] Flagship store Flagship store TeleShop       TeleShop      
## [33541] TeleShop       TeleShop       MBR            MBR           
## [33545] TeleShop       e-Shop         e-Shop         MBR           
## [33549] MBR            MBR            TeleShop       TeleShop      
## [33553] MBR            MBR            e-Shop         e-Shop        
## [33557] e-Shop         TeleShop       MBR            MBR           
## [33561] e-Shop         MBR            e-Shop         Flagship store
## [33565] Flagship store e-Shop         e-Shop         e-Shop        
## [33569] e-Shop         Flagship store e-Shop         e-Shop        
## [33573] Flagship store e-Shop         e-Shop         e-Shop        
## [33577] e-Shop         e-Shop         MBR            MBR           
## [33581] MBR            MBR            MBR            MBR           
## [33585] MBR            MBR            MBR            MBR           
## [33589] MBR            MBR            Flagship store Flagship store
## [33593] Flagship store TeleShop       e-Shop         MBR           
## [33597] TeleShop       TeleShop       TeleShop       MBR           
## [33601] e-Shop         MBR            MBR            TeleShop      
## [33605] MBR            MBR            MBR            e-Shop        
## [33609] MBR            e-Shop         e-Shop         e-Shop        
## [33613] e-Shop         e-Shop         e-Shop         e-Shop        
## [33617] e-Shop         e-Shop         e-Shop         e-Shop        
## [33621] e-Shop         e-Shop         e-Shop         e-Shop        
## [33625] e-Shop         e-Shop         e-Shop         e-Shop        
## [33629] e-Shop         e-Shop         e-Shop         e-Shop        
## [33633] e-Shop         e-Shop         Flagship store Flagship store
## [33637] e-Shop         Flagship store e-Shop         TeleShop      
## [33641] TeleShop       Flagship store MBR            Flagship store
## [33645] Flagship store TeleShop       Flagship store Flagship store
## [33649] MBR            TeleShop       TeleShop       TeleShop      
## [33653] TeleShop       TeleShop       Flagship store TeleShop      
## [33657] TeleShop       Flagship store Flagship store Flagship store
## [33661] MBR            MBR            e-Shop         Flagship store
## [33665] e-Shop         MBR            Flagship store MBR           
## [33669] e-Shop         e-Shop         MBR            e-Shop        
## [33673] MBR            MBR            e-Shop         MBR           
## [33677] e-Shop         e-Shop         e-Shop         MBR           
## [33681] TeleShop       e-Shop         TeleShop       MBR           
## [33685] TeleShop       TeleShop       TeleShop       TeleShop      
## [33689] Flagship store Flagship store MBR            Flagship store
## [33693] TeleShop       MBR            e-Shop         Flagship store
## [33697] MBR            Flagship store Flagship store MBR           
## [33701] MBR            MBR            MBR            MBR           
## [33705] Flagship store Flagship store TeleShop       TeleShop      
## [33709] TeleShop       MBR            MBR            e-Shop        
## [33713] Flagship store e-Shop         TeleShop       e-Shop        
## [33717] Flagship store e-Shop         MBR            MBR           
## [33721] TeleShop       e-Shop         e-Shop         e-Shop        
## [33725] e-Shop         e-Shop         e-Shop         MBR           
## [33729] Flagship store e-Shop         e-Shop         TeleShop      
## [33733] e-Shop         e-Shop         TeleShop       e-Shop        
## [33737] TeleShop       e-Shop         e-Shop         e-Shop        
## [33741] e-Shop         MBR            e-Shop         e-Shop        
## [33745] MBR            e-Shop         e-Shop         e-Shop        
## [33749] Flagship store TeleShop       Flagship store TeleShop      
## [33753] MBR            Flagship store Flagship store Flagship store
## [33757] MBR            Flagship store Flagship store Flagship store
## [33761] Flagship store TeleShop       TeleShop       MBR           
## [33765] MBR            MBR            MBR            TeleShop      
## [33769] MBR            TeleShop       TeleShop       Flagship store
## [33773] Flagship store e-Shop         e-Shop         e-Shop        
## [33777] e-Shop         Flagship store e-Shop         e-Shop        
## [33781] e-Shop         e-Shop         e-Shop         e-Shop        
## [33785] MBR            MBR            MBR            MBR           
## [33789] MBR            MBR            e-Shop         e-Shop        
## [33793] e-Shop         e-Shop         e-Shop         e-Shop        
## [33797] e-Shop         e-Shop         Flagship store Flagship store
## [33801] e-Shop         e-Shop         e-Shop         TeleShop      
## [33805] e-Shop         Flagship store e-Shop         Flagship store
## [33809] Flagship store e-Shop         MBR            e-Shop        
## [33813] Flagship store TeleShop       MBR            MBR           
## [33817] e-Shop         MBR            MBR            TeleShop      
## [33821] TeleShop       MBR            TeleShop       e-Shop        
## [33825] MBR            e-Shop         TeleShop       e-Shop        
## [33829] TeleShop       MBR            MBR            e-Shop        
## [33833] e-Shop         e-Shop         MBR            e-Shop        
## [33837] e-Shop         e-Shop         e-Shop         e-Shop        
## [33841] MBR            e-Shop         e-Shop         e-Shop        
## [33845] e-Shop         e-Shop         e-Shop         e-Shop        
## [33849] MBR            e-Shop         e-Shop         e-Shop        
## [33853] MBR            e-Shop         e-Shop         e-Shop        
## [33857] e-Shop         Flagship store MBR            e-Shop        
## [33861] Flagship store e-Shop         Flagship store Flagship store
## [33865] e-Shop         Flagship store TeleShop       e-Shop        
## [33869] e-Shop         e-Shop         e-Shop         e-Shop        
## [33873] e-Shop         e-Shop         TeleShop       MBR           
## [33877] MBR            MBR            e-Shop         e-Shop        
## [33881] e-Shop         e-Shop         e-Shop         MBR           
## [33885] e-Shop         e-Shop         e-Shop         e-Shop        
## [33889] e-Shop         e-Shop         e-Shop         e-Shop        
## [33893] e-Shop         e-Shop         e-Shop         e-Shop        
## [33897] e-Shop         e-Shop         e-Shop         e-Shop        
## [33901] e-Shop         MBR            e-Shop         e-Shop        
## [33905] MBR            e-Shop         e-Shop         e-Shop        
## [33909] e-Shop         e-Shop         e-Shop         e-Shop        
## [33913] e-Shop         MBR            e-Shop         e-Shop        
## [33917] e-Shop         e-Shop         e-Shop         e-Shop        
## [33921] e-Shop         TeleShop       TeleShop       TeleShop      
## [33925] MBR            MBR            MBR            MBR           
## [33929] MBR            MBR            MBR            TeleShop      
## [33933] e-Shop         Flagship store TeleShop       Flagship store
## [33937] e-Shop         Flagship store e-Shop         e-Shop        
## [33941] e-Shop         TeleShop       e-Shop         Flagship store
## [33945] Flagship store TeleShop       e-Shop         e-Shop        
## [33949] Flagship store TeleShop       TeleShop       e-Shop        
## [33953] e-Shop         e-Shop         TeleShop       TeleShop      
## [33957] e-Shop         e-Shop         e-Shop         Flagship store
## [33961] e-Shop         Flagship store e-Shop         e-Shop        
## [33965] e-Shop         MBR            MBR            MBR           
## [33969] MBR            MBR            MBR            Flagship store
## [33973] Flagship store Flagship store Flagship store Flagship store
## [33977] Flagship store Flagship store Flagship store e-Shop        
## [33981] e-Shop         Flagship store Flagship store Flagship store
## [33985] e-Shop         Flagship store Flagship store Flagship store
## [33989] MBR            Flagship store e-Shop         Flagship store
## [33993] Flagship store MBR            MBR            MBR           
## [33997] e-Shop         MBR            e-Shop         Flagship store
## [34001] Flagship store e-Shop         e-Shop         e-Shop        
## [34005] TeleShop       TeleShop       e-Shop         e-Shop        
## [34009] TeleShop       TeleShop       TeleShop       e-Shop        
## [34013] Flagship store e-Shop         e-Shop         Flagship store
## [34017] Flagship store e-Shop         e-Shop         Flagship store
## [34021] Flagship store Flagship store Flagship store Flagship store
## [34025] Flagship store Flagship store Flagship store Flagship store
## [34029] Flagship store Flagship store Flagship store e-Shop        
## [34033] MBR            MBR            Flagship store Flagship store
## [34037] TeleShop       TeleShop       TeleShop       TeleShop      
## [34041] Flagship store TeleShop       TeleShop       TeleShop      
## [34045] Flagship store Flagship store Flagship store TeleShop      
## [34049] Flagship store TeleShop       Flagship store TeleShop      
## [34053] TeleShop       TeleShop       Flagship store TeleShop      
## [34057] TeleShop       TeleShop       Flagship store Flagship store
## [34061] Flagship store Flagship store e-Shop         e-Shop        
## [34065] e-Shop         Flagship store e-Shop         e-Shop        
## [34069] e-Shop         e-Shop         e-Shop         e-Shop        
## [34073] TeleShop       TeleShop       TeleShop       TeleShop      
## [34077] Flagship store Flagship store Flagship store e-Shop        
## [34081] e-Shop         TeleShop       Flagship store e-Shop        
## [34085] e-Shop         TeleShop       TeleShop       TeleShop      
## [34089] TeleShop       e-Shop         Flagship store e-Shop        
## [34093] e-Shop         Flagship store e-Shop         Flagship store
## [34097] e-Shop         e-Shop         e-Shop         e-Shop        
## [34101] Flagship store TeleShop       TeleShop       TeleShop      
## [34105] MBR            TeleShop       TeleShop       TeleShop      
## [34109] MBR            TeleShop       e-Shop         MBR           
## [34113] e-Shop         TeleShop       TeleShop       TeleShop      
## [34117] MBR            TeleShop       e-Shop         e-Shop        
## [34121] MBR            e-Shop         e-Shop         MBR           
## [34125] e-Shop         MBR            e-Shop         e-Shop        
## [34129] MBR            MBR            Flagship store Flagship store
## [34133] MBR            Flagship store Flagship store MBR           
## [34137] TeleShop       TeleShop       Flagship store MBR           
## [34141] Flagship store TeleShop       MBR            TeleShop      
## [34145] MBR            Flagship store Flagship store MBR           
## [34149] Flagship store MBR            Flagship store TeleShop      
## [34153] Flagship store Flagship store Flagship store Flagship store
## [34157] e-Shop         e-Shop         e-Shop         Flagship store
## [34161] Flagship store Flagship store Flagship store Flagship store
## [34165] Flagship store Flagship store Flagship store Flagship store
## [34169] MBR            MBR            e-Shop         MBR           
## [34173] e-Shop         TeleShop       TeleShop       TeleShop      
## [34177] TeleShop       TeleShop       TeleShop       TeleShop      
## [34181] TeleShop       TeleShop       TeleShop       TeleShop      
## [34185] TeleShop       MBR            e-Shop         MBR           
## [34189] MBR            MBR            e-Shop         e-Shop        
## [34193] MBR            MBR            e-Shop         e-Shop        
## [34197] MBR            e-Shop         MBR            MBR           
## [34201] MBR            MBR            MBR            Flagship store
## [34205] Flagship store MBR            Flagship store MBR           
## [34209] Flagship store TeleShop       TeleShop       TeleShop      
## [34213] e-Shop         e-Shop         e-Shop         e-Shop        
## [34217] e-Shop         e-Shop         e-Shop         e-Shop        
## [34221] e-Shop         Flagship store e-Shop         MBR           
## [34225] MBR            Flagship store MBR            e-Shop        
## [34229] e-Shop         MBR            MBR            e-Shop        
## [34233] e-Shop         e-Shop         e-Shop         Flagship store
## [34237] e-Shop         e-Shop         e-Shop         e-Shop        
## [34241] Flagship store e-Shop         e-Shop         e-Shop        
## [34245] e-Shop         e-Shop         e-Shop         Flagship store
## [34249] e-Shop         e-Shop         e-Shop         e-Shop        
## [34253] e-Shop         e-Shop         e-Shop         Flagship store
## [34257] e-Shop         e-Shop         Flagship store Flagship store
## [34261] Flagship store Flagship store e-Shop         MBR           
## [34265] e-Shop         MBR            Flagship store MBR           
## [34269] e-Shop         Flagship store Flagship store Flagship store
## [34273] Flagship store Flagship store Flagship store Flagship store
## [34277] Flagship store Flagship store e-Shop         TeleShop      
## [34281] MBR            MBR            MBR            MBR           
## [34285] TeleShop       TeleShop       e-Shop         TeleShop      
## [34289] MBR            e-Shop         e-Shop         MBR           
## [34293] MBR            e-Shop         MBR            e-Shop        
## [34297] e-Shop         e-Shop         e-Shop         TeleShop      
## [34301] TeleShop       TeleShop       e-Shop         e-Shop        
## [34305] e-Shop         e-Shop         e-Shop         e-Shop        
## [34309] e-Shop         TeleShop       TeleShop       MBR           
## [34313] MBR            MBR            e-Shop         e-Shop        
## [34317] e-Shop         e-Shop         e-Shop         e-Shop        
## [34321] e-Shop         e-Shop         e-Shop         e-Shop        
## [34325] e-Shop         e-Shop         e-Shop         e-Shop        
## [34329] e-Shop         TeleShop       MBR            MBR           
## [34333] MBR            MBR            TeleShop       MBR           
## [34337] MBR            e-Shop         Flagship store e-Shop        
## [34341] e-Shop         Flagship store Flagship store e-Shop        
## [34345] e-Shop         e-Shop         MBR            e-Shop        
## [34349] MBR            e-Shop         Flagship store Flagship store
## [34353] MBR            Flagship store e-Shop         e-Shop        
## [34357] e-Shop         e-Shop         e-Shop         Flagship store
## [34361] e-Shop         e-Shop         Flagship store e-Shop        
## [34365] e-Shop         e-Shop         Flagship store Flagship store
## [34369] e-Shop         e-Shop         Flagship store e-Shop        
## [34373] Flagship store Flagship store e-Shop         e-Shop        
## [34377] e-Shop         Flagship store e-Shop         e-Shop        
## [34381] e-Shop         e-Shop         e-Shop         MBR           
## [34385] e-Shop         e-Shop         e-Shop         e-Shop        
## [34389] MBR            e-Shop         e-Shop         e-Shop        
## [34393] MBR            TeleShop       Flagship store TeleShop      
## [34397] TeleShop       TeleShop       Flagship store TeleShop      
## [34401] Flagship store Flagship store Flagship store Flagship store
## [34405] Flagship store Flagship store TeleShop       e-Shop        
## [34409] e-Shop         Flagship store e-Shop         TeleShop      
## [34413] TeleShop       Flagship store e-Shop         e-Shop        
## [34417] e-Shop         e-Shop         e-Shop         TeleShop      
## [34421] TeleShop       e-Shop         e-Shop         e-Shop        
## [34425] e-Shop         e-Shop         e-Shop         e-Shop        
## [34429] MBR            e-Shop         e-Shop         e-Shop        
## [34433] MBR            e-Shop         MBR            MBR           
## [34437] MBR            e-Shop         MBR            e-Shop        
## [34441] MBR            MBR            e-Shop         e-Shop        
## [34445] MBR            e-Shop         TeleShop       TeleShop      
## [34449] TeleShop       TeleShop       TeleShop       TeleShop      
## [34453] TeleShop       TeleShop       TeleShop       TeleShop      
## [34457] TeleShop       e-Shop         e-Shop         e-Shop        
## [34461] TeleShop       e-Shop         TeleShop       TeleShop      
## [34465] e-Shop         TeleShop       e-Shop         e-Shop        
## [34469] e-Shop         e-Shop         e-Shop         e-Shop        
## [34473] e-Shop         e-Shop         e-Shop         TeleShop      
## [34477] TeleShop       TeleShop       e-Shop         e-Shop        
## [34481] TeleShop       MBR            e-Shop         e-Shop        
## [34485] e-Shop         MBR            MBR            TeleShop      
## [34489] TeleShop       e-Shop         e-Shop         MBR           
## [34493] MBR            MBR            e-Shop         e-Shop        
## [34497] TeleShop       e-Shop         MBR            e-Shop        
## [34501] MBR            TeleShop       e-Shop         TeleShop      
## [34505] TeleShop       e-Shop         TeleShop       e-Shop        
## [34509] e-Shop         e-Shop         TeleShop       e-Shop        
## [34513] e-Shop         e-Shop         e-Shop         e-Shop        
## [34517] Flagship store e-Shop         Flagship store e-Shop        
## [34521] TeleShop       TeleShop       e-Shop         e-Shop        
## [34525] TeleShop       TeleShop       e-Shop         e-Shop        
## [34529] TeleShop       e-Shop         e-Shop         MBR           
## [34533] MBR            MBR            e-Shop         TeleShop      
## [34537] MBR            MBR            TeleShop       TeleShop      
## [34541] TeleShop       TeleShop       TeleShop       TeleShop      
## [34545] TeleShop       TeleShop       TeleShop       TeleShop      
## [34549] TeleShop       TeleShop       e-Shop         TeleShop      
## [34553] TeleShop       TeleShop       TeleShop       e-Shop        
## [34557] TeleShop       e-Shop         e-Shop         e-Shop        
## [34561] e-Shop         Flagship store Flagship store TeleShop      
## [34565] TeleShop       TeleShop       TeleShop       TeleShop      
## [34569] Flagship store Flagship store Flagship store Flagship store
## [34573] Flagship store Flagship store Flagship store Flagship store
## [34577] TeleShop       Flagship store e-Shop         e-Shop        
## [34581] e-Shop         e-Shop         e-Shop         e-Shop        
## [34585] Flagship store Flagship store e-Shop         e-Shop        
## [34589] e-Shop         e-Shop         e-Shop         e-Shop        
## [34593] e-Shop         TeleShop       e-Shop         e-Shop        
## [34597] e-Shop         e-Shop         TeleShop       e-Shop        
## [34601] e-Shop         e-Shop         e-Shop         e-Shop        
## [34605] TeleShop       e-Shop         e-Shop         e-Shop        
## [34609] e-Shop         e-Shop         e-Shop         e-Shop        
## [34613] e-Shop         MBR            MBR            MBR           
## [34617] MBR            MBR            MBR            e-Shop        
## [34621] MBR            MBR            MBR            MBR           
## [34625] MBR            MBR            TeleShop       TeleShop      
## [34629] TeleShop       TeleShop       TeleShop       TeleShop      
## [34633] TeleShop       e-Shop         TeleShop       TeleShop      
## [34637] e-Shop         e-Shop         e-Shop         MBR           
## [34641] e-Shop         e-Shop         e-Shop         e-Shop        
## [34645] e-Shop         e-Shop         MBR            e-Shop        
## [34649] e-Shop         TeleShop       e-Shop         Flagship store
## [34653] Flagship store TeleShop       Flagship store Flagship store
## [34657] e-Shop         e-Shop         e-Shop         e-Shop        
## [34661] e-Shop         e-Shop         Flagship store Flagship store
## [34665] e-Shop         e-Shop         e-Shop         Flagship store
## [34669] Flagship store e-Shop         Flagship store Flagship store
## [34673] e-Shop         e-Shop         e-Shop         e-Shop        
## [34677] Flagship store Flagship store Flagship store Flagship store
## [34681] Flagship store e-Shop         e-Shop         e-Shop        
## [34685] Flagship store Flagship store Flagship store e-Shop        
## [34689] TeleShop       e-Shop         e-Shop         Flagship store
## [34693] Flagship store e-Shop         e-Shop         TeleShop      
## [34697] TeleShop       TeleShop       TeleShop       e-Shop        
## [34701] TeleShop       TeleShop       e-Shop         TeleShop      
## [34705] TeleShop       TeleShop       e-Shop         TeleShop      
## [34709] TeleShop       TeleShop       e-Shop         e-Shop        
## [34713] TeleShop       TeleShop       e-Shop         e-Shop        
## [34717] MBR            MBR            e-Shop         e-Shop        
## [34721] MBR            MBR            MBR            TeleShop      
## [34725] TeleShop       Flagship store TeleShop       TeleShop      
## [34729] TeleShop       TeleShop       TeleShop       TeleShop      
## [34733] Flagship store Flagship store e-Shop         Flagship store
## [34737] Flagship store Flagship store Flagship store e-Shop        
## [34741] Flagship store TeleShop       e-Shop         e-Shop        
## [34745] TeleShop       e-Shop         e-Shop         e-Shop        
## [34749] TeleShop       TeleShop       TeleShop       TeleShop      
## [34753] TeleShop       TeleShop       TeleShop       TeleShop      
## [34757] TeleShop       TeleShop       TeleShop       TeleShop      
## [34761] Flagship store MBR            Flagship store Flagship store
## [34765] Flagship store Flagship store e-Shop         e-Shop        
## [34769] Flagship store Flagship store Flagship store Flagship store
## [34773] MBR            Flagship store Flagship store Flagship store
## [34777] e-Shop         MBR            Flagship store Flagship store
## [34781] e-Shop         e-Shop         e-Shop         e-Shop        
## [34785] e-Shop         TeleShop       e-Shop         e-Shop        
## [34789] e-Shop         Flagship store Flagship store TeleShop      
## [34793] Flagship store Flagship store Flagship store Flagship store
## [34797] Flagship store e-Shop         e-Shop         e-Shop        
## [34801] MBR            MBR            e-Shop         MBR           
## [34805] TeleShop       e-Shop         e-Shop         MBR           
## [34809] e-Shop         TeleShop       MBR            e-Shop        
## [34813] TeleShop       MBR            TeleShop       TeleShop      
## [34817] Flagship store Flagship store Flagship store TeleShop      
## [34821] Flagship store TeleShop       Flagship store MBR           
## [34825] Flagship store Flagship store Flagship store Flagship store
## [34829] Flagship store MBR            Flagship store e-Shop        
## [34833] Flagship store Flagship store e-Shop         e-Shop        
## [34837] Flagship store Flagship store e-Shop         e-Shop        
## [34841] e-Shop         Flagship store Flagship store e-Shop        
## [34845] e-Shop         e-Shop         e-Shop         Flagship store
## [34849] Flagship store e-Shop         TeleShop       e-Shop        
## [34853] e-Shop         TeleShop       e-Shop         TeleShop      
## [34857] TeleShop       TeleShop       TeleShop       TeleShop      
## [34861] MBR            MBR            MBR            e-Shop        
## [34865] e-Shop         e-Shop         e-Shop         e-Shop        
## [34869] MBR            e-Shop         e-Shop         MBR           
## [34873] e-Shop         e-Shop         e-Shop         MBR           
## [34877] MBR            TeleShop       Flagship store TeleShop      
## [34881] TeleShop       Flagship store Flagship store Flagship store
## [34885] Flagship store MBR            MBR            MBR           
## [34889] MBR            MBR            TeleShop       e-Shop        
## [34893] TeleShop       TeleShop       e-Shop         TeleShop      
## [34897] e-Shop         MBR            e-Shop         e-Shop        
## [34901] e-Shop         e-Shop         MBR            Flagship store
## [34905] Flagship store Flagship store Flagship store e-Shop        
## [34909] TeleShop       e-Shop         MBR            MBR           
## [34913] TeleShop       MBR            e-Shop         TeleShop      
## [34917] TeleShop       e-Shop         e-Shop         e-Shop        
## [34921] e-Shop         TeleShop       e-Shop         e-Shop        
## [34925] e-Shop         e-Shop         e-Shop         e-Shop        
## [34929] e-Shop         e-Shop         MBR            MBR           
## [34933] MBR            MBR            Flagship store Flagship store
## [34937] MBR            e-Shop         Flagship store Flagship store
## [34941] e-Shop         Flagship store Flagship store Flagship store
## [34945] e-Shop         e-Shop         e-Shop         e-Shop        
## [34949] e-Shop         e-Shop         e-Shop         TeleShop      
## [34953] TeleShop       e-Shop         e-Shop         TeleShop      
## [34957] e-Shop         e-Shop         e-Shop         e-Shop        
## [34961] e-Shop         e-Shop         MBR            e-Shop        
## [34965] e-Shop         MBR            e-Shop         e-Shop        
## [34969] e-Shop         e-Shop         MBR            e-Shop        
## [34973] e-Shop         TeleShop       TeleShop       TeleShop      
## [34977] TeleShop       Flagship store Flagship store Flagship store
## [34981] Flagship store Flagship store Flagship store Flagship store
## [34985] Flagship store e-Shop         TeleShop       MBR           
## [34989] e-Shop         TeleShop       MBR            e-Shop        
## [34993] e-Shop         e-Shop         e-Shop         e-Shop        
## [34997] e-Shop         e-Shop         TeleShop       TeleShop      
## [35001] TeleShop       TeleShop       TeleShop       TeleShop      
## [35005] TeleShop       TeleShop       TeleShop       TeleShop      
## [35009] TeleShop       Flagship store e-Shop         e-Shop        
## [35013] Flagship store e-Shop         e-Shop         e-Shop        
## [35017] e-Shop         MBR            MBR            MBR           
## [35021] MBR            MBR            MBR            MBR           
## [35025] MBR            Flagship store e-Shop         Flagship store
## [35029] TeleShop       e-Shop         TeleShop       e-Shop        
## [35033] TeleShop       TeleShop       TeleShop       TeleShop      
## [35037] TeleShop       TeleShop       e-Shop         e-Shop        
## [35041] MBR            MBR            MBR            MBR           
## [35045] MBR            MBR            TeleShop       TeleShop      
## [35049] TeleShop       MBR            MBR            TeleShop      
## [35053] TeleShop       MBR            MBR            MBR           
## [35057] e-Shop         e-Shop         e-Shop         TeleShop      
## [35061] e-Shop         e-Shop         e-Shop         e-Shop        
## [35065] e-Shop         TeleShop       e-Shop         TeleShop      
## [35069] TeleShop       TeleShop       e-Shop         e-Shop        
## [35073] e-Shop         e-Shop         e-Shop         e-Shop        
## [35077] e-Shop         e-Shop         e-Shop         e-Shop        
## [35081] e-Shop         e-Shop         e-Shop         e-Shop        
## [35085] e-Shop         e-Shop         e-Shop         e-Shop        
## [35089] TeleShop       TeleShop       e-Shop         e-Shop        
## [35093] e-Shop         e-Shop         TeleShop       TeleShop      
## [35097] Flagship store MBR            TeleShop       Flagship store
## [35101] TeleShop       MBR            MBR            MBR           
## [35105] e-Shop         e-Shop         e-Shop         e-Shop        
## [35109] e-Shop         MBR            Flagship store MBR           
## [35113] e-Shop         MBR            MBR            MBR           
## [35117] MBR            Flagship store MBR            MBR           
## [35121] MBR            MBR            MBR            MBR           
## [35125] TeleShop       TeleShop       e-Shop         MBR           
## [35129] MBR            e-Shop         MBR            MBR           
## [35133] MBR            MBR            e-Shop         e-Shop        
## [35137] e-Shop         MBR            MBR            MBR           
## [35141] MBR            MBR            MBR            MBR           
## [35145] e-Shop         MBR            e-Shop         MBR           
## [35149] e-Shop         e-Shop         e-Shop         MBR           
## [35153] MBR            MBR            MBR            e-Shop        
## [35157] MBR            MBR            Flagship store e-Shop        
## [35161] TeleShop       MBR            TeleShop       Flagship store
## [35165] e-Shop         TeleShop       Flagship store TeleShop      
## [35169] e-Shop         Flagship store MBR            Flagship store
## [35173] MBR            MBR            Flagship store TeleShop      
## [35177] Flagship store Flagship store Flagship store Flagship store
## [35181] TeleShop       MBR            MBR            e-Shop        
## [35185] Flagship store e-Shop         Flagship store e-Shop        
## [35189] MBR            e-Shop         TeleShop       MBR           
## [35193] Flagship store MBR            MBR            MBR           
## [35197] e-Shop         MBR            MBR            TeleShop      
## [35201] Flagship store TeleShop       MBR            e-Shop        
## [35205] MBR            MBR            e-Shop         MBR           
## [35209] e-Shop         TeleShop       MBR            TeleShop      
## [35213] e-Shop         MBR            MBR            e-Shop        
## [35217] MBR            e-Shop         e-Shop         e-Shop        
## [35221] e-Shop         e-Shop         e-Shop         e-Shop        
## [35225] e-Shop         e-Shop         e-Shop         e-Shop        
## [35229] MBR            e-Shop         e-Shop         MBR           
## [35233] Flagship store Flagship store TeleShop       TeleShop      
## [35237] TeleShop       TeleShop       TeleShop       Flagship store
## [35241] Flagship store Flagship store Flagship store e-Shop        
## [35245] e-Shop         e-Shop         e-Shop         TeleShop      
## [35249] e-Shop         TeleShop       e-Shop         e-Shop        
## [35253] e-Shop         MBR            e-Shop         MBR           
## [35257] e-Shop         e-Shop         e-Shop         e-Shop        
## [35261] e-Shop         MBR            TeleShop       e-Shop        
## [35265] e-Shop         TeleShop       MBR            TeleShop      
## [35269] e-Shop         e-Shop         TeleShop       e-Shop        
## [35273] TeleShop       TeleShop       e-Shop         e-Shop        
## [35277] TeleShop       e-Shop         TeleShop       TeleShop      
## [35281] TeleShop       MBR            e-Shop         TeleShop      
## [35285] e-Shop         e-Shop         e-Shop         MBR           
## [35289] TeleShop       MBR            Flagship store Flagship store
## [35293] Flagship store Flagship store Flagship store e-Shop        
## [35297] TeleShop       Flagship store TeleShop       TeleShop      
## [35301] TeleShop       Flagship store e-Shop         Flagship store
## [35305] Flagship store TeleShop       e-Shop         e-Shop        
## [35309] e-Shop         e-Shop         TeleShop       e-Shop        
## [35313] Flagship store MBR            e-Shop         MBR           
## [35317] Flagship store MBR            MBR            Flagship store
## [35321] MBR            e-Shop         e-Shop         e-Shop        
## [35325] e-Shop         e-Shop         e-Shop         e-Shop        
## [35329] e-Shop         e-Shop         e-Shop         e-Shop        
## [35333] e-Shop         e-Shop         e-Shop         e-Shop        
## [35337] e-Shop         e-Shop         e-Shop         e-Shop        
## [35341] e-Shop         e-Shop         TeleShop       e-Shop        
## [35345] e-Shop         e-Shop         e-Shop         e-Shop        
## [35349] e-Shop         e-Shop         TeleShop       e-Shop        
## [35353] e-Shop         e-Shop         e-Shop         TeleShop      
## [35357] Flagship store Flagship store e-Shop         Flagship store
## [35361] e-Shop         Flagship store Flagship store TeleShop      
## [35365] TeleShop       Flagship store Flagship store Flagship store
## [35369] Flagship store Flagship store Flagship store Flagship store
## [35373] e-Shop         e-Shop         e-Shop         TeleShop      
## [35377] e-Shop         e-Shop         e-Shop         e-Shop        
## [35381] e-Shop         Flagship store Flagship store Flagship store
## [35385] e-Shop         TeleShop       MBR            TeleShop      
## [35389] TeleShop       MBR            TeleShop       TeleShop      
## [35393] TeleShop       TeleShop       e-Shop         MBR           
## [35397] TeleShop       e-Shop         MBR            MBR           
## [35401] MBR            MBR            TeleShop       MBR           
## [35405] TeleShop       TeleShop       Flagship store TeleShop      
## [35409] TeleShop       MBR            TeleShop       TeleShop      
## [35413] Flagship store Flagship store MBR            e-Shop        
## [35417] e-Shop         e-Shop         e-Shop         e-Shop        
## [35421] Flagship store Flagship store Flagship store Flagship store
## [35425] Flagship store MBR            MBR            MBR           
## [35429] TeleShop       TeleShop       TeleShop       TeleShop      
## [35433] TeleShop       TeleShop       e-Shop         e-Shop        
## [35437] e-Shop         e-Shop         e-Shop         Flagship store
## [35441] Flagship store e-Shop         e-Shop         Flagship store
## [35445] e-Shop         e-Shop         e-Shop         e-Shop        
## [35449] Flagship store Flagship store Flagship store Flagship store
## [35453] Flagship store Flagship store Flagship store MBR           
## [35457] e-Shop         e-Shop         e-Shop         e-Shop        
## [35461] MBR            e-Shop         MBR            e-Shop        
## [35465] MBR            e-Shop         MBR            e-Shop        
## [35469] e-Shop         e-Shop         e-Shop         e-Shop        
## [35473] e-Shop         TeleShop       TeleShop       TeleShop      
## [35477] TeleShop       MBR            Flagship store Flagship store
## [35481] Flagship store Flagship store MBR            e-Shop        
## [35485] e-Shop         e-Shop         e-Shop         e-Shop        
## [35489] e-Shop         e-Shop         e-Shop         e-Shop        
## [35493] e-Shop         e-Shop         e-Shop         e-Shop        
## [35497] e-Shop         e-Shop         e-Shop         e-Shop        
## [35501] e-Shop         e-Shop         e-Shop         e-Shop        
## [35505] e-Shop         e-Shop         e-Shop         Flagship store
## [35509] e-Shop         e-Shop         Flagship store Flagship store
## [35513] e-Shop         MBR            MBR            Flagship store
## [35517] MBR            Flagship store Flagship store e-Shop        
## [35521] e-Shop         Flagship store Flagship store e-Shop        
## [35525] MBR            e-Shop         MBR            MBR           
## [35529] MBR            TeleShop       TeleShop       TeleShop      
## [35533] TeleShop       TeleShop       TeleShop       TeleShop      
## [35537] TeleShop       e-Shop         e-Shop         TeleShop      
## [35541] e-Shop         TeleShop       TeleShop       TeleShop      
## [35545] e-Shop         e-Shop         TeleShop       TeleShop      
## [35549] TeleShop       TeleShop       TeleShop       TeleShop      
## [35553] e-Shop         e-Shop         TeleShop       TeleShop      
## [35557] TeleShop       TeleShop       TeleShop       TeleShop      
## [35561] e-Shop         TeleShop       e-Shop         TeleShop      
## [35565] TeleShop       TeleShop       e-Shop         e-Shop        
## [35569] MBR            e-Shop         MBR            TeleShop      
## [35573] TeleShop       MBR            TeleShop       TeleShop      
## [35577] TeleShop       TeleShop       TeleShop       TeleShop      
## [35581] TeleShop       TeleShop       MBR            e-Shop        
## [35585] e-Shop         e-Shop         MBR            TeleShop      
## [35589] MBR            Flagship store e-Shop         Flagship store
## [35593] Flagship store TeleShop       TeleShop       e-Shop        
## [35597] MBR            TeleShop       e-Shop         MBR           
## [35601] MBR            TeleShop       TeleShop       e-Shop        
## [35605] TeleShop       Flagship store TeleShop       MBR           
## [35609] TeleShop       e-Shop         TeleShop       e-Shop        
## [35613] Flagship store TeleShop       Flagship store TeleShop      
## [35617] e-Shop         MBR            Flagship store TeleShop      
## [35621] TeleShop       TeleShop       TeleShop       TeleShop      
## [35625] TeleShop       TeleShop       TeleShop       TeleShop      
## [35629] e-Shop         TeleShop       TeleShop       e-Shop        
## [35633] e-Shop         Flagship store Flagship store e-Shop        
## [35637] TeleShop       e-Shop         e-Shop         e-Shop        
## [35641] e-Shop         e-Shop         e-Shop         e-Shop        
## [35645] e-Shop         e-Shop         e-Shop         e-Shop        
## [35649] e-Shop         e-Shop         e-Shop         e-Shop        
## [35653] e-Shop         e-Shop         Flagship store Flagship store
## [35657] e-Shop         e-Shop         e-Shop         e-Shop        
## [35661] TeleShop       TeleShop       TeleShop       TeleShop      
## [35665] e-Shop         TeleShop       e-Shop         e-Shop        
## [35669] TeleShop       TeleShop       TeleShop       e-Shop        
## [35673] e-Shop         TeleShop       TeleShop       TeleShop      
## [35677] TeleShop       TeleShop       MBR            MBR           
## [35681] e-Shop         e-Shop         Flagship store Flagship store
## [35685] e-Shop         TeleShop       TeleShop       TeleShop      
## [35689] TeleShop       TeleShop       TeleShop       TeleShop      
## [35693] e-Shop         e-Shop         e-Shop         e-Shop        
## [35697] e-Shop         e-Shop         e-Shop         e-Shop        
## [35701] e-Shop         e-Shop         e-Shop         e-Shop        
## [35705] e-Shop         e-Shop         e-Shop         e-Shop        
## [35709] e-Shop         e-Shop         e-Shop         MBR           
## [35713] e-Shop         TeleShop       TeleShop       TeleShop      
## [35717] MBR            TeleShop       TeleShop       MBR           
## [35721] TeleShop       TeleShop       e-Shop         Flagship store
## [35725] Flagship store Flagship store Flagship store Flagship store
## [35729] e-Shop         e-Shop         MBR            e-Shop        
## [35733] MBR            MBR            e-Shop         MBR           
## [35737] MBR            MBR            e-Shop         MBR           
## [35741] MBR            e-Shop         e-Shop         e-Shop        
## [35745] e-Shop         e-Shop         MBR            e-Shop        
## [35749] MBR            e-Shop         MBR            MBR           
## [35753] MBR            MBR            MBR            e-Shop        
## [35757] e-Shop         e-Shop         e-Shop         e-Shop        
## [35761] e-Shop         e-Shop         e-Shop         e-Shop        
## [35765] e-Shop         e-Shop         MBR            e-Shop        
## [35769] e-Shop         MBR            MBR            e-Shop        
## [35773] e-Shop         e-Shop         e-Shop         MBR           
## [35777] MBR            e-Shop         MBR            e-Shop        
## [35781] e-Shop         MBR            MBR            MBR           
## [35785] MBR            e-Shop         TeleShop       MBR           
## [35789] e-Shop         MBR            MBR            TeleShop      
## [35793] e-Shop         MBR            MBR            MBR           
## [35797] e-Shop         e-Shop         e-Shop         e-Shop        
## [35801] e-Shop         e-Shop         e-Shop         e-Shop        
## [35805] e-Shop         e-Shop         e-Shop         e-Shop        
## [35809] e-Shop         TeleShop       Flagship store TeleShop      
## [35813] Flagship store Flagship store Flagship store Flagship store
## [35817] e-Shop         Flagship store e-Shop         Flagship store
## [35821] Flagship store Flagship store Flagship store e-Shop        
## [35825] Flagship store Flagship store Flagship store e-Shop        
## [35829] e-Shop         Flagship store Flagship store e-Shop        
## [35833] Flagship store e-Shop         e-Shop         e-Shop        
## [35837] e-Shop         Flagship store Flagship store Flagship store
## [35841] e-Shop         Flagship store e-Shop         e-Shop        
## [35845] Flagship store e-Shop         Flagship store Flagship store
## [35849] Flagship store e-Shop         e-Shop         Flagship store
## [35853] e-Shop         Flagship store Flagship store Flagship store
## [35857] Flagship store Flagship store e-Shop         e-Shop        
## [35861] e-Shop         Flagship store Flagship store e-Shop        
## [35865] e-Shop         e-Shop         e-Shop         e-Shop        
## [35869] e-Shop         e-Shop         e-Shop         MBR           
## [35873] MBR            MBR            e-Shop         e-Shop        
## [35877] e-Shop         e-Shop         e-Shop         e-Shop        
## [35881] e-Shop         e-Shop         e-Shop         e-Shop        
## [35885] e-Shop         e-Shop         e-Shop         e-Shop        
## [35889] e-Shop         e-Shop         e-Shop         MBR           
## [35893] e-Shop         MBR            TeleShop       MBR           
## [35897] MBR            TeleShop       MBR            e-Shop        
## [35901] MBR            Flagship store e-Shop         e-Shop        
## [35905] e-Shop         Flagship store e-Shop         MBR           
## [35909] e-Shop         MBR            e-Shop         e-Shop        
## [35913] Flagship store MBR            MBR            e-Shop        
## [35917] e-Shop         e-Shop         e-Shop         e-Shop        
## [35921] e-Shop         e-Shop         e-Shop         e-Shop        
## [35925] Flagship store e-Shop         e-Shop         Flagship store
## [35929] Flagship store e-Shop         e-Shop         e-Shop        
## [35933] e-Shop         e-Shop         e-Shop         e-Shop        
## [35937] e-Shop         TeleShop       TeleShop       TeleShop      
## [35941] e-Shop         TeleShop       TeleShop       e-Shop        
## [35945] TeleShop       TeleShop       e-Shop         TeleShop      
## [35949] e-Shop         TeleShop       TeleShop       e-Shop        
## [35953] TeleShop       TeleShop       e-Shop         MBR           
## [35957] MBR            MBR            MBR            MBR           
## [35961] MBR            MBR            MBR            MBR           
## [35965] MBR            MBR            MBR            MBR           
## [35969] MBR            MBR            MBR            MBR           
## [35973] MBR            MBR            MBR            MBR           
## [35977] MBR            MBR            MBR            MBR           
## [35981] MBR            Flagship store e-Shop         Flagship store
## [35985] Flagship store e-Shop         Flagship store Flagship store
## [35989] Flagship store Flagship store e-Shop         TeleShop      
## [35993] Flagship store Flagship store e-Shop         Flagship store
## [35997] e-Shop         TeleShop       TeleShop       TeleShop      
## [36001] e-Shop         TeleShop       MBR            e-Shop        
## [36005] e-Shop         e-Shop         MBR            MBR           
## [36009] e-Shop         e-Shop         MBR            MBR           
## [36013] MBR            MBR            MBR            MBR           
## [36017] MBR            MBR            MBR            e-Shop        
## [36021] MBR            e-Shop         e-Shop         MBR           
## [36025] MBR            MBR            e-Shop         MBR           
## [36029] MBR            e-Shop         Flagship store MBR           
## [36033] Flagship store Flagship store MBR            MBR           
## [36037] MBR            Flagship store Flagship store MBR           
## [36041] Flagship store Flagship store Flagship store Flagship store
## [36045] Flagship store Flagship store Flagship store TeleShop      
## [36049] Flagship store TeleShop       Flagship store TeleShop      
## [36053] TeleShop       TeleShop       Flagship store Flagship store
## [36057] Flagship store Flagship store Flagship store Flagship store
## [36061] Flagship store Flagship store Flagship store Flagship store
## [36065] Flagship store Flagship store Flagship store e-Shop        
## [36069] Flagship store Flagship store e-Shop         e-Shop        
## [36073] e-Shop         Flagship store TeleShop       Flagship store
## [36077] e-Shop         TeleShop       e-Shop         e-Shop        
## [36081] TeleShop       Flagship store TeleShop       e-Shop        
## [36085] TeleShop       TeleShop       TeleShop       TeleShop      
## [36089] TeleShop       Flagship store TeleShop       Flagship store
## [36093] TeleShop       TeleShop       Flagship store Flagship store
## [36097] e-Shop         e-Shop         Flagship store e-Shop        
## [36101] TeleShop       e-Shop         Flagship store e-Shop        
## [36105] TeleShop       TeleShop       MBR            MBR           
## [36109] Flagship store MBR            MBR            MBR           
## [36113] MBR            Flagship store MBR            MBR           
## [36117] Flagship store TeleShop       MBR            MBR           
## [36121] Flagship store TeleShop       MBR            MBR           
## [36125] Flagship store e-Shop         e-Shop         e-Shop        
## [36129] e-Shop         e-Shop         e-Shop         e-Shop        
## [36133] e-Shop         e-Shop         e-Shop         MBR           
## [36137] MBR            MBR            MBR            MBR           
## [36141] MBR            MBR            MBR            MBR           
## [36145] MBR            MBR            MBR            e-Shop        
## [36149] TeleShop       e-Shop         e-Shop         TeleShop      
## [36153] TeleShop       TeleShop       e-Shop         MBR           
## [36157] e-Shop         MBR            e-Shop         e-Shop        
## [36161] MBR            e-Shop         e-Shop         MBR           
## [36165] MBR            TeleShop       e-Shop         MBR           
## [36169] MBR            TeleShop       TeleShop       e-Shop        
## [36173] e-Shop         MBR            MBR            MBR           
## [36177] TeleShop       MBR            e-Shop         TeleShop      
## [36181] MBR            e-Shop         e-Shop         e-Shop        
## [36185] e-Shop         e-Shop         e-Shop         e-Shop        
## [36189] e-Shop         e-Shop         e-Shop         e-Shop        
## [36193] e-Shop         e-Shop         e-Shop         MBR           
## [36197] MBR            MBR            MBR            MBR           
## [36201] MBR            MBR            MBR            MBR           
## [36205] e-Shop         TeleShop       TeleShop       e-Shop        
## [36209] e-Shop         Flagship store e-Shop         e-Shop        
## [36213] Flagship store Flagship store Flagship store Flagship store
## [36217] Flagship store TeleShop       Flagship store TeleShop      
## [36221] TeleShop       Flagship store TeleShop       TeleShop      
## [36225] TeleShop       TeleShop       Flagship store Flagship store
## [36229] TeleShop       Flagship store Flagship store Flagship store
## [36233] Flagship store TeleShop       Flagship store Flagship store
## [36237] TeleShop       TeleShop       TeleShop       TeleShop      
## [36241] TeleShop       TeleShop       TeleShop       TeleShop      
## [36245] TeleShop       TeleShop       TeleShop       TeleShop      
## [36249] TeleShop       TeleShop       TeleShop       TeleShop      
## [36253] e-Shop         e-Shop         e-Shop         e-Shop        
## [36257] TeleShop       e-Shop         TeleShop       e-Shop        
## [36261] TeleShop       TeleShop       TeleShop       Flagship store
## [36265] e-Shop         Flagship store Flagship store e-Shop        
## [36269] e-Shop         e-Shop         e-Shop         e-Shop        
## [36273] e-Shop         Flagship store Flagship store e-Shop        
## [36277] Flagship store e-Shop         e-Shop         e-Shop        
## [36281] Flagship store Flagship store TeleShop       Flagship store
## [36285] e-Shop         TeleShop       TeleShop       TeleShop      
## [36289] e-Shop         e-Shop         TeleShop       TeleShop      
## [36293] TeleShop       TeleShop       TeleShop       Flagship store
## [36297] e-Shop         e-Shop         Flagship store MBR           
## [36301] Flagship store MBR            TeleShop       TeleShop      
## [36305] TeleShop       Flagship store Flagship store TeleShop      
## [36309] Flagship store TeleShop       TeleShop       Flagship store
## [36313] MBR            Flagship store MBR            Flagship store
## [36317] Flagship store Flagship store Flagship store Flagship store
## [36321] MBR            MBR            MBR            e-Shop        
## [36325] e-Shop         e-Shop         e-Shop         e-Shop        
## [36329] TeleShop       MBR            MBR            TeleShop      
## [36333] TeleShop       TeleShop       TeleShop       e-Shop        
## [36337] e-Shop         TeleShop       e-Shop         Flagship store
## [36341] Flagship store e-Shop         Flagship store Flagship store
## [36345] Flagship store Flagship store Flagship store Flagship store
## [36349] Flagship store Flagship store MBR            MBR           
## [36353] e-Shop         Flagship store Flagship store Flagship store
## [36357] e-Shop         e-Shop         Flagship store e-Shop        
## [36361] Flagship store e-Shop         e-Shop         Flagship store
## [36365] Flagship store Flagship store Flagship store Flagship store
## [36369] Flagship store Flagship store TeleShop       Flagship store
## [36373] Flagship store TeleShop       Flagship store TeleShop      
## [36377] Flagship store Flagship store Flagship store TeleShop      
## [36381] Flagship store Flagship store TeleShop       Flagship store
## [36385] Flagship store Flagship store e-Shop         TeleShop      
## [36389] TeleShop       e-Shop         e-Shop         Flagship store
## [36393] TeleShop       Flagship store Flagship store TeleShop      
## [36397] Flagship store Flagship store TeleShop       Flagship store
## [36401] Flagship store Flagship store Flagship store e-Shop        
## [36405] Flagship store TeleShop       TeleShop       e-Shop        
## [36409] TeleShop       e-Shop         TeleShop       e-Shop        
## [36413] e-Shop         e-Shop         e-Shop         e-Shop        
## [36417] e-Shop         e-Shop         e-Shop         e-Shop        
## [36421] e-Shop         e-Shop         e-Shop         e-Shop        
## [36425] e-Shop         e-Shop         e-Shop         TeleShop      
## [36429] e-Shop         MBR            MBR            e-Shop        
## [36433] TeleShop       TeleShop       e-Shop         e-Shop        
## [36437] e-Shop         e-Shop         e-Shop         e-Shop        
## [36441] e-Shop         Flagship store Flagship store Flagship store
## [36445] Flagship store MBR            MBR            e-Shop        
## [36449] MBR            e-Shop         MBR            e-Shop        
## [36453] Flagship store e-Shop         Flagship store Flagship store
## [36457] e-Shop         e-Shop         e-Shop         e-Shop        
## [36461] e-Shop         Flagship store Flagship store Flagship store
## [36465] e-Shop         e-Shop         MBR            e-Shop        
## [36469] MBR            e-Shop         e-Shop         e-Shop        
## [36473] e-Shop         e-Shop         e-Shop         MBR           
## [36477] MBR            Flagship store TeleShop       MBR           
## [36481] MBR            TeleShop       Flagship store Flagship store
## [36485] MBR            Flagship store TeleShop       Flagship store
## [36489] MBR            MBR            e-Shop         Flagship store
## [36493] Flagship store MBR            Flagship store Flagship store
## [36497] TeleShop       Flagship store TeleShop       TeleShop      
## [36501] Flagship store Flagship store e-Shop         Flagship store
## [36505] Flagship store Flagship store TeleShop       TeleShop      
## [36509] TeleShop       TeleShop       e-Shop         TeleShop      
## [36513] e-Shop         TeleShop       e-Shop         e-Shop        
## [36517] e-Shop         e-Shop         e-Shop         TeleShop      
## [36521] TeleShop       TeleShop       e-Shop         MBR           
## [36525] TeleShop       TeleShop       MBR            MBR           
## [36529] MBR            e-Shop         e-Shop         e-Shop        
## [36533] e-Shop         Flagship store e-Shop         e-Shop        
## [36537] Flagship store e-Shop         e-Shop         Flagship store
## [36541] TeleShop       TeleShop       Flagship store TeleShop      
## [36545] Flagship store e-Shop         MBR            MBR           
## [36549] e-Shop         MBR            e-Shop         MBR           
## [36553] Flagship store TeleShop       Flagship store TeleShop      
## [36557] Flagship store Flagship store Flagship store TeleShop      
## [36561] Flagship store TeleShop       TeleShop       e-Shop        
## [36565] TeleShop       e-Shop         TeleShop       e-Shop        
## [36569] e-Shop         e-Shop         MBR            MBR           
## [36573] MBR            MBR            Flagship store Flagship store
## [36577] TeleShop       MBR            TeleShop       MBR           
## [36581] Flagship store MBR            MBR            MBR           
## [36585] MBR            MBR            MBR            MBR           
## [36589] e-Shop         e-Shop         e-Shop         e-Shop        
## [36593] e-Shop         e-Shop         e-Shop         e-Shop        
## [36597] e-Shop         e-Shop         e-Shop         TeleShop      
## [36601] TeleShop       TeleShop       TeleShop       TeleShop      
## [36605] MBR            MBR            TeleShop       TeleShop      
## [36609] e-Shop         MBR            e-Shop         MBR           
## [36613] MBR            e-Shop         e-Shop         e-Shop        
## [36617] TeleShop       MBR            TeleShop       MBR           
## [36621] TeleShop       MBR            e-Shop         e-Shop        
## [36625] e-Shop         Flagship store e-Shop         Flagship store
## [36629] Flagship store Flagship store Flagship store Flagship store
## [36633] Flagship store Flagship store Flagship store Flagship store
## [36637] Flagship store e-Shop         e-Shop         TeleShop      
## [36641] e-Shop         TeleShop       TeleShop       e-Shop        
## [36645] e-Shop         Flagship store e-Shop         e-Shop        
## [36649] e-Shop         Flagship store Flagship store e-Shop        
## [36653] e-Shop         e-Shop         MBR            TeleShop      
## [36657] TeleShop       TeleShop       MBR            MBR           
## [36661] e-Shop         MBR            MBR            MBR           
## [36665] e-Shop         MBR            e-Shop         MBR           
## [36669] e-Shop         MBR            Flagship store MBR           
## [36673] Flagship store Flagship store Flagship store Flagship store
## [36677] Flagship store Flagship store TeleShop       TeleShop      
## [36681] e-Shop         TeleShop       e-Shop         TeleShop      
## [36685] TeleShop       e-Shop         e-Shop         e-Shop        
## [36689] TeleShop       TeleShop       e-Shop         Flagship store
## [36693] e-Shop         Flagship store e-Shop         e-Shop        
## [36697] e-Shop         e-Shop         e-Shop         e-Shop        
## [36701] e-Shop         e-Shop         Flagship store Flagship store
## [36705] Flagship store Flagship store Flagship store Flagship store
## [36709] e-Shop         e-Shop         e-Shop         e-Shop        
## [36713] e-Shop         e-Shop         e-Shop         e-Shop        
## [36717] e-Shop         e-Shop         Flagship store Flagship store
## [36721] Flagship store Flagship store Flagship store Flagship store
## [36725] Flagship store Flagship store Flagship store Flagship store
## [36729] Flagship store Flagship store Flagship store TeleShop      
## [36733] TeleShop       TeleShop       TeleShop       Flagship store
## [36737] TeleShop       TeleShop       TeleShop       TeleShop      
## [36741] TeleShop       e-Shop         Flagship store Flagship store
## [36745] TeleShop       TeleShop       Flagship store Flagship store
## [36749] TeleShop       Flagship store TeleShop       e-Shop        
## [36753] TeleShop       TeleShop       TeleShop       TeleShop      
## [36757] TeleShop       TeleShop       Flagship store MBR           
## [36761] MBR            MBR            MBR            Flagship store
## [36765] MBR            MBR            MBR            MBR           
## [36769] MBR            MBR            MBR            Flagship store
## [36773] MBR            e-Shop         e-Shop         e-Shop        
## [36777] e-Shop         e-Shop         e-Shop         e-Shop        
## [36781] e-Shop         e-Shop         MBR            e-Shop        
## [36785] e-Shop         e-Shop         e-Shop         MBR           
## [36789] e-Shop         e-Shop         MBR            TeleShop      
## [36793] e-Shop         TeleShop       Flagship store TeleShop      
## [36797] Flagship store e-Shop         Flagship store Flagship store
## [36801] e-Shop         Flagship store e-Shop         e-Shop        
## [36805] e-Shop         e-Shop         e-Shop         e-Shop        
## [36809] e-Shop         Flagship store e-Shop         e-Shop        
## [36813] e-Shop         e-Shop         Flagship store e-Shop        
## [36817] TeleShop       TeleShop       e-Shop         e-Shop        
## [36821] e-Shop         TeleShop       TeleShop       e-Shop        
## [36825] e-Shop         TeleShop       e-Shop         TeleShop      
## [36829] TeleShop       e-Shop         e-Shop         e-Shop        
## [36833] e-Shop         e-Shop         e-Shop         e-Shop        
## [36837] e-Shop         TeleShop       TeleShop       MBR           
## [36841] MBR            MBR            MBR            e-Shop        
## [36845] MBR            e-Shop         MBR            TeleShop      
## [36849] e-Shop         MBR            MBR            MBR           
## [36853] TeleShop       MBR            MBR            TeleShop      
## [36857] MBR            e-Shop         TeleShop       TeleShop      
## [36861] MBR            e-Shop         MBR            TeleShop      
## [36865] e-Shop         e-Shop         MBR            TeleShop      
## [36869] MBR            MBR            MBR            MBR           
## [36873] TeleShop       MBR            MBR            e-Shop        
## [36877] MBR            MBR            TeleShop       MBR           
## [36881] MBR            e-Shop         e-Shop         e-Shop        
## [36885] e-Shop         TeleShop       TeleShop       MBR           
## [36889] MBR            MBR            MBR            MBR           
## [36893] e-Shop         e-Shop         MBR            e-Shop        
## [36897] e-Shop         e-Shop         e-Shop         MBR           
## [36901] e-Shop         MBR            e-Shop         MBR           
## [36905] e-Shop         MBR            e-Shop         MBR           
## [36909] e-Shop         e-Shop         e-Shop         MBR           
## [36913] e-Shop         Flagship store e-Shop         Flagship store
## [36917] MBR            e-Shop         Flagship store e-Shop        
## [36921] e-Shop         MBR            MBR            e-Shop        
## [36925] e-Shop         e-Shop         e-Shop         e-Shop        
## [36929] MBR            MBR            e-Shop         MBR           
## [36933] e-Shop         e-Shop         e-Shop         e-Shop        
## [36937] e-Shop         MBR            MBR            MBR           
## [36941] Flagship store Flagship store Flagship store TeleShop      
## [36945] TeleShop       TeleShop       TeleShop       TeleShop      
## [36949] Flagship store TeleShop       Flagship store TeleShop      
## [36953] Flagship store TeleShop       TeleShop       Flagship store
## [36957] TeleShop       Flagship store MBR            e-Shop        
## [36961] e-Shop         e-Shop         e-Shop         e-Shop        
## [36965] MBR            e-Shop         e-Shop         e-Shop        
## [36969] e-Shop         TeleShop       TeleShop       e-Shop        
## [36973] TeleShop       e-Shop         e-Shop         e-Shop        
## [36977] TeleShop       TeleShop       e-Shop         e-Shop        
## [36981] TeleShop       e-Shop         e-Shop         TeleShop      
## [36985] e-Shop         e-Shop         TeleShop       TeleShop      
## [36989] TeleShop       TeleShop       e-Shop         e-Shop        
## [36993] e-Shop         TeleShop       MBR            MBR           
## [36997] MBR            MBR            MBR            TeleShop      
## [37001] e-Shop         e-Shop         e-Shop         TeleShop      
## [37005] e-Shop         MBR            MBR            e-Shop        
## [37009] MBR            MBR            MBR            e-Shop        
## [37013] TeleShop       e-Shop         TeleShop       MBR           
## [37017] MBR            MBR            MBR            e-Shop        
## [37021] e-Shop         MBR            MBR            MBR           
## [37025] MBR            e-Shop         e-Shop         e-Shop        
## [37029] e-Shop         e-Shop         e-Shop         e-Shop        
## [37033] TeleShop       TeleShop       TeleShop       TeleShop      
## [37037] TeleShop       e-Shop         e-Shop         e-Shop        
## [37041] TeleShop       MBR            e-Shop         MBR           
## [37045] TeleShop       MBR            MBR            e-Shop        
## [37049] e-Shop         e-Shop         e-Shop         e-Shop        
## [37053] e-Shop         e-Shop         MBR            MBR           
## [37057] MBR            MBR            MBR            MBR           
## [37061] MBR            Flagship store Flagship store Flagship store
## [37065] TeleShop       TeleShop       Flagship store Flagship store
## [37069] e-Shop         Flagship store e-Shop         Flagship store
## [37073] Flagship store Flagship store Flagship store Flagship store
## [37077] e-Shop         e-Shop         e-Shop         e-Shop        
## [37081] Flagship store MBR            Flagship store Flagship store
## [37085] Flagship store Flagship store Flagship store MBR           
## [37089] e-Shop         e-Shop         MBR            MBR           
## [37093] e-Shop         Flagship store e-Shop         e-Shop        
## [37097] e-Shop         e-Shop         e-Shop         e-Shop        
## [37101] e-Shop         e-Shop         e-Shop         e-Shop        
## [37105] e-Shop         Flagship store e-Shop         e-Shop        
## [37109] Flagship store Flagship store TeleShop       Flagship store
## [37113] e-Shop         e-Shop         TeleShop       e-Shop        
## [37117] Flagship store TeleShop       Flagship store Flagship store
## [37121] Flagship store Flagship store Flagship store Flagship store
## [37125] Flagship store TeleShop       TeleShop       TeleShop      
## [37129] TeleShop       TeleShop       e-Shop         TeleShop      
## [37133] TeleShop       TeleShop       TeleShop       TeleShop      
## [37137] e-Shop         e-Shop         TeleShop       e-Shop        
## [37141] e-Shop         TeleShop       e-Shop         e-Shop        
## [37145] e-Shop         TeleShop       e-Shop         e-Shop        
## [37149] TeleShop       e-Shop         e-Shop         e-Shop        
## [37153] e-Shop         e-Shop         e-Shop         e-Shop        
## [37157] e-Shop         e-Shop         e-Shop         e-Shop        
## [37161] MBR            MBR            MBR            MBR           
## [37165] MBR            MBR            MBR            MBR           
## [37169] TeleShop       TeleShop       TeleShop       MBR           
## [37173] MBR            e-Shop         Flagship store e-Shop        
## [37177] e-Shop         MBR            Flagship store e-Shop        
## [37181] MBR            e-Shop         e-Shop         Flagship store
## [37185] MBR            Flagship store MBR            MBR           
## [37189] MBR            e-Shop         Flagship store Flagship store
## [37193] e-Shop         e-Shop         MBR            e-Shop        
## [37197] MBR            MBR            e-Shop         e-Shop        
## [37201] e-Shop         MBR            e-Shop         TeleShop      
## [37205] TeleShop       TeleShop       Flagship store Flagship store
## [37209] Flagship store Flagship store Flagship store Flagship store
## [37213] TeleShop       Flagship store TeleShop       Flagship store
## [37217] TeleShop       Flagship store Flagship store TeleShop      
## [37221] TeleShop       TeleShop       e-Shop         e-Shop        
## [37225] e-Shop         e-Shop         e-Shop         e-Shop        
## [37229] e-Shop         e-Shop         TeleShop       MBR           
## [37233] e-Shop         e-Shop         TeleShop       e-Shop        
## [37237] TeleShop       MBR            e-Shop         e-Shop        
## [37241] MBR            e-Shop         TeleShop       Flagship store
## [37245] TeleShop       MBR            MBR            Flagship store
## [37249] Flagship store Flagship store Flagship store Flagship store
## [37253] MBR            Flagship store Flagship store Flagship store
## [37257] Flagship store e-Shop         e-Shop         e-Shop        
## [37261] MBR            MBR            MBR            e-Shop        
## [37265] MBR            MBR            e-Shop         MBR           
## [37269] TeleShop       TeleShop       MBR            TeleShop      
## [37273] MBR            TeleShop       MBR            TeleShop      
## [37277] TeleShop       e-Shop         e-Shop         e-Shop        
## [37281] e-Shop         MBR            MBR            MBR           
## [37285] e-Shop         e-Shop         e-Shop         e-Shop        
## [37289] MBR            MBR            e-Shop         e-Shop        
## [37293] e-Shop         e-Shop         MBR            e-Shop        
## [37297] e-Shop         e-Shop         MBR            Flagship store
## [37301] e-Shop         Flagship store Flagship store Flagship store
## [37305] TeleShop       Flagship store Flagship store Flagship store
## [37309] Flagship store e-Shop         MBR            Flagship store
## [37313] TeleShop       MBR            TeleShop       TeleShop      
## [37317] MBR            e-Shop         MBR            Flagship store
## [37321] e-Shop         MBR            TeleShop       Flagship store
## [37325] Flagship store e-Shop         e-Shop         TeleShop      
## [37329] TeleShop       TeleShop       TeleShop       e-Shop        
## [37333] e-Shop         e-Shop         e-Shop         e-Shop        
## [37337] Flagship store e-Shop         Flagship store Flagship store
## [37341] e-Shop         e-Shop         e-Shop         TeleShop      
## [37345] e-Shop         TeleShop       e-Shop         TeleShop      
## [37349] TeleShop       e-Shop         e-Shop         e-Shop        
## [37353] TeleShop       e-Shop         TeleShop       TeleShop      
## [37357] TeleShop       MBR            MBR            TeleShop      
## [37361] TeleShop       MBR            MBR            MBR           
## [37365] MBR            e-Shop         e-Shop         MBR           
## [37369] e-Shop         e-Shop         e-Shop         MBR           
## [37373] e-Shop         e-Shop         e-Shop         e-Shop        
## [37377] MBR            MBR            e-Shop         MBR           
## [37381] e-Shop         e-Shop         e-Shop         e-Shop        
## [37385] e-Shop         e-Shop         e-Shop         e-Shop        
## [37389] MBR            MBR            MBR            MBR           
## [37393] MBR            MBR            Flagship store MBR           
## [37397] Flagship store MBR            MBR            MBR           
## [37401] MBR            MBR            MBR            MBR           
## [37405] MBR            MBR            MBR            MBR           
## [37409] MBR            MBR            MBR            MBR           
## [37413] MBR            MBR            Flagship store MBR           
## [37417] Flagship store MBR            Flagship store MBR           
## [37421] MBR            MBR            MBR            MBR           
## [37425] MBR            MBR            MBR            MBR           
## [37429] MBR            MBR            e-Shop         MBR           
## [37433] MBR            TeleShop       TeleShop       Flagship store
## [37437] Flagship store Flagship store Flagship store MBR           
## [37441] MBR            e-Shop         e-Shop         MBR           
## [37445] e-Shop         e-Shop         Flagship store e-Shop        
## [37449] Flagship store e-Shop         TeleShop       Flagship store
## [37453] TeleShop       TeleShop       Flagship store Flagship store
## [37457] Flagship store Flagship store Flagship store Flagship store
## [37461] Flagship store Flagship store Flagship store Flagship store
## [37465] MBR            Flagship store Flagship store Flagship store
## [37469] TeleShop       MBR            Flagship store Flagship store
## [37473] Flagship store MBR            MBR            TeleShop      
## [37477] TeleShop       MBR            TeleShop       Flagship store
## [37481] Flagship store TeleShop       Flagship store TeleShop      
## [37485] TeleShop       TeleShop       TeleShop       MBR           
## [37489] MBR            MBR            MBR            MBR           
## [37493] e-Shop         e-Shop         e-Shop         e-Shop        
## [37497] e-Shop         e-Shop         TeleShop       e-Shop        
## [37501] TeleShop       TeleShop       e-Shop         TeleShop      
## [37505] e-Shop         e-Shop         TeleShop       TeleShop      
## [37509] e-Shop         TeleShop       TeleShop       TeleShop      
## [37513] e-Shop         MBR            TeleShop       e-Shop        
## [37517] e-Shop         MBR            TeleShop       TeleShop      
## [37521] TeleShop       TeleShop       TeleShop       Flagship store
## [37525] TeleShop       Flagship store TeleShop       TeleShop      
## [37529] Flagship store MBR            MBR            MBR           
## [37533] MBR            MBR            TeleShop       TeleShop      
## [37537] TeleShop       TeleShop       TeleShop       TeleShop      
## [37541] TeleShop       TeleShop       TeleShop       e-Shop        
## [37545] TeleShop       TeleShop       TeleShop       TeleShop      
## [37549] TeleShop       e-Shop         TeleShop       TeleShop      
## [37553] e-Shop         TeleShop       TeleShop       TeleShop      
## [37557] TeleShop       e-Shop         e-Shop         TeleShop      
## [37561] TeleShop       TeleShop       TeleShop       TeleShop      
## [37565] TeleShop       e-Shop         TeleShop       MBR           
## [37569] e-Shop         MBR            TeleShop       e-Shop        
## [37573] e-Shop         e-Shop         TeleShop       TeleShop      
## [37577] TeleShop       TeleShop       TeleShop       MBR           
## [37581] MBR            MBR            MBR            MBR           
## [37585] Flagship store TeleShop       TeleShop       Flagship store
## [37589] TeleShop       Flagship store Flagship store Flagship store
## [37593] Flagship store Flagship store e-Shop         e-Shop        
## [37597] e-Shop         e-Shop         TeleShop       TeleShop      
## [37601] e-Shop         e-Shop         TeleShop       TeleShop      
## [37605] TeleShop       e-Shop         MBR            MBR           
## [37609] MBR            MBR            MBR            MBR           
## [37613] e-Shop         MBR            e-Shop         MBR           
## [37617] MBR            MBR            e-Shop         TeleShop      
## [37621] TeleShop       MBR            MBR            MBR           
## [37625] TeleShop       Flagship store Flagship store TeleShop      
## [37629] MBR            Flagship store TeleShop       Flagship store
## [37633] TeleShop       MBR            TeleShop       TeleShop      
## [37637] MBR            TeleShop       TeleShop       MBR           
## [37641] MBR            e-Shop         TeleShop       TeleShop      
## [37645] e-Shop         TeleShop       TeleShop       TeleShop      
## [37649] TeleShop       TeleShop       e-Shop         TeleShop      
## [37653] TeleShop       TeleShop       TeleShop       TeleShop      
## [37657] e-Shop         e-Shop         TeleShop       e-Shop        
## [37661] TeleShop       TeleShop       TeleShop       e-Shop        
## [37665] Flagship store Flagship store Flagship store MBR           
## [37669] MBR            e-Shop         MBR            MBR           
## [37673] TeleShop       MBR            MBR            MBR           
## [37677] e-Shop         e-Shop         MBR            e-Shop        
## [37681] e-Shop         TeleShop       e-Shop         e-Shop        
## [37685] TeleShop       TeleShop       MBR            e-Shop        
## [37689] TeleShop       TeleShop       MBR            e-Shop        
## [37693] e-Shop         TeleShop       e-Shop         e-Shop        
## [37697] e-Shop         e-Shop         TeleShop       e-Shop        
## [37701] e-Shop         TeleShop       MBR            TeleShop      
## [37705] MBR            MBR            TeleShop       TeleShop      
## [37709] Flagship store Flagship store Flagship store Flagship store
## [37713] Flagship store Flagship store Flagship store TeleShop      
## [37717] Flagship store Flagship store TeleShop       Flagship store
## [37721] TeleShop       Flagship store TeleShop       TeleShop      
## [37725] TeleShop       MBR            Flagship store e-Shop        
## [37729] e-Shop         e-Shop         MBR            Flagship store
## [37733] e-Shop         MBR            e-Shop         e-Shop        
## [37737] MBR            TeleShop       Flagship store TeleShop      
## [37741] MBR            e-Shop         TeleShop       MBR           
## [37745] e-Shop         MBR            e-Shop         e-Shop        
## [37749] e-Shop         MBR            e-Shop         MBR           
## [37753] MBR            MBR            MBR            MBR           
## [37757] MBR            MBR            e-Shop         e-Shop        
## [37761] e-Shop         e-Shop         TeleShop       TeleShop      
## [37765] TeleShop       e-Shop         Flagship store TeleShop      
## [37769] e-Shop         MBR            MBR            Flagship store
## [37773] Flagship store e-Shop         e-Shop         MBR           
## [37777] e-Shop         MBR            TeleShop       TeleShop      
## [37781] MBR            TeleShop       TeleShop       MBR           
## [37785] MBR            TeleShop       MBR            MBR           
## [37789] MBR            MBR            MBR            MBR           
## [37793] MBR            Flagship store MBR            e-Shop        
## [37797] Flagship store e-Shop         e-Shop         MBR           
## [37801] e-Shop         e-Shop         e-Shop         e-Shop        
## [37805] e-Shop         e-Shop         e-Shop         e-Shop        
## [37809] e-Shop         e-Shop         e-Shop         e-Shop        
## [37813] e-Shop         e-Shop         e-Shop         e-Shop        
## [37817] e-Shop         e-Shop         e-Shop         e-Shop        
## [37821] e-Shop         e-Shop         e-Shop         e-Shop        
## [37825] e-Shop         e-Shop         e-Shop         e-Shop        
## [37829] e-Shop         e-Shop         e-Shop         Flagship store
## [37833] e-Shop         Flagship store e-Shop         e-Shop        
## [37837] e-Shop         e-Shop         e-Shop         e-Shop        
## [37841] Flagship store e-Shop         Flagship store Flagship store
## [37845] e-Shop         Flagship store Flagship store MBR           
## [37849] MBR            MBR            e-Shop         TeleShop      
## [37853] e-Shop         e-Shop         MBR            e-Shop        
## [37857] e-Shop         TeleShop       e-Shop         MBR           
## [37861] e-Shop         TeleShop       MBR            e-Shop        
## [37865] TeleShop       MBR            e-Shop         e-Shop        
## [37869] TeleShop       e-Shop         e-Shop         e-Shop        
## [37873] TeleShop       e-Shop         Flagship store MBR           
## [37877] TeleShop       Flagship store Flagship store e-Shop        
## [37881] e-Shop         MBR            e-Shop         MBR           
## [37885] Flagship store MBR            Flagship store MBR           
## [37889] e-Shop         MBR            MBR            TeleShop      
## [37893] TeleShop       TeleShop       TeleShop       TeleShop      
## [37897] e-Shop         TeleShop       e-Shop         TeleShop      
## [37901] TeleShop       TeleShop       Flagship store TeleShop      
## [37905] e-Shop         e-Shop         Flagship store Flagship store
## [37909] Flagship store e-Shop         e-Shop         e-Shop        
## [37913] TeleShop       e-Shop         TeleShop       TeleShop      
## [37917] e-Shop         e-Shop         e-Shop         e-Shop        
## [37921] e-Shop         e-Shop         e-Shop         e-Shop        
## [37925] e-Shop         TeleShop       e-Shop         e-Shop        
## [37929] TeleShop       e-Shop         TeleShop       MBR           
## [37933] TeleShop       TeleShop       TeleShop       e-Shop        
## [37937] e-Shop         e-Shop         MBR            TeleShop      
## [37941] MBR            e-Shop         TeleShop       MBR           
## [37945] TeleShop       MBR            Flagship store e-Shop        
## [37949] Flagship store TeleShop       Flagship store Flagship store
## [37953] Flagship store e-Shop         TeleShop       TeleShop      
## [37957] e-Shop         e-Shop         e-Shop         e-Shop        
## [37961] e-Shop         e-Shop         e-Shop         TeleShop      
## [37965] e-Shop         TeleShop       TeleShop       TeleShop      
## [37969] e-Shop         TeleShop       TeleShop       TeleShop      
## [37973] e-Shop         e-Shop         TeleShop       TeleShop      
## [37977] e-Shop         TeleShop       e-Shop         MBR           
## [37981] MBR            MBR            MBR            MBR           
## [37985] MBR            MBR            MBR            MBR           
## [37989] Flagship store Flagship store Flagship store Flagship store
## [37993] Flagship store Flagship store Flagship store TeleShop      
## [37997] Flagship store TeleShop       Flagship store Flagship store
## [38001] Flagship store Flagship store TeleShop       Flagship store
## [38005] TeleShop       Flagship store Flagship store TeleShop      
## [38009] e-Shop         TeleShop       TeleShop       TeleShop      
## [38013] TeleShop       e-Shop         TeleShop       TeleShop      
## [38017] MBR            MBR            MBR            MBR           
## [38021] MBR            MBR            MBR            e-Shop        
## [38025] e-Shop         Flagship store Flagship store e-Shop        
## [38029] e-Shop         e-Shop         Flagship store e-Shop        
## [38033] e-Shop         e-Shop         Flagship store Flagship store
## [38037] Flagship store e-Shop         e-Shop         e-Shop        
## [38041] Flagship store Flagship store e-Shop         e-Shop        
## [38045] e-Shop         e-Shop         e-Shop         MBR           
## [38049] MBR            MBR            MBR            MBR           
## [38053] TeleShop       e-Shop         TeleShop       e-Shop        
## [38057] e-Shop         TeleShop       TeleShop       TeleShop      
## [38061] MBR            e-Shop         MBR            e-Shop        
## [38065] MBR            e-Shop         MBR            MBR           
## [38069] e-Shop         MBR            MBR            e-Shop        
## [38073] MBR            MBR            MBR            e-Shop        
## [38077] e-Shop         e-Shop         Flagship store e-Shop        
## [38081] e-Shop         e-Shop         Flagship store e-Shop        
## [38085] Flagship store e-Shop         TeleShop       Flagship store
## [38089] TeleShop       Flagship store TeleShop       TeleShop      
## [38093] TeleShop       TeleShop       Flagship store Flagship store
## [38097] e-Shop         e-Shop         Flagship store Flagship store
## [38101] Flagship store MBR            MBR            MBR           
## [38105] MBR            MBR            MBR            MBR           
## [38109] MBR            Flagship store MBR            Flagship store
## [38113] Flagship store TeleShop       TeleShop       MBR           
## [38117] Flagship store Flagship store Flagship store Flagship store
## [38121] Flagship store e-Shop         Flagship store e-Shop        
## [38125] Flagship store Flagship store e-Shop         Flagship store
## [38129] TeleShop       TeleShop       TeleShop       TeleShop      
## [38133] TeleShop       TeleShop       TeleShop       e-Shop        
## [38137] e-Shop         e-Shop         e-Shop         e-Shop        
## [38141] e-Shop         e-Shop         e-Shop         e-Shop        
## [38145] e-Shop         e-Shop         e-Shop         e-Shop        
## [38149] e-Shop         e-Shop         e-Shop         e-Shop        
## [38153] e-Shop         e-Shop         e-Shop         e-Shop        
## [38157] e-Shop         MBR            MBR            e-Shop        
## [38161] MBR            e-Shop         Flagship store Flagship store
## [38165] MBR            MBR            MBR            e-Shop        
## [38169] MBR            e-Shop         MBR            TeleShop      
## [38173] TeleShop       MBR            e-Shop         TeleShop      
## [38177] MBR            MBR            TeleShop       MBR           
## [38181] TeleShop       MBR            MBR            e-Shop        
## [38185] e-Shop         e-Shop         e-Shop         e-Shop        
## [38189] e-Shop         e-Shop         e-Shop         e-Shop        
## [38193] e-Shop         e-Shop         e-Shop         e-Shop        
## [38197] e-Shop         e-Shop         e-Shop         TeleShop      
## [38201] e-Shop         TeleShop       TeleShop       TeleShop      
## [38205] e-Shop         TeleShop       TeleShop       TeleShop      
## [38209] TeleShop       e-Shop         TeleShop       e-Shop        
## [38213] e-Shop         TeleShop       e-Shop         e-Shop        
## [38217] e-Shop         e-Shop         e-Shop         e-Shop        
## [38221] Flagship store MBR            Flagship store Flagship store
## [38225] Flagship store TeleShop       Flagship store TeleShop      
## [38229] TeleShop       MBR            e-Shop         e-Shop        
## [38233] e-Shop         Flagship store Flagship store Flagship store
## [38237] e-Shop         e-Shop         e-Shop         Flagship store
## [38241] Flagship store e-Shop         Flagship store e-Shop        
## [38245] e-Shop         MBR            e-Shop         MBR           
## [38249] MBR            MBR            e-Shop         e-Shop        
## [38253] MBR            e-Shop         e-Shop         e-Shop        
## [38257] e-Shop         e-Shop         e-Shop         e-Shop        
## [38261] e-Shop         e-Shop         MBR            e-Shop        
## [38265] e-Shop         MBR            TeleShop       TeleShop      
## [38269] TeleShop       TeleShop       e-Shop         e-Shop        
## [38273] MBR            MBR            e-Shop         e-Shop        
## [38277] MBR            MBR            e-Shop         e-Shop        
## [38281] e-Shop         TeleShop       MBR            TeleShop      
## [38285] MBR            TeleShop       TeleShop       TeleShop      
## [38289] TeleShop       MBR            TeleShop       TeleShop      
## [38293] TeleShop       TeleShop       TeleShop       e-Shop        
## [38297] TeleShop       MBR            TeleShop       MBR           
## [38301] TeleShop       TeleShop       e-Shop         e-Shop        
## [38305] Flagship store Flagship store Flagship store Flagship store
## [38309] Flagship store MBR            MBR            TeleShop      
## [38313] e-Shop         e-Shop         TeleShop       e-Shop        
## [38317] e-Shop         e-Shop         TeleShop       e-Shop        
## [38321] TeleShop       TeleShop       e-Shop         e-Shop        
## [38325] TeleShop       e-Shop         e-Shop         e-Shop        
## [38329] e-Shop         e-Shop         e-Shop         e-Shop        
## [38333] e-Shop         e-Shop         e-Shop         e-Shop        
## [38337] TeleShop       e-Shop         TeleShop       e-Shop        
## [38341] e-Shop         TeleShop       TeleShop       e-Shop        
## [38345] e-Shop         e-Shop         e-Shop         e-Shop        
## [38349] e-Shop         TeleShop       TeleShop       e-Shop        
## [38353] MBR            TeleShop       TeleShop       MBR           
## [38357] e-Shop         MBR            e-Shop         MBR           
## [38361] TeleShop       MBR            e-Shop         e-Shop        
## [38365] e-Shop         e-Shop         e-Shop         e-Shop        
## [38369] e-Shop         e-Shop         e-Shop         e-Shop        
## [38373] e-Shop         e-Shop         MBR            MBR           
## [38377] MBR            MBR            e-Shop         e-Shop        
## [38381] e-Shop         e-Shop         TeleShop       e-Shop        
## [38385] TeleShop       e-Shop         e-Shop         e-Shop        
## [38389] e-Shop         TeleShop       e-Shop         TeleShop      
## [38393] TeleShop       e-Shop         TeleShop       Flagship store
## [38397] MBR            TeleShop       Flagship store MBR           
## [38401] MBR            Flagship store MBR            TeleShop      
## [38405] Flagship store MBR            Flagship store Flagship store
## [38409] e-Shop         Flagship store e-Shop         e-Shop        
## [38413] Flagship store TeleShop       TeleShop       TeleShop      
## [38417] e-Shop         e-Shop         e-Shop         TeleShop      
## [38421] e-Shop         TeleShop       e-Shop         TeleShop      
## [38425] TeleShop       e-Shop         TeleShop       TeleShop      
## [38429] TeleShop       e-Shop         TeleShop       e-Shop        
## [38433] e-Shop         e-Shop         e-Shop         e-Shop        
## [38437] e-Shop         e-Shop         e-Shop         e-Shop        
## [38441] Flagship store Flagship store Flagship store Flagship store
## [38445] Flagship store Flagship store Flagship store MBR           
## [38449] MBR            TeleShop       Flagship store Flagship store
## [38453] Flagship store TeleShop       TeleShop       TeleShop      
## [38457] Flagship store TeleShop       Flagship store e-Shop        
## [38461] TeleShop       TeleShop       e-Shop         e-Shop        
## [38465] TeleShop       e-Shop         e-Shop         e-Shop        
## [38469] e-Shop         e-Shop         e-Shop         MBR           
## [38473] MBR            Flagship store Flagship store e-Shop        
## [38477] e-Shop         e-Shop         e-Shop         e-Shop        
## [38481] e-Shop         e-Shop         e-Shop         e-Shop        
## [38485] MBR            MBR            MBR            e-Shop        
## [38489] MBR            e-Shop         MBR            MBR           
## [38493] e-Shop         e-Shop         e-Shop         e-Shop        
## [38497] e-Shop         e-Shop         TeleShop       TeleShop      
## [38501] TeleShop       TeleShop       e-Shop         TeleShop      
## [38505] TeleShop       e-Shop         TeleShop       TeleShop      
## [38509] TeleShop       TeleShop       TeleShop       TeleShop      
## [38513] TeleShop       TeleShop       TeleShop       e-Shop        
## [38517] TeleShop       TeleShop       TeleShop       Flagship store
## [38521] e-Shop         Flagship store e-Shop         Flagship store
## [38525] TeleShop       Flagship store Flagship store MBR           
## [38529] e-Shop         MBR            MBR            e-Shop        
## [38533] MBR            Flagship store e-Shop         Flagship store
## [38537] Flagship store MBR            Flagship store e-Shop        
## [38541] TeleShop       TeleShop       e-Shop         e-Shop        
## [38545] e-Shop         e-Shop         TeleShop       e-Shop        
## [38549] e-Shop         TeleShop       TeleShop       TeleShop      
## [38553] TeleShop       TeleShop       TeleShop       e-Shop        
## [38557] Flagship store Flagship store Flagship store Flagship store
## [38561] TeleShop       Flagship store TeleShop       e-Shop        
## [38565] e-Shop         e-Shop         e-Shop         e-Shop        
## [38569] e-Shop         TeleShop       TeleShop       MBR           
## [38573] TeleShop       Flagship store e-Shop         Flagship store
## [38577] MBR            e-Shop         e-Shop         e-Shop        
## [38581] e-Shop         e-Shop         e-Shop         e-Shop        
## [38585] e-Shop         e-Shop         e-Shop         e-Shop        
## [38589] e-Shop         e-Shop         e-Shop         Flagship store
## [38593] Flagship store Flagship store Flagship store Flagship store
## [38597] Flagship store Flagship store Flagship store Flagship store
## [38601] Flagship store TeleShop       TeleShop       TeleShop      
## [38605] TeleShop       TeleShop       TeleShop       e-Shop        
## [38609] e-Shop         e-Shop         TeleShop       e-Shop        
## [38613] e-Shop         TeleShop       TeleShop       TeleShop      
## [38617] e-Shop         e-Shop         e-Shop         e-Shop        
## [38621] e-Shop         e-Shop         e-Shop         Flagship store
## [38625] MBR            Flagship store MBR            e-Shop        
## [38629] e-Shop         MBR            e-Shop         MBR           
## [38633] Flagship store MBR            MBR            MBR           
## [38637] Flagship store MBR            Flagship store MBR           
## [38641] Flagship store MBR            MBR            e-Shop        
## [38645] MBR            MBR            MBR            e-Shop        
## [38649] MBR            e-Shop         e-Shop         e-Shop        
## [38653] MBR            e-Shop         e-Shop         e-Shop        
## [38657] e-Shop         e-Shop         e-Shop         e-Shop        
## [38661] TeleShop       TeleShop       e-Shop         TeleShop      
## [38665] e-Shop         TeleShop       TeleShop       e-Shop        
## [38669] e-Shop         e-Shop         e-Shop         e-Shop        
## [38673] e-Shop         e-Shop         Flagship store Flagship store
## [38677] e-Shop         e-Shop         Flagship store MBR           
## [38681] MBR            e-Shop         e-Shop         e-Shop        
## [38685] e-Shop         e-Shop         e-Shop         e-Shop        
## [38689] e-Shop         TeleShop       Flagship store TeleShop      
## [38693] Flagship store Flagship store Flagship store Flagship store
## [38697] e-Shop         TeleShop       TeleShop       Flagship store
## [38701] MBR            e-Shop         MBR            Flagship store
## [38705] TeleShop       MBR            e-Shop         e-Shop        
## [38709] e-Shop         e-Shop         e-Shop         e-Shop        
## [38713] e-Shop         e-Shop         e-Shop         MBR           
## [38717] MBR            e-Shop         MBR            e-Shop        
## [38721] MBR            e-Shop         e-Shop         e-Shop        
## [38725] MBR            MBR            TeleShop       e-Shop        
## [38729] TeleShop       MBR            TeleShop       e-Shop        
## [38733] e-Shop         TeleShop       e-Shop         TeleShop      
## [38737] TeleShop       TeleShop       TeleShop       TeleShop      
## [38741] e-Shop         e-Shop         e-Shop         TeleShop      
## [38745] e-Shop         e-Shop         e-Shop         TeleShop      
## [38749] e-Shop         e-Shop         TeleShop       TeleShop      
## [38753] e-Shop         TeleShop       TeleShop       e-Shop        
## [38757] e-Shop         TeleShop       TeleShop       TeleShop      
## [38761] Flagship store TeleShop       Flagship store TeleShop      
## [38765] Flagship store TeleShop       Flagship store TeleShop      
## [38769] TeleShop       TeleShop       TeleShop       TeleShop      
## [38773] TeleShop       TeleShop       TeleShop       TeleShop      
## [38777] TeleShop       TeleShop       TeleShop       MBR           
## [38781] e-Shop         TeleShop       MBR            TeleShop      
## [38785] MBR            TeleShop       TeleShop       MBR           
## [38789] e-Shop         TeleShop       MBR            TeleShop      
## [38793] MBR            MBR            e-Shop         MBR           
## [38797] TeleShop       TeleShop       MBR            Flagship store
## [38801] MBR            MBR            Flagship store MBR           
## [38805] Flagship store MBR            e-Shop         Flagship store
## [38809] e-Shop         Flagship store e-Shop         e-Shop        
## [38813] MBR            Flagship store e-Shop         e-Shop        
## [38817] MBR            e-Shop         Flagship store e-Shop        
## [38821] e-Shop         MBR            Flagship store e-Shop        
## [38825] e-Shop         e-Shop         e-Shop         e-Shop        
## [38829] MBR            e-Shop         e-Shop         e-Shop        
## [38833] e-Shop         e-Shop         e-Shop         e-Shop        
## [38837] e-Shop         e-Shop         e-Shop         e-Shop        
## [38841] e-Shop         e-Shop         MBR            MBR           
## [38845] e-Shop         e-Shop         e-Shop         e-Shop        
## [38849] e-Shop         e-Shop         e-Shop         e-Shop        
## [38853] e-Shop         e-Shop         e-Shop         MBR           
## [38857] MBR            MBR            MBR            MBR           
## [38861] MBR            MBR            MBR            MBR           
## [38865] MBR            e-Shop         e-Shop         e-Shop        
## [38869] e-Shop         e-Shop         e-Shop         e-Shop        
## [38873] e-Shop         e-Shop         MBR            e-Shop        
## [38877] e-Shop         MBR            MBR            e-Shop        
## [38881] e-Shop         e-Shop         MBR            e-Shop        
## [38885] e-Shop         MBR            TeleShop       MBR           
## [38889] MBR            e-Shop         e-Shop         MBR           
## [38893] e-Shop         MBR            e-Shop         e-Shop        
## [38897] TeleShop       e-Shop         e-Shop         e-Shop        
## [38901] e-Shop         Flagship store TeleShop       TeleShop      
## [38905] TeleShop       Flagship store TeleShop       TeleShop      
## [38909] TeleShop       TeleShop       MBR            Flagship store
## [38913] MBR            Flagship store Flagship store Flagship store
## [38917] Flagship store Flagship store Flagship store Flagship store
## [38921] Flagship store Flagship store e-Shop         e-Shop        
## [38925] e-Shop         e-Shop         e-Shop         e-Shop        
## [38929] e-Shop         e-Shop         e-Shop         e-Shop        
## [38933] e-Shop         Flagship store MBR            Flagship store
## [38937] Flagship store Flagship store MBR            Flagship store
## [38941] e-Shop         Flagship store MBR            Flagship store
## [38945] MBR            TeleShop       Flagship store MBR           
## [38949] MBR            Flagship store Flagship store Flagship store
## [38953] TeleShop       Flagship store Flagship store Flagship store
## [38957] TeleShop       Flagship store e-Shop         Flagship store
## [38961] Flagship store Flagship store Flagship store Flagship store
## [38965] Flagship store Flagship store Flagship store Flagship store
## [38969] TeleShop       Flagship store e-Shop         e-Shop        
## [38973] Flagship store TeleShop       e-Shop         e-Shop        
## [38977] Flagship store TeleShop       TeleShop       Flagship store
## [38981] Flagship store TeleShop       TeleShop       TeleShop      
## [38985] TeleShop       Flagship store TeleShop       TeleShop      
## [38989] TeleShop       e-Shop         e-Shop         e-Shop        
## [38993] MBR            e-Shop         e-Shop         MBR           
## [38997] MBR            e-Shop         e-Shop         e-Shop        
## [39001] MBR            e-Shop         e-Shop         e-Shop        
## [39005] e-Shop         e-Shop         e-Shop         MBR           
## [39009] MBR            Flagship store Flagship store Flagship store
## [39013] MBR            Flagship store e-Shop         e-Shop        
## [39017] e-Shop         e-Shop         e-Shop         e-Shop        
## [39021] e-Shop         e-Shop         e-Shop         e-Shop        
## [39025] Flagship store Flagship store Flagship store Flagship store
## [39029] MBR            MBR            MBR            MBR           
## [39033] MBR            MBR            Flagship store MBR           
## [39037] e-Shop         Flagship store e-Shop         e-Shop        
## [39041] e-Shop         Flagship store e-Shop         e-Shop        
## [39045] e-Shop         e-Shop         e-Shop         e-Shop        
## [39049] e-Shop         e-Shop         e-Shop         e-Shop        
## [39053] TeleShop       e-Shop         TeleShop       Flagship store
## [39057] e-Shop         e-Shop         TeleShop       Flagship store
## [39061] TeleShop       e-Shop         TeleShop       TeleShop      
## [39065] TeleShop       e-Shop         MBR            MBR           
## [39069] MBR            e-Shop         MBR            MBR           
## [39073] MBR            e-Shop         MBR            MBR           
## [39077] e-Shop         e-Shop         e-Shop         e-Shop        
## [39081] MBR            e-Shop         e-Shop         MBR           
## [39085] MBR            Flagship store Flagship store Flagship store
## [39089] MBR            Flagship store Flagship store MBR           
## [39093] MBR            Flagship store Flagship store Flagship store
## [39097] Flagship store Flagship store Flagship store MBR           
## [39101] Flagship store Flagship store Flagship store e-Shop        
## [39105] e-Shop         e-Shop         e-Shop         e-Shop        
## [39109] MBR            e-Shop         Flagship store Flagship store
## [39113] Flagship store Flagship store Flagship store e-Shop        
## [39117] e-Shop         Flagship store Flagship store e-Shop        
## [39121] e-Shop         e-Shop         e-Shop         e-Shop        
## [39125] e-Shop         MBR            MBR            MBR           
## [39129] TeleShop       TeleShop       e-Shop         e-Shop        
## [39133] TeleShop       TeleShop       TeleShop       TeleShop      
## [39137] MBR            MBR            TeleShop       TeleShop      
## [39141] TeleShop       TeleShop       MBR            TeleShop      
## [39145] TeleShop       TeleShop       TeleShop       TeleShop      
## [39149] Flagship store TeleShop       Flagship store TeleShop      
## [39153] Flagship store TeleShop       Flagship store Flagship store
## [39157] TeleShop       TeleShop       Flagship store Flagship store
## [39161] Flagship store e-Shop         Flagship store e-Shop        
## [39165] Flagship store Flagship store e-Shop         Flagship store
## [39169] Flagship store Flagship store Flagship store Flagship store
## [39173] Flagship store Flagship store Flagship store TeleShop      
## [39177] TeleShop       TeleShop       TeleShop       TeleShop      
## [39181] TeleShop       TeleShop       TeleShop       TeleShop      
## [39185] TeleShop       e-Shop         e-Shop         e-Shop        
## [39189] Flagship store Flagship store Flagship store Flagship store
## [39193] TeleShop       TeleShop       TeleShop       e-Shop        
## [39197] TeleShop       TeleShop       TeleShop       e-Shop        
## [39201] TeleShop       TeleShop       TeleShop       e-Shop        
## [39205] Flagship store Flagship store Flagship store Flagship store
## [39209] Flagship store Flagship store Flagship store e-Shop        
## [39213] e-Shop         e-Shop         e-Shop         e-Shop        
## [39217] e-Shop         e-Shop         e-Shop         e-Shop        
## [39221] e-Shop         e-Shop         e-Shop         e-Shop        
## [39225] e-Shop         MBR            MBR            e-Shop        
## [39229] e-Shop         MBR            MBR            MBR           
## [39233] e-Shop         TeleShop       e-Shop         e-Shop        
## [39237] e-Shop         TeleShop       e-Shop         e-Shop        
## [39241] MBR            MBR            e-Shop         e-Shop        
## [39245] MBR            e-Shop         e-Shop         MBR           
## [39249] MBR            Flagship store Flagship store e-Shop        
## [39253] MBR            MBR            MBR            Flagship store
## [39257] e-Shop         MBR            e-Shop         e-Shop        
## [39261] e-Shop         e-Shop         e-Shop         e-Shop        
## [39265] MBR            e-Shop         e-Shop         MBR           
## [39269] MBR            MBR            e-Shop         Flagship store
## [39273] Flagship store Flagship store MBR            MBR           
## [39277] MBR            MBR            e-Shop         e-Shop        
## [39281] e-Shop         e-Shop         e-Shop         e-Shop        
## [39285] e-Shop         e-Shop         e-Shop         e-Shop        
## [39289] e-Shop         e-Shop         e-Shop         e-Shop        
## [39293] MBR            MBR            MBR            MBR           
## [39297] MBR            MBR            MBR            MBR           
## [39301] MBR            MBR            MBR            MBR           
## [39305] TeleShop       e-Shop         e-Shop         TeleShop      
## [39309] e-Shop         Flagship store e-Shop         Flagship store
## [39313] MBR            e-Shop         TeleShop       TeleShop      
## [39317] e-Shop         TeleShop       TeleShop       TeleShop      
## [39321] TeleShop       TeleShop       MBR            Flagship store
## [39325] TeleShop       Flagship store Flagship store TeleShop      
## [39329] Flagship store Flagship store TeleShop       TeleShop      
## [39333] TeleShop       TeleShop       TeleShop       TeleShop      
## [39337] Flagship store Flagship store TeleShop       TeleShop      
## [39341] Flagship store Flagship store TeleShop       Flagship store
## [39345] e-Shop         e-Shop         e-Shop         TeleShop      
## [39349] MBR            MBR            Flagship store Flagship store
## [39353] Flagship store TeleShop       MBR            Flagship store
## [39357] Flagship store Flagship store Flagship store Flagship store
## [39361] MBR            MBR            MBR            Flagship store
## [39365] TeleShop       TeleShop       MBR            e-Shop        
## [39369] MBR            e-Shop         Flagship store MBR           
## [39373] TeleShop       Flagship store TeleShop       MBR           
## [39377] MBR            Flagship store Flagship store TeleShop      
## [39381] Flagship store Flagship store Flagship store Flagship store
## [39385] Flagship store Flagship store e-Shop         e-Shop        
## [39389] e-Shop         e-Shop         MBR            MBR           
## [39393] MBR            TeleShop       MBR            MBR           
## [39397] MBR            MBR            e-Shop         MBR           
## [39401] e-Shop         MBR            TeleShop       TeleShop      
## [39405] TeleShop       e-Shop         TeleShop       TeleShop      
## [39409] e-Shop         TeleShop       TeleShop       e-Shop        
## [39413] e-Shop         e-Shop         TeleShop       e-Shop        
## [39417] e-Shop         e-Shop         TeleShop       e-Shop        
## [39421] e-Shop         e-Shop         e-Shop         e-Shop        
## [39425] e-Shop         e-Shop         e-Shop         TeleShop      
## [39429] TeleShop       e-Shop         TeleShop       e-Shop        
## [39433] e-Shop         e-Shop         TeleShop       e-Shop        
## [39437] e-Shop         MBR            MBR            MBR           
## [39441] MBR            MBR            MBR            TeleShop      
## [39445] TeleShop       TeleShop       TeleShop       TeleShop      
## [39449] Flagship store Flagship store MBR            Flagship store
## [39453] Flagship store MBR            Flagship store Flagship store
## [39457] TeleShop       TeleShop       e-Shop         e-Shop        
## [39461] TeleShop       Flagship store e-Shop         MBR           
## [39465] e-Shop         MBR            MBR            Flagship store
## [39469] MBR            MBR            e-Shop         Flagship store
## [39473] Flagship store e-Shop         e-Shop         e-Shop        
## [39477] e-Shop         e-Shop         e-Shop         e-Shop        
## [39481] TeleShop       e-Shop         e-Shop         Flagship store
## [39485] e-Shop         MBR            e-Shop         e-Shop        
## [39489] e-Shop         e-Shop         e-Shop         Flagship store
## [39493] Flagship store Flagship store Flagship store Flagship store
## [39497] Flagship store Flagship store Flagship store Flagship store
## [39501] Flagship store e-Shop         e-Shop         TeleShop      
## [39505] TeleShop       TeleShop       TeleShop       TeleShop      
## [39509] e-Shop         TeleShop       MBR            TeleShop      
## [39513] TeleShop       TeleShop       e-Shop         TeleShop      
## [39517] e-Shop         TeleShop       MBR            e-Shop        
## [39521] e-Shop         e-Shop         e-Shop         e-Shop        
## [39525] Flagship store e-Shop         e-Shop         e-Shop        
## [39529] MBR            Flagship store MBR            Flagship store
## [39533] e-Shop         e-Shop         e-Shop         e-Shop        
## [39537] e-Shop         e-Shop         e-Shop         Flagship store
## [39541] Flagship store Flagship store e-Shop         Flagship store
## [39545] e-Shop         e-Shop         e-Shop         e-Shop        
## [39549] e-Shop         e-Shop         e-Shop         e-Shop        
## [39553] e-Shop         e-Shop         MBR            TeleShop      
## [39557] TeleShop       TeleShop       MBR            MBR           
## [39561] TeleShop       TeleShop       Flagship store Flagship store
## [39565] Flagship store e-Shop         e-Shop         Flagship store
## [39569] e-Shop         MBR            Flagship store MBR           
## [39573] MBR            MBR            Flagship store e-Shop        
## [39577] MBR            e-Shop         MBR            TeleShop      
## [39581] TeleShop       TeleShop       MBR            e-Shop        
## [39585] e-Shop         e-Shop         MBR            MBR           
## [39589] e-Shop         e-Shop         e-Shop         e-Shop        
## [39593] MBR            MBR            e-Shop         e-Shop        
## [39597] TeleShop       e-Shop         TeleShop       TeleShop      
## [39601] TeleShop       e-Shop         e-Shop         e-Shop        
## [39605] e-Shop         e-Shop         e-Shop         TeleShop      
## [39609] e-Shop         TeleShop       e-Shop         Flagship store
## [39613] Flagship store Flagship store Flagship store Flagship store
## [39617] e-Shop         e-Shop         Flagship store Flagship store
## [39621] Flagship store MBR            Flagship store MBR           
## [39625] Flagship store MBR            Flagship store Flagship store
## [39629] Flagship store MBR            e-Shop         e-Shop        
## [39633] e-Shop         e-Shop         e-Shop         MBR           
## [39637] e-Shop         e-Shop         e-Shop         e-Shop        
## [39641] e-Shop         e-Shop         Flagship store e-Shop        
## [39645] Flagship store Flagship store Flagship store e-Shop        
## [39649] Flagship store e-Shop         Flagship store TeleShop      
## [39653] Flagship store Flagship store TeleShop       TeleShop      
## [39657] Flagship store e-Shop         Flagship store e-Shop        
## [39661] Flagship store e-Shop         Flagship store Flagship store
## [39665] Flagship store e-Shop         e-Shop         Flagship store
## [39669] e-Shop         e-Shop         e-Shop         e-Shop        
## [39673] e-Shop         MBR            MBR            MBR           
## [39677] TeleShop       TeleShop       TeleShop       TeleShop      
## [39681] e-Shop         e-Shop         e-Shop         e-Shop        
## [39685] e-Shop         e-Shop         e-Shop         TeleShop      
## [39689] e-Shop         TeleShop       e-Shop         e-Shop        
## [39693] e-Shop         e-Shop         e-Shop         e-Shop        
## [39697] e-Shop         e-Shop         e-Shop         e-Shop        
## [39701] Flagship store e-Shop         Flagship store Flagship store
## [39705] Flagship store e-Shop         Flagship store TeleShop      
## [39709] TeleShop       TeleShop       MBR            MBR           
## [39713] TeleShop       TeleShop       TeleShop       e-Shop        
## [39717] MBR            TeleShop       MBR            TeleShop      
## [39721] TeleShop       TeleShop       e-Shop         MBR           
## [39725] e-Shop         e-Shop         e-Shop         Flagship store
## [39729] e-Shop         e-Shop         Flagship store Flagship store
## [39733] e-Shop         TeleShop       e-Shop         TeleShop      
## [39737] TeleShop       e-Shop         e-Shop         TeleShop      
## [39741] e-Shop         TeleShop       MBR            MBR           
## [39745] MBR            MBR            MBR            MBR           
## [39749] MBR            TeleShop       TeleShop       e-Shop        
## [39753] e-Shop         e-Shop         TeleShop       TeleShop      
## [39757] e-Shop         e-Shop         TeleShop       e-Shop        
## [39761] e-Shop         MBR            e-Shop         MBR           
## [39765] e-Shop         e-Shop         MBR            e-Shop        
## [39769] MBR            MBR            e-Shop         MBR           
## [39773] TeleShop       MBR            MBR            TeleShop      
## [39777] TeleShop       TeleShop       Flagship store Flagship store
## [39781] e-Shop         TeleShop       MBR            e-Shop        
## [39785] MBR            TeleShop       TeleShop       MBR           
## [39789] MBR            e-Shop         e-Shop         MBR           
## [39793] e-Shop         Flagship store Flagship store e-Shop        
## [39797] e-Shop         e-Shop         e-Shop         e-Shop        
## [39801] e-Shop         Flagship store Flagship store Flagship store
## [39805] e-Shop         Flagship store e-Shop         Flagship store
## [39809] Flagship store Flagship store e-Shop         e-Shop        
## [39813] e-Shop         e-Shop         Flagship store e-Shop        
## [39817] MBR            MBR            e-Shop         MBR           
## [39821] e-Shop         e-Shop         TeleShop       TeleShop      
## [39825] e-Shop         TeleShop       TeleShop       e-Shop        
## [39829] e-Shop         TeleShop       e-Shop         e-Shop        
## [39833] e-Shop         e-Shop         MBR            MBR           
## [39837] MBR            MBR            MBR            MBR           
## [39841] MBR            MBR            e-Shop         e-Shop        
## [39845] TeleShop       e-Shop         e-Shop         e-Shop        
## [39849] TeleShop       e-Shop         e-Shop         e-Shop        
## [39853] e-Shop         e-Shop         TeleShop       e-Shop        
## [39857] e-Shop         e-Shop         e-Shop         TeleShop      
## [39861] e-Shop         TeleShop       e-Shop         e-Shop        
## [39865] TeleShop       e-Shop         e-Shop         e-Shop        
## [39869] e-Shop         TeleShop       TeleShop       TeleShop      
## [39873] e-Shop         e-Shop         e-Shop         e-Shop        
## [39877] e-Shop         MBR            MBR            MBR           
## [39881] MBR            Flagship store Flagship store MBR           
## [39885] MBR            MBR            e-Shop         e-Shop        
## [39889] Flagship store MBR            e-Shop         Flagship store
## [39893] Flagship store Flagship store Flagship store e-Shop        
## [39897] Flagship store Flagship store Flagship store Flagship store
## [39901] Flagship store Flagship store MBR            MBR           
## [39905] e-Shop         e-Shop         e-Shop         e-Shop        
## [39909] e-Shop         e-Shop         e-Shop         TeleShop      
## [39913] TeleShop       TeleShop       TeleShop       e-Shop        
## [39917] e-Shop         e-Shop         TeleShop       e-Shop        
## [39921] e-Shop         e-Shop         e-Shop         e-Shop        
## [39925] e-Shop         MBR            MBR            e-Shop        
## [39929] Flagship store e-Shop         MBR            MBR           
## [39933] Flagship store Flagship store Flagship store MBR           
## [39937] Flagship store MBR            Flagship store e-Shop        
## [39941] e-Shop         Flagship store Flagship store MBR           
## [39945] MBR            MBR            MBR            Flagship store
## [39949] MBR            MBR            MBR            MBR           
## [39953] MBR            e-Shop         MBR            e-Shop        
## [39957] MBR            MBR            MBR            MBR           
## [39961] MBR            MBR            MBR            e-Shop        
## [39965] e-Shop         e-Shop         TeleShop       e-Shop        
## [39969] e-Shop         TeleShop       e-Shop         e-Shop        
## [39973] e-Shop         e-Shop         e-Shop         TeleShop      
## [39977] e-Shop         e-Shop         TeleShop       e-Shop        
## [39981] Flagship store MBR            Flagship store Flagship store
## [39985] TeleShop       TeleShop       Flagship store Flagship store
## [39989] MBR            MBR            e-Shop         e-Shop        
## [39993] e-Shop         e-Shop         e-Shop         MBR           
## [39997] MBR            MBR            MBR            MBR           
## [40001] MBR            MBR            TeleShop       MBR           
## [40005] TeleShop       Flagship store Flagship store Flagship store
## [40009] e-Shop         e-Shop         MBR            e-Shop        
## [40013] e-Shop         e-Shop         e-Shop         e-Shop        
## [40017] e-Shop         e-Shop         e-Shop         e-Shop        
## [40021] MBR            MBR            MBR            e-Shop        
## [40025] e-Shop         e-Shop         TeleShop       MBR           
## [40029] TeleShop       MBR            TeleShop       MBR           
## [40033] TeleShop       MBR            TeleShop       MBR           
## [40037] MBR            e-Shop         e-Shop         TeleShop      
## [40041] e-Shop         TeleShop       TeleShop       e-Shop        
## [40045] Flagship store Flagship store Flagship store Flagship store
## [40049] e-Shop         TeleShop       e-Shop         e-Shop        
## [40053] Flagship store e-Shop         e-Shop         TeleShop      
## [40057] Flagship store e-Shop         e-Shop         e-Shop        
## [40061] e-Shop         e-Shop         e-Shop         e-Shop        
## [40065] Flagship store e-Shop         Flagship store e-Shop        
## [40069] e-Shop         e-Shop         e-Shop         e-Shop        
## [40073] e-Shop         e-Shop         e-Shop         e-Shop        
## [40077] e-Shop         e-Shop         e-Shop         e-Shop        
## [40081] e-Shop         e-Shop         Flagship store e-Shop        
## [40085] e-Shop         Flagship store e-Shop         e-Shop        
## [40089] e-Shop         e-Shop         Flagship store e-Shop        
## [40093] e-Shop         MBR            MBR            e-Shop        
## [40097] e-Shop         MBR            e-Shop         MBR           
## [40101] e-Shop         MBR            MBR            TeleShop      
## [40105] TeleShop       TeleShop       TeleShop       TeleShop      
## [40109] TeleShop       TeleShop       Flagship store Flagship store
## [40113] Flagship store MBR            MBR            MBR           
## [40117] MBR            Flagship store MBR            MBR           
## [40121] TeleShop       Flagship store MBR            MBR           
## [40125] TeleShop       MBR            MBR            TeleShop      
## [40129] TeleShop       TeleShop       Flagship store Flagship store
## [40133] MBR            e-Shop         e-Shop         e-Shop        
## [40137] e-Shop         Flagship store Flagship store e-Shop        
## [40141] e-Shop         e-Shop         e-Shop         MBR           
## [40145] MBR            MBR            MBR            MBR           
## [40149] Flagship store Flagship store MBR            MBR           
## [40153] MBR            e-Shop         e-Shop         MBR           
## [40157] MBR            MBR            e-Shop         e-Shop        
## [40161] e-Shop         MBR            MBR            e-Shop        
## [40165] MBR            e-Shop         e-Shop         e-Shop        
## [40169] TeleShop       e-Shop         TeleShop       TeleShop      
## [40173] e-Shop         e-Shop         e-Shop         e-Shop        
## [40177] e-Shop         e-Shop         TeleShop       e-Shop        
## [40181] TeleShop       TeleShop       e-Shop         e-Shop        
## [40185] e-Shop         MBR            e-Shop         e-Shop        
## [40189] MBR            e-Shop         e-Shop         e-Shop        
## [40193] e-Shop         e-Shop         TeleShop       TeleShop      
## [40197] Flagship store TeleShop       TeleShop       e-Shop        
## [40201] e-Shop         e-Shop         TeleShop       TeleShop      
## [40205] Flagship store e-Shop         e-Shop         Flagship store
## [40209] Flagship store TeleShop       TeleShop       Flagship store
## [40213] TeleShop       Flagship store TeleShop       TeleShop      
## [40217] TeleShop       TeleShop       TeleShop       Flagship store
## [40221] MBR            MBR            Flagship store Flagship store
## [40225] Flagship store Flagship store MBR            Flagship store
## [40229] Flagship store Flagship store TeleShop       Flagship store
## [40233] Flagship store Flagship store Flagship store Flagship store
## [40237] Flagship store Flagship store Flagship store Flagship store
## [40241] Flagship store Flagship store Flagship store Flagship store
## [40245] Flagship store TeleShop       Flagship store Flagship store
## [40249] TeleShop       TeleShop       TeleShop       Flagship store
## [40253] Flagship store Flagship store e-Shop         e-Shop        
## [40257] e-Shop         e-Shop         e-Shop         e-Shop        
## [40261] MBR            TeleShop       MBR            MBR           
## [40265] TeleShop       MBR            MBR            TeleShop      
## [40269] MBR            TeleShop       TeleShop       e-Shop        
## [40273] TeleShop       TeleShop       TeleShop       TeleShop      
## [40277] e-Shop         e-Shop         TeleShop       e-Shop        
## [40281] e-Shop         e-Shop         TeleShop       TeleShop      
## [40285] TeleShop       TeleShop       TeleShop       TeleShop      
## [40289] MBR            e-Shop         MBR            MBR           
## [40293] e-Shop         e-Shop         e-Shop         MBR           
## [40297] MBR            e-Shop         e-Shop         e-Shop        
## [40301] Flagship store MBR            MBR            MBR           
## [40305] MBR            Flagship store Flagship store MBR           
## [40309] Flagship store MBR            Flagship store Flagship store
## [40313] Flagship store Flagship store TeleShop       TeleShop      
## [40317] TeleShop       e-Shop         e-Shop         e-Shop        
## [40321] TeleShop       MBR            e-Shop         TeleShop      
## [40325] e-Shop         TeleShop       e-Shop         e-Shop        
## [40329] TeleShop       e-Shop         e-Shop         MBR           
## [40333] TeleShop       e-Shop         e-Shop         e-Shop        
## [40337] e-Shop         Flagship store Flagship store Flagship store
## [40341] Flagship store MBR            Flagship store MBR           
## [40345] Flagship store e-Shop         e-Shop         e-Shop        
## [40349] e-Shop         e-Shop         e-Shop         e-Shop        
## [40353] MBR            MBR            MBR            MBR           
## [40357] MBR            e-Shop         MBR            MBR           
## [40361] e-Shop         e-Shop         e-Shop         MBR           
## [40365] MBR            MBR            MBR            MBR           
## [40369] MBR            e-Shop         MBR            e-Shop        
## [40373] MBR            MBR            MBR            MBR           
## [40377] MBR            MBR            MBR            MBR           
## [40381] MBR            MBR            MBR            MBR           
## [40385] MBR            MBR            TeleShop       e-Shop        
## [40389] e-Shop         Flagship store e-Shop         TeleShop      
## [40393] e-Shop         TeleShop       TeleShop       TeleShop      
## [40397] Flagship store e-Shop         Flagship store Flagship store
## [40401] Flagship store Flagship store TeleShop       Flagship store
## [40405] TeleShop       TeleShop       Flagship store TeleShop      
## [40409] Flagship store TeleShop       TeleShop       e-Shop        
## [40413] e-Shop         e-Shop         MBR            Flagship store
## [40417] Flagship store MBR            MBR            MBR           
## [40421] Flagship store MBR            Flagship store Flagship store
## [40425] e-Shop         e-Shop         e-Shop         e-Shop        
## [40429] e-Shop         e-Shop         e-Shop         e-Shop        
## [40433] Flagship store e-Shop         e-Shop         e-Shop        
## [40437] e-Shop         e-Shop         Flagship store e-Shop        
## [40441] e-Shop         Flagship store e-Shop         Flagship store
## [40445] Flagship store Flagship store e-Shop         e-Shop        
## [40449] e-Shop         e-Shop         e-Shop         Flagship store
## [40453] Flagship store MBR            MBR            Flagship store
## [40457] Flagship store MBR            e-Shop         MBR           
## [40461] MBR            MBR            e-Shop         e-Shop        
## [40465] MBR            e-Shop         e-Shop         Flagship store
## [40469] Flagship store Flagship store Flagship store MBR           
## [40473] MBR            Flagship store MBR            MBR           
## [40477] MBR            MBR            MBR            MBR           
## [40481] Flagship store Flagship store Flagship store Flagship store
## [40485] Flagship store TeleShop       Flagship store Flagship store
## [40489] TeleShop       TeleShop       Flagship store TeleShop      
## [40493] MBR            e-Shop         MBR            e-Shop        
## [40497] MBR            e-Shop         e-Shop         MBR           
## [40501] e-Shop         e-Shop         e-Shop         e-Shop        
## [40505] MBR            MBR            MBR            MBR           
## [40509] MBR            MBR            e-Shop         e-Shop        
## [40513] e-Shop         e-Shop         e-Shop         MBR           
## [40517] MBR            e-Shop         TeleShop       TeleShop      
## [40521] e-Shop         TeleShop       Flagship store MBR           
## [40525] Flagship store Flagship store MBR            Flagship store
## [40529] MBR            Flagship store e-Shop         e-Shop        
## [40533] e-Shop         e-Shop         e-Shop         Flagship store
## [40537] Flagship store Flagship store Flagship store e-Shop        
## [40541] Flagship store Flagship store e-Shop         e-Shop        
## [40545] e-Shop         MBR            MBR            MBR           
## [40549] e-Shop         MBR            Flagship store e-Shop        
## [40553] e-Shop         e-Shop         e-Shop         e-Shop        
## [40557] e-Shop         e-Shop         e-Shop         e-Shop        
## [40561] e-Shop         e-Shop         e-Shop         e-Shop        
## [40565] e-Shop         e-Shop         MBR            MBR           
## [40569] MBR            MBR            MBR            MBR           
## [40573] MBR            MBR            MBR            MBR           
## [40577] MBR            Flagship store MBR            TeleShop      
## [40581] TeleShop       TeleShop       Flagship store MBR           
## [40585] e-Shop         e-Shop         e-Shop         TeleShop      
## [40589] MBR            e-Shop         e-Shop         TeleShop      
## [40593] MBR            e-Shop         TeleShop       MBR           
## [40597] TeleShop       TeleShop       TeleShop       TeleShop      
## [40601] e-Shop         Flagship store TeleShop       TeleShop      
## [40605] TeleShop       TeleShop       TeleShop       Flagship store
## [40609] TeleShop       TeleShop       e-Shop         TeleShop      
## [40613] TeleShop       TeleShop       MBR            MBR           
## [40617] e-Shop         TeleShop       MBR            e-Shop        
## [40621] MBR            TeleShop       MBR            MBR           
## [40625] MBR            MBR            MBR            e-Shop        
## [40629] MBR            MBR            e-Shop         MBR           
## [40633] e-Shop         MBR            Flagship store MBR           
## [40637] MBR            MBR            Flagship store MBR           
## [40641] MBR            e-Shop         MBR            Flagship store
## [40645] Flagship store Flagship store TeleShop       TeleShop      
## [40649] TeleShop       TeleShop       e-Shop         Flagship store
## [40653] e-Shop         TeleShop       TeleShop       Flagship store
## [40657] e-Shop         e-Shop         Flagship store e-Shop        
## [40661] MBR            e-Shop         Flagship store e-Shop        
## [40665] Flagship store Flagship store Flagship store e-Shop        
## [40669] Flagship store MBR            Flagship store MBR           
## [40673] MBR            MBR            MBR            MBR           
## [40677] MBR            MBR            MBR            MBR           
## [40681] MBR            MBR            MBR            MBR           
## [40685] MBR            MBR            MBR            MBR           
## [40689] MBR            MBR            MBR            e-Shop        
## [40693] e-Shop         e-Shop         e-Shop         e-Shop        
## [40697] e-Shop         e-Shop         e-Shop         e-Shop        
## [40701] e-Shop         e-Shop         TeleShop       e-Shop        
## [40705] TeleShop       TeleShop       TeleShop       Flagship store
## [40709] Flagship store Flagship store Flagship store Flagship store
## [40713] Flagship store Flagship store Flagship store Flagship store
## [40717] Flagship store e-Shop         e-Shop         e-Shop        
## [40721] e-Shop         e-Shop         e-Shop         Flagship store
## [40725] e-Shop         e-Shop         e-Shop         e-Shop        
## [40729] e-Shop         TeleShop       e-Shop         Flagship store
## [40733] TeleShop       TeleShop       e-Shop         e-Shop        
## [40737] e-Shop         TeleShop       TeleShop       TeleShop      
## [40741] Flagship store TeleShop       e-Shop         TeleShop      
## [40745] TeleShop       TeleShop       TeleShop       Flagship store
## [40749] TeleShop       Flagship store Flagship store TeleShop      
## [40753] Flagship store Flagship store Flagship store TeleShop      
## [40757] TeleShop       TeleShop       e-Shop         TeleShop      
## [40761] MBR            MBR            TeleShop       e-Shop        
## [40765] MBR            TeleShop       e-Shop         e-Shop        
## [40769] e-Shop         TeleShop       e-Shop         e-Shop        
## [40773] e-Shop         e-Shop         e-Shop         e-Shop        
## [40777] e-Shop         Flagship store TeleShop       e-Shop        
## [40781] e-Shop         Flagship store MBR            e-Shop        
## [40785] e-Shop         TeleShop       e-Shop         e-Shop        
## [40789] TeleShop       Flagship store e-Shop         e-Shop        
## [40793] e-Shop         e-Shop         e-Shop         TeleShop      
## [40797] MBR            e-Shop         MBR            TeleShop      
## [40801] MBR            TeleShop       e-Shop         TeleShop      
## [40805] TeleShop       e-Shop         MBR            TeleShop      
## [40809] e-Shop         Flagship store Flagship store Flagship store
## [40813] Flagship store Flagship store Flagship store Flagship store
## [40817] Flagship store Flagship store TeleShop       MBR           
## [40821] MBR            TeleShop       MBR            MBR           
## [40825] TeleShop       Flagship store Flagship store Flagship store
## [40829] Flagship store MBR            Flagship store e-Shop        
## [40833] e-Shop         e-Shop         TeleShop       TeleShop      
## [40837] TeleShop       TeleShop       TeleShop       TeleShop      
## [40841] e-Shop         TeleShop       e-Shop         e-Shop        
## [40845] e-Shop         e-Shop         e-Shop         TeleShop      
## [40849] TeleShop       TeleShop       TeleShop       TeleShop      
## [40853] MBR            MBR            TeleShop       TeleShop      
## [40857] TeleShop       TeleShop       TeleShop       TeleShop      
## [40861] TeleShop       e-Shop         e-Shop         e-Shop        
## [40865] e-Shop         e-Shop         e-Shop         TeleShop      
## [40869] e-Shop         e-Shop         TeleShop       TeleShop      
## [40873] e-Shop         e-Shop         TeleShop       e-Shop        
## [40877] e-Shop         MBR            MBR            e-Shop        
## [40881] MBR            MBR            e-Shop         e-Shop        
## [40885] e-Shop         TeleShop       TeleShop       e-Shop        
## [40889] MBR            Flagship store MBR            MBR           
## [40893] Flagship store MBR            Flagship store Flagship store
## [40897] Flagship store MBR            e-Shop         e-Shop        
## [40901] TeleShop       e-Shop         TeleShop       e-Shop        
## [40905] e-Shop         TeleShop       TeleShop       e-Shop        
## [40909] e-Shop         MBR            MBR            MBR           
## [40913] MBR            e-Shop         e-Shop         MBR           
## [40917] e-Shop         MBR            e-Shop         e-Shop        
## [40921] e-Shop         e-Shop         e-Shop         MBR           
## [40925] e-Shop         MBR            e-Shop         MBR           
## [40929] MBR            MBR            MBR            e-Shop        
## [40933] MBR            e-Shop         MBR            MBR           
## [40937] MBR            MBR            MBR            e-Shop        
## [40941] MBR            MBR            MBR            MBR           
## [40945] e-Shop         TeleShop       Flagship store Flagship store
## [40949] Flagship store Flagship store TeleShop       TeleShop      
## [40953] Flagship store TeleShop       TeleShop       e-Shop        
## [40957] Flagship store TeleShop       e-Shop         e-Shop        
## [40961] e-Shop         e-Shop         TeleShop       e-Shop        
## [40965] e-Shop         e-Shop         TeleShop       TeleShop      
## [40969] TeleShop       e-Shop         e-Shop         e-Shop        
## [40973] MBR            e-Shop         MBR            MBR           
## [40977] MBR            MBR            Flagship store e-Shop        
## [40981] e-Shop         Flagship store Flagship store Flagship store
## [40985] Flagship store Flagship store e-Shop         Flagship store
## [40989] Flagship store Flagship store e-Shop         e-Shop        
## [40993] e-Shop         Flagship store Flagship store e-Shop        
## [40997] e-Shop         MBR            e-Shop         MBR           
## [41001] MBR            MBR            e-Shop         MBR           
## [41005] e-Shop         e-Shop         e-Shop         MBR           
## [41009] e-Shop         Flagship store Flagship store Flagship store
## [41013] Flagship store Flagship store Flagship store Flagship store
## [41017] Flagship store Flagship store Flagship store Flagship store
## [41021] TeleShop       TeleShop       e-Shop         TeleShop      
## [41025] TeleShop       TeleShop       TeleShop       e-Shop        
## [41029] TeleShop       TeleShop       e-Shop         TeleShop      
## [41033] e-Shop         MBR            e-Shop         TeleShop      
## [41037] e-Shop         e-Shop         TeleShop       MBR           
## [41041] MBR            MBR            MBR            TeleShop      
## [41045] Flagship store e-Shop         MBR            Flagship store
## [41049] e-Shop         e-Shop         MBR            e-Shop        
## [41053] Flagship store MBR            TeleShop       TeleShop      
## [41057] e-Shop         e-Shop         e-Shop         e-Shop        
## [41061] e-Shop         Flagship store MBR            Flagship store
## [41065] e-Shop         MBR            Flagship store MBR           
## [41069] e-Shop         MBR            e-Shop         e-Shop        
## [41073] e-Shop         MBR            e-Shop         MBR           
## [41077] MBR            MBR            MBR            MBR           
## [41081] MBR            MBR            MBR            MBR           
## [41085] Flagship store e-Shop         e-Shop         e-Shop        
## [41089] e-Shop         e-Shop         e-Shop         Flagship store
## [41093] e-Shop         e-Shop         e-Shop         e-Shop        
## [41097] e-Shop         Flagship store Flagship store e-Shop        
## [41101] e-Shop         Flagship store e-Shop         TeleShop      
## [41105] MBR            TeleShop       MBR            TeleShop      
## [41109] MBR            MBR            TeleShop       MBR           
## [41113] TeleShop       TeleShop       Flagship store MBR           
## [41117] TeleShop       TeleShop       TeleShop       Flagship store
## [41121] TeleShop       TeleShop       e-Shop         MBR           
## [41125] MBR            MBR            MBR            MBR           
## [41129] TeleShop       e-Shop         TeleShop       TeleShop      
## [41133] Flagship store Flagship store Flagship store Flagship store
## [41137] e-Shop         e-Shop         e-Shop         e-Shop        
## [41141] e-Shop         e-Shop         Flagship store e-Shop        
## [41145] e-Shop         Flagship store e-Shop         e-Shop        
## [41149] e-Shop         e-Shop         e-Shop         e-Shop        
## [41153] e-Shop         e-Shop         e-Shop         e-Shop        
## [41157] TeleShop       MBR            e-Shop         e-Shop        
## [41161] TeleShop       MBR            TeleShop       TeleShop      
## [41165] MBR            e-Shop         TeleShop       TeleShop      
## [41169] TeleShop       MBR            MBR            TeleShop      
## [41173] TeleShop       TeleShop       TeleShop       TeleShop      
## [41177] TeleShop       e-Shop         e-Shop         e-Shop        
## [41181] e-Shop         e-Shop         e-Shop         e-Shop        
## [41185] e-Shop         e-Shop         e-Shop         e-Shop        
## [41189] TeleShop       e-Shop         e-Shop         e-Shop        
## [41193] e-Shop         e-Shop         e-Shop         e-Shop        
## [41197] TeleShop       e-Shop         TeleShop       e-Shop        
## [41201] TeleShop       TeleShop       TeleShop       TeleShop      
## [41205] e-Shop         e-Shop         e-Shop         e-Shop        
## [41209] TeleShop       TeleShop       TeleShop       TeleShop      
## [41213] MBR            MBR            MBR            MBR           
## [41217] TeleShop       TeleShop       TeleShop       TeleShop      
## [41221] TeleShop       TeleShop       MBR            MBR           
## [41225] TeleShop       TeleShop       TeleShop       TeleShop      
## [41229] MBR            e-Shop         e-Shop         e-Shop        
## [41233] e-Shop         Flagship store e-Shop         e-Shop        
## [41237] e-Shop         Flagship store e-Shop         e-Shop        
## [41241] e-Shop         e-Shop         e-Shop         Flagship store
## [41245] Flagship store Flagship store e-Shop         Flagship store
## [41249] Flagship store e-Shop         e-Shop         Flagship store
## [41253] e-Shop         Flagship store Flagship store e-Shop        
## [41257] e-Shop         Flagship store e-Shop         e-Shop        
## [41261] Flagship store e-Shop         e-Shop         Flagship store
## [41265] Flagship store MBR            MBR            MBR           
## [41269] MBR            MBR            MBR            MBR           
## [41273] e-Shop         e-Shop         MBR            MBR           
## [41277] MBR            e-Shop         TeleShop       TeleShop      
## [41281] e-Shop         TeleShop       e-Shop         e-Shop        
## [41285] e-Shop         TeleShop       Flagship store e-Shop        
## [41289] Flagship store e-Shop         Flagship store e-Shop        
## [41293] TeleShop       Flagship store Flagship store Flagship store
## [41297] Flagship store Flagship store Flagship store Flagship store
## [41301] Flagship store e-Shop         Flagship store e-Shop        
## [41305] e-Shop         Flagship store Flagship store e-Shop        
## [41309] e-Shop         Flagship store Flagship store e-Shop        
## [41313] Flagship store e-Shop         Flagship store Flagship store
## [41317] Flagship store e-Shop         e-Shop         e-Shop        
## [41321] e-Shop         e-Shop         e-Shop         e-Shop        
## [41325] e-Shop         e-Shop         e-Shop         e-Shop        
## [41329] MBR            e-Shop         e-Shop         MBR           
## [41333] e-Shop         e-Shop         e-Shop         e-Shop        
## [41337] e-Shop         e-Shop         e-Shop         e-Shop        
## [41341] e-Shop         MBR            Flagship store Flagship store
## [41345] MBR            Flagship store TeleShop       MBR           
## [41349] MBR            MBR            Flagship store MBR           
## [41353] Flagship store TeleShop       MBR            Flagship store
## [41357] MBR            MBR            Flagship store e-Shop        
## [41361] MBR            e-Shop         e-Shop         MBR           
## [41365] MBR            MBR            MBR            e-Shop        
## [41369] e-Shop         e-Shop         e-Shop         e-Shop        
## [41373] e-Shop         e-Shop         e-Shop         MBR           
## [41377] MBR            e-Shop         e-Shop         e-Shop        
## [41381] MBR            e-Shop         MBR            e-Shop        
## [41385] MBR            e-Shop         TeleShop       e-Shop        
## [41389] TeleShop       TeleShop       TeleShop       TeleShop      
## [41393] TeleShop       TeleShop       TeleShop       TeleShop      
## [41397] TeleShop       e-Shop         e-Shop         e-Shop        
## [41401] MBR            Flagship store MBR            Flagship store
## [41405] Flagship store Flagship store MBR            MBR           
## [41409] Flagship store Flagship store TeleShop       TeleShop      
## [41413] TeleShop       TeleShop       e-Shop         Flagship store
## [41417] TeleShop       Flagship store e-Shop         e-Shop        
## [41421] e-Shop         TeleShop       Flagship store e-Shop        
## [41425] Flagship store MBR            Flagship store e-Shop        
## [41429] e-Shop         e-Shop         MBR            e-Shop        
## [41433] Flagship store MBR            MBR            MBR           
## [41437] MBR            Flagship store e-Shop         Flagship store
## [41441] Flagship store e-Shop         TeleShop       TeleShop      
## [41445] e-Shop         e-Shop         TeleShop       TeleShop      
## [41449] e-Shop         TeleShop       e-Shop         e-Shop        
## [41453] MBR            e-Shop         TeleShop       MBR           
## [41457] e-Shop         e-Shop         TeleShop       e-Shop        
## [41461] e-Shop         TeleShop       e-Shop         MBR           
## [41465] MBR            Flagship store Flagship store e-Shop        
## [41469] e-Shop         e-Shop         Flagship store Flagship store
## [41473] Flagship store Flagship store Flagship store e-Shop        
## [41477] e-Shop         e-Shop         e-Shop         e-Shop        
## [41481] e-Shop         MBR            MBR            e-Shop        
## [41485] e-Shop         MBR            e-Shop         e-Shop        
## [41489] e-Shop         e-Shop         e-Shop         e-Shop        
## [41493] e-Shop         e-Shop         e-Shop         e-Shop        
## [41497] e-Shop         MBR            MBR            MBR           
## [41501] MBR            MBR            MBR            MBR           
## [41505] MBR            MBR            MBR            TeleShop      
## [41509] TeleShop       MBR            TeleShop       e-Shop        
## [41513] e-Shop         e-Shop         e-Shop         e-Shop        
## [41517] e-Shop         e-Shop         e-Shop         e-Shop        
## [41521] Flagship store MBR            MBR            MBR           
## [41525] MBR            MBR            Flagship store e-Shop        
## [41529] e-Shop         e-Shop         e-Shop         e-Shop        
## [41533] e-Shop         e-Shop         e-Shop         e-Shop        
## [41537] e-Shop         e-Shop         e-Shop         e-Shop        
## [41541] e-Shop         e-Shop         MBR            e-Shop        
## [41545] MBR            e-Shop         MBR            e-Shop        
## [41549] e-Shop         e-Shop         MBR            e-Shop        
## [41553] MBR            e-Shop         TeleShop       MBR           
## [41557] MBR            e-Shop         MBR            e-Shop        
## [41561] TeleShop       e-Shop         e-Shop         e-Shop        
## [41565] e-Shop         e-Shop         TeleShop       MBR           
## [41569] MBR            MBR            MBR            MBR           
## [41573] TeleShop       MBR            TeleShop       TeleShop      
## [41577] MBR            e-Shop         MBR            e-Shop        
## [41581] e-Shop         e-Shop         e-Shop         e-Shop        
## [41585] e-Shop         e-Shop         e-Shop         e-Shop        
## [41589] e-Shop         Flagship store e-Shop         e-Shop        
## [41593] e-Shop         Flagship store e-Shop         Flagship store
## [41597] e-Shop         e-Shop         e-Shop         Flagship store
## [41601] e-Shop         Flagship store Flagship store e-Shop        
## [41605] TeleShop       Flagship store TeleShop       Flagship store
## [41609] e-Shop         TeleShop       TeleShop       e-Shop        
## [41613] e-Shop         e-Shop         e-Shop         TeleShop      
## [41617] TeleShop       MBR            Flagship store MBR           
## [41621] MBR            Flagship store Flagship store MBR           
## [41625] MBR            e-Shop         e-Shop         TeleShop      
## [41629] Flagship store TeleShop       Flagship store Flagship store
## [41633] TeleShop       e-Shop         e-Shop         e-Shop        
## [41637] e-Shop         e-Shop         e-Shop         TeleShop      
## [41641] TeleShop       Flagship store TeleShop       Flagship store
## [41645] TeleShop       TeleShop       TeleShop       Flagship store
## [41649] TeleShop       TeleShop       TeleShop       TeleShop      
## [41653] MBR            TeleShop       MBR            MBR           
## [41657] TeleShop       TeleShop       MBR            TeleShop      
## [41661] TeleShop       TeleShop       TeleShop       MBR           
## [41665] TeleShop       e-Shop         Flagship store e-Shop        
## [41669] e-Shop         e-Shop         e-Shop         TeleShop      
## [41673] Flagship store Flagship store Flagship store Flagship store
## [41677] Flagship store TeleShop       Flagship store Flagship store
## [41681] e-Shop         e-Shop         Flagship store Flagship store
## [41685] e-Shop         e-Shop         e-Shop         e-Shop        
## [41689] e-Shop         Flagship store Flagship store Flagship store
## [41693] Flagship store MBR            MBR            MBR           
## [41697] e-Shop         Flagship store e-Shop         e-Shop        
## [41701] e-Shop         e-Shop         Flagship store e-Shop        
## [41705] MBR            e-Shop         e-Shop         MBR           
## [41709] MBR            MBR            e-Shop         MBR           
## [41713] MBR            e-Shop         e-Shop         TeleShop      
## [41717] TeleShop       TeleShop       Flagship store TeleShop      
## [41721] TeleShop       Flagship store TeleShop       e-Shop        
## [41725] TeleShop       TeleShop       e-Shop         TeleShop      
## [41729] Flagship store Flagship store e-Shop         TeleShop      
## [41733] e-Shop         e-Shop         e-Shop         e-Shop        
## [41737] TeleShop       Flagship store Flagship store Flagship store
## [41741] e-Shop         TeleShop       e-Shop         e-Shop        
## [41745] Flagship store TeleShop       TeleShop       e-Shop        
## [41749] e-Shop         TeleShop       TeleShop       TeleShop      
## [41753] e-Shop         TeleShop       TeleShop       e-Shop        
## [41757] TeleShop       e-Shop         e-Shop         MBR           
## [41761] TeleShop       e-Shop         MBR            e-Shop        
## [41765] TeleShop       MBR            e-Shop         e-Shop        
## [41769] e-Shop         e-Shop         e-Shop         MBR           
## [41773] e-Shop         e-Shop         e-Shop         e-Shop        
## [41777] e-Shop         Flagship store Flagship store Flagship store
## [41781] MBR            MBR            MBR            MBR           
## [41785] Flagship store MBR            MBR            MBR           
## [41789] MBR            MBR            MBR            e-Shop        
## [41793] MBR            e-Shop         Flagship store MBR           
## [41797] Flagship store Flagship store MBR            MBR           
## [41801] MBR            MBR            MBR            MBR           
## [41805] Flagship store MBR            MBR            Flagship store
## [41809] MBR            Flagship store MBR            MBR           
## [41813] MBR            MBR            Flagship store MBR           
## [41817] MBR            MBR            Flagship store MBR           
## [41821] Flagship store MBR            Flagship store MBR           
## [41825] Flagship store MBR            MBR            MBR           
## [41829] e-Shop         MBR            MBR            MBR           
## [41833] MBR            e-Shop         e-Shop         MBR           
## [41837] MBR            MBR            TeleShop       TeleShop      
## [41841] TeleShop       e-Shop         e-Shop         MBR           
## [41845] MBR            MBR            MBR            e-Shop        
## [41849] MBR            e-Shop         MBR            MBR           
## [41853] MBR            MBR            MBR            MBR           
## [41857] MBR            MBR            MBR            MBR           
## [41861] e-Shop         TeleShop       e-Shop         e-Shop        
## [41865] e-Shop         TeleShop       TeleShop       e-Shop        
## [41869] TeleShop       TeleShop       MBR            e-Shop        
## [41873] e-Shop         e-Shop         MBR            e-Shop        
## [41877] e-Shop         MBR            TeleShop       TeleShop      
## [41881] e-Shop         e-Shop         e-Shop         e-Shop        
## [41885] e-Shop         e-Shop         e-Shop         MBR           
## [41889] e-Shop         MBR            Flagship store e-Shop        
## [41893] e-Shop         e-Shop         e-Shop         MBR           
## [41897] Flagship store MBR            MBR            MBR           
## [41901] e-Shop         MBR            TeleShop       TeleShop      
## [41905] TeleShop       TeleShop       MBR            MBR           
## [41909] TeleShop       TeleShop       TeleShop       TeleShop      
## [41913] MBR            TeleShop       TeleShop       Flagship store
## [41917] Flagship store Flagship store Flagship store TeleShop      
## [41921] TeleShop       MBR            MBR            MBR           
## [41925] MBR            MBR            MBR            MBR           
## [41929] MBR            MBR            MBR            MBR           
## [41933] e-Shop         e-Shop         Flagship store Flagship store
## [41937] Flagship store e-Shop         Flagship store Flagship store
## [41941] Flagship store e-Shop         Flagship store Flagship store
## [41945] e-Shop         Flagship store Flagship store e-Shop        
## [41949] Flagship store MBR            MBR            MBR           
## [41953] MBR            MBR            TeleShop       e-Shop        
## [41957] e-Shop         TeleShop       e-Shop         e-Shop        
## [41961] e-Shop         e-Shop         Flagship store Flagship store
## [41965] Flagship store e-Shop         Flagship store Flagship store
## [41969] Flagship store TeleShop       TeleShop       TeleShop      
## [41973] e-Shop         e-Shop         TeleShop       e-Shop        
## [41977] TeleShop       e-Shop         MBR            MBR           
## [41981] MBR            MBR            TeleShop       TeleShop      
## [41985] TeleShop       TeleShop       TeleShop       TeleShop      
## [41989] TeleShop       e-Shop         e-Shop         e-Shop        
## [41993] e-Shop         e-Shop         e-Shop         e-Shop        
## [41997] TeleShop       e-Shop         e-Shop         TeleShop      
## [42001] e-Shop         e-Shop         e-Shop         TeleShop      
## [42005] TeleShop       TeleShop       TeleShop       e-Shop        
## [42009] e-Shop         e-Shop         e-Shop         e-Shop        
## [42013] e-Shop         e-Shop         e-Shop         e-Shop        
## [42017] TeleShop       e-Shop         e-Shop         e-Shop        
## [42021] e-Shop         e-Shop         e-Shop         e-Shop        
## [42025] e-Shop         e-Shop         e-Shop         Flagship store
## [42029] Flagship store Flagship store e-Shop         e-Shop        
## [42033] MBR            Flagship store MBR            e-Shop        
## [42037] MBR            MBR            e-Shop         Flagship store
## [42041] e-Shop         MBR            e-Shop         e-Shop        
## [42045] Flagship store Flagship store e-Shop         MBR           
## [42049] MBR            Flagship store e-Shop         Flagship store
## [42053] MBR            e-Shop         e-Shop         Flagship store
## [42057] Flagship store e-Shop         e-Shop         e-Shop        
## [42061] Flagship store TeleShop       TeleShop       Flagship store
## [42065] TeleShop       Flagship store Flagship store TeleShop      
## [42069] TeleShop       TeleShop       Flagship store TeleShop      
## [42073] TeleShop       Flagship store MBR            Flagship store
## [42077] Flagship store e-Shop         Flagship store e-Shop        
## [42081] e-Shop         Flagship store Flagship store MBR           
## [42085] e-Shop         MBR            MBR            Flagship store
## [42089] e-Shop         Flagship store Flagship store MBR           
## [42093] Flagship store Flagship store Flagship store Flagship store
## [42097] Flagship store Flagship store e-Shop         e-Shop        
## [42101] e-Shop         Flagship store Flagship store Flagship store
## [42105] Flagship store e-Shop         Flagship store TeleShop      
## [42109] TeleShop       TeleShop       e-Shop         e-Shop        
## [42113] e-Shop         e-Shop         e-Shop         e-Shop        
## [42117] e-Shop         e-Shop         e-Shop         e-Shop        
## [42121] e-Shop         e-Shop         e-Shop         e-Shop        
## [42125] e-Shop         e-Shop         e-Shop         e-Shop        
## [42129] e-Shop         e-Shop         e-Shop         e-Shop        
## [42133] MBR            TeleShop       TeleShop       MBR           
## [42137] MBR            MBR            MBR            e-Shop        
## [42141] e-Shop         e-Shop         Flagship store Flagship store
## [42145] e-Shop         Flagship store Flagship store e-Shop        
## [42149] Flagship store e-Shop         e-Shop         e-Shop        
## [42153] MBR            e-Shop         MBR            MBR           
## [42157] MBR            MBR            MBR            e-Shop        
## [42161] MBR            MBR            e-Shop         MBR           
## [42165] MBR            e-Shop         e-Shop         e-Shop        
## [42169] e-Shop         Flagship store Flagship store e-Shop        
## [42173] e-Shop         e-Shop         e-Shop         e-Shop        
## [42177] e-Shop         TeleShop       TeleShop       TeleShop      
## [42181] TeleShop       TeleShop       MBR            MBR           
## [42185] TeleShop       MBR            MBR            MBR           
## [42189] TeleShop       MBR            TeleShop       MBR           
## [42193] TeleShop       MBR            TeleShop       MBR           
## [42197] MBR            MBR            TeleShop       MBR           
## [42201] MBR            TeleShop       MBR            MBR           
## [42205] MBR            MBR            MBR            MBR           
## [42209] TeleShop       Flagship store Flagship store MBR           
## [42213] Flagship store MBR            TeleShop       TeleShop      
## [42217] TeleShop       Flagship store Flagship store TeleShop      
## [42221] TeleShop       TeleShop       TeleShop       TeleShop      
## [42225] TeleShop       MBR            Flagship store MBR           
## [42229] MBR            Flagship store Flagship store e-Shop        
## [42233] MBR            e-Shop         MBR            TeleShop      
## [42237] e-Shop         MBR            e-Shop         e-Shop        
## [42241] e-Shop         TeleShop       e-Shop         e-Shop        
## [42245] MBR            TeleShop       e-Shop         e-Shop        
## [42249] e-Shop         e-Shop         TeleShop       TeleShop      
## [42253] TeleShop       e-Shop         e-Shop         e-Shop        
## [42257] TeleShop       TeleShop       Flagship store Flagship store
## [42261] Flagship store Flagship store Flagship store Flagship store
## [42265] Flagship store Flagship store Flagship store TeleShop      
## [42269] e-Shop         e-Shop         Flagship store TeleShop      
## [42273] TeleShop       TeleShop       TeleShop       TeleShop      
## [42277] TeleShop       TeleShop       TeleShop       TeleShop      
## [42281] TeleShop       Flagship store TeleShop       Flagship store
## [42285] e-Shop         e-Shop         e-Shop         e-Shop        
## [42289] Flagship store TeleShop       e-Shop         Flagship store
## [42293] e-Shop         Flagship store e-Shop         e-Shop        
## [42297] TeleShop       Flagship store TeleShop       e-Shop        
## [42301] Flagship store e-Shop         e-Shop         e-Shop        
## [42305] Flagship store e-Shop         Flagship store e-Shop        
## [42309] MBR            MBR            e-Shop         MBR           
## [42313] MBR            e-Shop         MBR            e-Shop        
## [42317] e-Shop         e-Shop         TeleShop       TeleShop      
## [42321] TeleShop       TeleShop       Flagship store TeleShop      
## [42325] Flagship store TeleShop       TeleShop       TeleShop      
## [42329] TeleShop       TeleShop       TeleShop       Flagship store
## [42333] MBR            Flagship store Flagship store MBR           
## [42337] Flagship store Flagship store Flagship store Flagship store
## [42341] Flagship store TeleShop       TeleShop       TeleShop      
## [42345] TeleShop       TeleShop       TeleShop       MBR           
## [42349] MBR            TeleShop       TeleShop       MBR           
## [42353] MBR            MBR            TeleShop       e-Shop        
## [42357] Flagship store e-Shop         Flagship store e-Shop        
## [42361] e-Shop         TeleShop       Flagship store Flagship store
## [42365] e-Shop         TeleShop       Flagship store Flagship store
## [42369] TeleShop       e-Shop         e-Shop         TeleShop      
## [42373] TeleShop       TeleShop       TeleShop       TeleShop      
## [42377] Flagship store MBR            TeleShop       Flagship store
## [42381] TeleShop       MBR            TeleShop       Flagship store
## [42385] Flagship store MBR            e-Shop         e-Shop        
## [42389] e-Shop         TeleShop       TeleShop       Flagship store
## [42393] Flagship store TeleShop       TeleShop       Flagship store
## [42397] TeleShop       TeleShop       Flagship store TeleShop      
## [42401] TeleShop       TeleShop       Flagship store Flagship store
## [42405] TeleShop       e-Shop         e-Shop         e-Shop        
## [42409] e-Shop         e-Shop         e-Shop         e-Shop        
## [42413] e-Shop         e-Shop         e-Shop         e-Shop        
## [42417] TeleShop       TeleShop       TeleShop       TeleShop      
## [42421] TeleShop       TeleShop       MBR            MBR           
## [42425] MBR            MBR            MBR            MBR           
## [42429] e-Shop         e-Shop         e-Shop         e-Shop        
## [42433] e-Shop         MBR            Flagship store Flagship store
## [42437] Flagship store Flagship store e-Shop         Flagship store
## [42441] e-Shop         Flagship store e-Shop         e-Shop        
## [42445] e-Shop         Flagship store e-Shop         e-Shop        
## [42449] MBR            MBR            MBR            MBR           
## [42453] MBR            TeleShop       TeleShop       TeleShop      
## [42457] MBR            MBR            MBR            TeleShop      
## [42461] MBR            MBR            e-Shop         e-Shop        
## [42465] e-Shop         e-Shop         TeleShop       TeleShop      
## [42469] Flagship store TeleShop       e-Shop         Flagship store
## [42473] e-Shop         TeleShop       Flagship store Flagship store
## [42477] Flagship store Flagship store e-Shop         Flagship store
## [42481] Flagship store e-Shop         e-Shop         MBR           
## [42485] MBR            TeleShop       TeleShop       TeleShop      
## [42489] MBR            MBR            TeleShop       MBR           
## [42493] TeleShop       MBR            TeleShop       TeleShop      
## [42497] TeleShop       TeleShop       e-Shop         e-Shop        
## [42501] MBR            e-Shop         MBR            e-Shop        
## [42505] e-Shop         TeleShop       TeleShop       MBR           
## [42509] e-Shop         e-Shop         TeleShop       TeleShop      
## [42513] TeleShop       TeleShop       TeleShop       MBR           
## [42517] MBR            TeleShop       TeleShop       MBR           
## [42521] MBR            e-Shop         MBR            MBR           
## [42525] e-Shop         TeleShop       e-Shop         MBR           
## [42529] MBR            MBR            MBR            MBR           
## [42533] MBR            e-Shop         Flagship store e-Shop        
## [42537] Flagship store e-Shop         Flagship store TeleShop      
## [42541] TeleShop       Flagship store TeleShop       TeleShop      
## [42545] e-Shop         Flagship store e-Shop         Flagship store
## [42549] TeleShop       e-Shop         e-Shop         e-Shop        
## [42553] TeleShop       MBR            MBR            MBR           
## [42557] e-Shop         e-Shop         e-Shop         e-Shop        
## [42561] e-Shop         e-Shop         e-Shop         MBR           
## [42565] Flagship store Flagship store Flagship store MBR           
## [42569] Flagship store MBR            Flagship store MBR           
## [42573] MBR            TeleShop       MBR            MBR           
## [42577] TeleShop       MBR            TeleShop       TeleShop      
## [42581] TeleShop       e-Shop         e-Shop         e-Shop        
## [42585] e-Shop         TeleShop       TeleShop       TeleShop      
## [42589] TeleShop       TeleShop       TeleShop       Flagship store
## [42593] Flagship store Flagship store Flagship store Flagship store
## [42597] Flagship store TeleShop       e-Shop         TeleShop      
## [42601] e-Shop         e-Shop         Flagship store e-Shop        
## [42605] TeleShop       e-Shop         TeleShop       Flagship store
## [42609] Flagship store Flagship store Flagship store MBR           
## [42613] Flagship store Flagship store Flagship store Flagship store
## [42617] e-Shop         Flagship store e-Shop         Flagship store
## [42621] Flagship store Flagship store MBR            Flagship store
## [42625] TeleShop       TeleShop       TeleShop       TeleShop      
## [42629] MBR            e-Shop         e-Shop         MBR           
## [42633] MBR            Flagship store MBR            MBR           
## [42637] MBR            MBR            Flagship store MBR           
## [42641] e-Shop         e-Shop         MBR            MBR           
## [42645] e-Shop         e-Shop         MBR            MBR           
## [42649] MBR            MBR            e-Shop         e-Shop        
## [42653] e-Shop         e-Shop         MBR            TeleShop      
## [42657] MBR            TeleShop       TeleShop       MBR           
## [42661] TeleShop       e-Shop         e-Shop         e-Shop        
## [42665] TeleShop       MBR            MBR            MBR           
## [42669] TeleShop       MBR            MBR            TeleShop      
## [42673] TeleShop       TeleShop       TeleShop       TeleShop      
## [42677] TeleShop       TeleShop       TeleShop       e-Shop        
## [42681] e-Shop         e-Shop         Flagship store Flagship store
## [42685] Flagship store Flagship store e-Shop         e-Shop        
## [42689] e-Shop         e-Shop         e-Shop         e-Shop        
## [42693] Flagship store e-Shop         Flagship store e-Shop        
## [42697] Flagship store e-Shop         e-Shop         TeleShop      
## [42701] MBR            TeleShop       MBR            TeleShop      
## [42705] e-Shop         e-Shop         Flagship store e-Shop        
## [42709] e-Shop         Flagship store e-Shop         e-Shop        
## [42713] e-Shop         TeleShop       TeleShop       e-Shop        
## [42717] e-Shop         e-Shop         e-Shop         e-Shop        
## [42721] e-Shop         e-Shop         e-Shop         Flagship store
## [42725] Flagship store e-Shop         e-Shop         e-Shop        
## [42729] e-Shop         Flagship store MBR            MBR           
## [42733] e-Shop         e-Shop         MBR            Flagship store
## [42737] e-Shop         e-Shop         e-Shop         MBR           
## [42741] e-Shop         e-Shop         e-Shop         e-Shop        
## [42745] MBR            e-Shop         MBR            e-Shop        
## [42749] MBR            e-Shop         TeleShop       TeleShop      
## [42753] TeleShop       TeleShop       TeleShop       TeleShop      
## [42757] TeleShop       MBR            MBR            MBR           
## [42761] MBR            MBR            MBR            MBR           
## [42765] MBR            e-Shop         e-Shop         e-Shop        
## [42769] e-Shop         e-Shop         e-Shop         e-Shop        
## [42773] e-Shop         e-Shop         TeleShop       TeleShop      
## [42777] TeleShop       TeleShop       Flagship store TeleShop      
## [42781] TeleShop       TeleShop       Flagship store TeleShop      
## [42785] MBR            e-Shop         Flagship store e-Shop        
## [42789] MBR            MBR            Flagship store MBR           
## [42793] e-Shop         Flagship store Flagship store MBR           
## [42797] e-Shop         Flagship store e-Shop         Flagship store
## [42801] Flagship store MBR            e-Shop         e-Shop        
## [42805] e-Shop         MBR            e-Shop         TeleShop      
## [42809] TeleShop       TeleShop       TeleShop       TeleShop      
## [42813] TeleShop       TeleShop       TeleShop       TeleShop      
## [42817] TeleShop       TeleShop       MBR            MBR           
## [42821] TeleShop       MBR            TeleShop       e-Shop        
## [42825] Flagship store Flagship store Flagship store Flagship store
## [42829] Flagship store Flagship store Flagship store Flagship store
## [42833] Flagship store Flagship store e-Shop         Flagship store
## [42837] MBR            MBR            MBR            e-Shop        
## [42841] e-Shop         e-Shop         e-Shop         e-Shop        
## [42845] TeleShop       MBR            TeleShop       e-Shop        
## [42849] TeleShop       e-Shop         e-Shop         e-Shop        
## [42853] TeleShop       e-Shop         e-Shop         e-Shop        
## [42857] e-Shop         e-Shop         e-Shop         e-Shop        
## [42861] e-Shop         TeleShop       e-Shop         MBR           
## [42865] e-Shop         TeleShop       e-Shop         e-Shop        
## [42869] e-Shop         e-Shop         e-Shop         TeleShop      
## [42873] TeleShop       TeleShop       TeleShop       TeleShop      
## [42877] TeleShop       e-Shop         e-Shop         e-Shop        
## [42881] e-Shop         Flagship store Flagship store Flagship store
## [42885] Flagship store e-Shop         e-Shop         Flagship store
## [42889] e-Shop         Flagship store Flagship store Flagship store
## [42893] Flagship store TeleShop       TeleShop       TeleShop      
## [42897] TeleShop       TeleShop       e-Shop         e-Shop        
## [42901] e-Shop         e-Shop         e-Shop         e-Shop        
## [42905] e-Shop         e-Shop         e-Shop         e-Shop        
## [42909] MBR            MBR            MBR            MBR           
## [42913] e-Shop         e-Shop         MBR            e-Shop        
## [42917] e-Shop         e-Shop         e-Shop         e-Shop        
## [42921] e-Shop         MBR            e-Shop         e-Shop        
## [42925] e-Shop         MBR            e-Shop         e-Shop        
## [42929] MBR            e-Shop         MBR            MBR           
## [42933] MBR            TeleShop       TeleShop       TeleShop      
## [42937] TeleShop       TeleShop       e-Shop         e-Shop        
## [42941] MBR            MBR            MBR            MBR           
## [42945] Flagship store Flagship store Flagship store Flagship store
## [42949] MBR            Flagship store Flagship store Flagship store
## [42953] Flagship store MBR            Flagship store MBR           
## [42957] MBR            TeleShop       TeleShop       TeleShop      
## [42961] TeleShop       TeleShop       TeleShop       e-Shop        
## [42965] e-Shop         e-Shop         e-Shop         e-Shop        
## [42969] e-Shop         e-Shop         e-Shop         e-Shop        
## [42973] e-Shop         e-Shop         TeleShop       e-Shop        
## [42977] TeleShop       e-Shop         TeleShop       TeleShop      
## [42981] MBR            TeleShop       TeleShop       e-Shop        
## [42985] e-Shop         e-Shop         MBR            e-Shop        
## [42989] TeleShop       MBR            e-Shop         TeleShop      
## [42993] Flagship store Flagship store TeleShop       Flagship store
## [42997] MBR            e-Shop         Flagship store Flagship store
## [43001] TeleShop       e-Shop         TeleShop       TeleShop      
## [43005] e-Shop         TeleShop       TeleShop       TeleShop      
## [43009] TeleShop       TeleShop       TeleShop       e-Shop        
## [43013] e-Shop         TeleShop       TeleShop       Flagship store
## [43017] Flagship store Flagship store Flagship store Flagship store
## [43021] Flagship store TeleShop       Flagship store TeleShop      
## [43025] MBR            MBR            MBR            MBR           
## [43029] MBR            Flagship store TeleShop       Flagship store
## [43033] Flagship store MBR            MBR            MBR           
## [43037] MBR            MBR            Flagship store Flagship store
## [43041] Flagship store Flagship store Flagship store e-Shop        
## [43045] e-Shop         e-Shop         e-Shop         Flagship store
## [43049] e-Shop         Flagship store TeleShop       Flagship store
## [43053] Flagship store TeleShop       MBR            Flagship store
## [43057] TeleShop       MBR            Flagship store TeleShop      
## [43061] e-Shop         TeleShop       e-Shop         TeleShop      
## [43065] MBR            e-Shop         e-Shop         MBR           
## [43069] MBR            e-Shop         e-Shop         e-Shop        
## [43073] MBR            e-Shop         e-Shop         MBR           
## [43077] e-Shop         e-Shop         e-Shop         MBR           
## [43081] e-Shop         Flagship store Flagship store e-Shop        
## [43085] Flagship store Flagship store Flagship store Flagship store
## [43089] e-Shop         e-Shop         e-Shop         e-Shop        
## [43093] Flagship store Flagship store Flagship store TeleShop      
## [43097] TeleShop       TeleShop       TeleShop       e-Shop        
## [43101] TeleShop       TeleShop       TeleShop       Flagship store
## [43105] TeleShop       TeleShop       e-Shop         TeleShop      
## [43109] TeleShop       TeleShop       e-Shop         Flagship store
## [43113] e-Shop         e-Shop         e-Shop         e-Shop        
## [43117] e-Shop         e-Shop         e-Shop         e-Shop        
## [43121] e-Shop         e-Shop         e-Shop         e-Shop        
## [43125] e-Shop         MBR            e-Shop         e-Shop        
## [43129] MBR            e-Shop         MBR            MBR           
## [43133] e-Shop         MBR            MBR            MBR           
## [43137] MBR            TeleShop       TeleShop       TeleShop      
## [43141] MBR            MBR            e-Shop         MBR           
## [43145] Flagship store MBR            Flagship store Flagship store
## [43149] e-Shop         MBR            MBR            MBR           
## [43153] MBR            e-Shop         TeleShop       e-Shop        
## [43157] TeleShop       Flagship store TeleShop       e-Shop        
## [43161] Flagship store e-Shop         e-Shop         Flagship store
## [43165] e-Shop         Flagship store Flagship store TeleShop      
## [43169] e-Shop         TeleShop       e-Shop         TeleShop      
## [43173] TeleShop       TeleShop       TeleShop       TeleShop      
## [43177] TeleShop       MBR            MBR            MBR           
## [43181] MBR            MBR            TeleShop       MBR           
## [43185] Flagship store TeleShop       TeleShop       TeleShop      
## [43189] TeleShop       TeleShop       TeleShop       TeleShop      
## [43193] TeleShop       Flagship store TeleShop       Flagship store
## [43197] TeleShop       Flagship store Flagship store MBR           
## [43201] Flagship store Flagship store Flagship store Flagship store
## [43205] MBR            MBR            MBR            Flagship store
## [43209] Flagship store Flagship store Flagship store Flagship store
## [43213] Flagship store Flagship store MBR            e-Shop        
## [43217] e-Shop         e-Shop         e-Shop         e-Shop        
## [43221] e-Shop         e-Shop         e-Shop         e-Shop        
## [43225] e-Shop         MBR            MBR            e-Shop        
## [43229] MBR            Flagship store Flagship store e-Shop        
## [43233] TeleShop       TeleShop       TeleShop       Flagship store
## [43237] e-Shop         TeleShop       TeleShop       Flagship store
## [43241] Flagship store Flagship store e-Shop         Flagship store
## [43245] e-Shop         e-Shop         Flagship store e-Shop        
## [43249] e-Shop         e-Shop         e-Shop         e-Shop        
## [43253] e-Shop         Flagship store e-Shop         e-Shop        
## [43257] Flagship store Flagship store MBR            MBR           
## [43261] Flagship store Flagship store Flagship store Flagship store
## [43265] Flagship store Flagship store Flagship store Flagship store
## [43269] e-Shop         Flagship store TeleShop       Flagship store
## [43273] e-Shop         TeleShop       TeleShop       Flagship store
## [43277] Flagship store TeleShop       TeleShop       Flagship store
## [43281] TeleShop       TeleShop       TeleShop       TeleShop      
## [43285] TeleShop       Flagship store TeleShop       TeleShop      
## [43289] TeleShop       TeleShop       e-Shop         e-Shop        
## [43293] e-Shop         e-Shop         e-Shop         e-Shop        
## [43297] e-Shop         e-Shop         e-Shop         e-Shop        
## [43301] e-Shop         e-Shop         MBR            e-Shop        
## [43305] MBR            Flagship store Flagship store Flagship store
## [43309] e-Shop         Flagship store e-Shop         e-Shop        
## [43313] Flagship store e-Shop         e-Shop         TeleShop      
## [43317] TeleShop       TeleShop       Flagship store TeleShop      
## [43321] TeleShop       TeleShop       TeleShop       TeleShop      
## [43325] TeleShop       Flagship store TeleShop       TeleShop      
## [43329] e-Shop         e-Shop         TeleShop       e-Shop        
## [43333] e-Shop         e-Shop         e-Shop         e-Shop        
## [43337] e-Shop         TeleShop       e-Shop         e-Shop        
## [43341] e-Shop         e-Shop         e-Shop         e-Shop        
## [43345] e-Shop         TeleShop       TeleShop       TeleShop      
## [43349] MBR            MBR            MBR            MBR           
## [43353] MBR            e-Shop         MBR            MBR           
## [43357] MBR            e-Shop         MBR            MBR           
## [43361] e-Shop         e-Shop         e-Shop         TeleShop      
## [43365] e-Shop         TeleShop       e-Shop         TeleShop      
## [43369] TeleShop       e-Shop         TeleShop       e-Shop        
## [43373] TeleShop       e-Shop         e-Shop         e-Shop        
## [43377] e-Shop         e-Shop         e-Shop         e-Shop        
## [43381] e-Shop         e-Shop         e-Shop         TeleShop      
## [43385] e-Shop         e-Shop         e-Shop         e-Shop        
## [43389] e-Shop         e-Shop         e-Shop         TeleShop      
## [43393] e-Shop         e-Shop         e-Shop         e-Shop        
## [43397] TeleShop       e-Shop         Flagship store Flagship store
## [43401] Flagship store Flagship store Flagship store e-Shop        
## [43405] Flagship store Flagship store Flagship store Flagship store
## [43409] MBR            e-Shop         Flagship store Flagship store
## [43413] Flagship store MBR            MBR            Flagship store
## [43417] MBR            MBR            MBR            MBR           
## [43421] e-Shop         MBR            MBR            e-Shop        
## [43425] MBR            TeleShop       TeleShop       TeleShop      
## [43429] TeleShop       MBR            MBR            TeleShop      
## [43433] TeleShop       TeleShop       TeleShop       TeleShop      
## [43437] TeleShop       TeleShop       TeleShop       TeleShop      
## [43441] TeleShop       TeleShop       TeleShop       TeleShop      
## [43445] TeleShop       TeleShop       TeleShop       TeleShop      
## [43449] TeleShop       TeleShop       TeleShop       TeleShop      
## [43453] e-Shop         e-Shop         TeleShop       TeleShop      
## [43457] e-Shop         e-Shop         e-Shop         e-Shop        
## [43461] e-Shop         e-Shop         e-Shop         e-Shop        
## [43465] e-Shop         e-Shop         e-Shop         e-Shop        
## [43469] e-Shop         e-Shop         e-Shop         Flagship store
## [43473] Flagship store Flagship store Flagship store Flagship store
## [43477] Flagship store TeleShop       TeleShop       TeleShop      
## [43481] Flagship store TeleShop       Flagship store TeleShop      
## [43485] Flagship store Flagship store Flagship store Flagship store
## [43489] MBR            Flagship store Flagship store Flagship store
## [43493] Flagship store MBR            Flagship store TeleShop      
## [43497] TeleShop       TeleShop       TeleShop       e-Shop        
## [43501] e-Shop         e-Shop         e-Shop         e-Shop        
## [43505] e-Shop         Flagship store e-Shop         e-Shop        
## [43509] Flagship store e-Shop         e-Shop         e-Shop        
## [43513] e-Shop         e-Shop         e-Shop         e-Shop        
## [43517] e-Shop         e-Shop         e-Shop         e-Shop        
## [43521] e-Shop         MBR            MBR            MBR           
## [43525] MBR            MBR            MBR            TeleShop      
## [43529] e-Shop         TeleShop       TeleShop       e-Shop        
## [43533] TeleShop       TeleShop       e-Shop         Flagship store
## [43537] e-Shop         MBR            e-Shop         e-Shop        
## [43541] MBR            Flagship store e-Shop         MBR           
## [43545] TeleShop       TeleShop       TeleShop       MBR           
## [43549] MBR            Flagship store Flagship store Flagship store
## [43553] TeleShop       Flagship store TeleShop       Flagship store
## [43557] TeleShop       TeleShop       TeleShop       TeleShop      
## [43561] TeleShop       TeleShop       TeleShop       TeleShop      
## [43565] MBR            TeleShop       MBR            TeleShop      
## [43569] TeleShop       TeleShop       TeleShop       MBR           
## [43573] TeleShop       TeleShop       MBR            TeleShop      
## [43577] TeleShop       e-Shop         e-Shop         e-Shop        
## [43581] e-Shop         e-Shop         Flagship store MBR           
## [43585] MBR            Flagship store MBR            MBR           
## [43589] MBR            Flagship store Flagship store MBR           
## [43593] MBR            MBR            MBR            MBR           
## [43597] MBR            MBR            MBR            MBR           
## [43601] MBR            Flagship store Flagship store Flagship store
## [43605] Flagship store MBR            MBR            MBR           
## [43609] MBR            MBR            e-Shop         e-Shop        
## [43613] MBR            e-Shop         e-Shop         MBR           
## [43617] e-Shop         MBR            e-Shop         e-Shop        
## [43621] MBR            MBR            e-Shop         MBR           
## [43625] e-Shop         MBR            e-Shop         MBR           
## [43629] MBR            e-Shop         e-Shop         e-Shop        
## [43633] e-Shop         e-Shop         e-Shop         e-Shop        
## [43637] e-Shop         e-Shop         e-Shop         e-Shop        
## [43641] e-Shop         Flagship store Flagship store Flagship store
## [43645] Flagship store Flagship store e-Shop         MBR           
## [43649] e-Shop         MBR            e-Shop         e-Shop        
## [43653] e-Shop         MBR            MBR            e-Shop        
## [43657] e-Shop         e-Shop         e-Shop         e-Shop        
## [43661] e-Shop         e-Shop         e-Shop         e-Shop        
## [43665] e-Shop         e-Shop         e-Shop         e-Shop        
## [43669] e-Shop         TeleShop       TeleShop       TeleShop      
## [43673] MBR            TeleShop       MBR            TeleShop      
## [43677] e-Shop         e-Shop         e-Shop         MBR           
## [43681] TeleShop       MBR            MBR            MBR           
## [43685] MBR            TeleShop       TeleShop       TeleShop      
## [43689] TeleShop       TeleShop       MBR            MBR           
## [43693] e-Shop         MBR            MBR            e-Shop        
## [43697] e-Shop         e-Shop         Flagship store MBR           
## [43701] Flagship store MBR            Flagship store e-Shop        
## [43705] MBR            e-Shop         Flagship store e-Shop        
## [43709] Flagship store Flagship store e-Shop         e-Shop        
## [43713] e-Shop         e-Shop         e-Shop         e-Shop        
## [43717] TeleShop       TeleShop       TeleShop       TeleShop      
## [43721] TeleShop       e-Shop         e-Shop         e-Shop        
## [43725] Flagship store Flagship store e-Shop         Flagship store
## [43729] e-Shop         Flagship store Flagship store Flagship store
## [43733] Flagship store e-Shop         e-Shop         e-Shop        
## [43737] e-Shop         Flagship store Flagship store Flagship store
## [43741] e-Shop         TeleShop       e-Shop         TeleShop      
## [43745] e-Shop         TeleShop       TeleShop       TeleShop      
## [43749] Flagship store Flagship store Flagship store Flagship store
## [43753] Flagship store Flagship store Flagship store Flagship store
## [43757] e-Shop         Flagship store Flagship store e-Shop        
## [43761] e-Shop         e-Shop         Flagship store e-Shop        
## [43765] MBR            MBR            e-Shop         e-Shop        
## [43769] MBR            MBR            Flagship store TeleShop      
## [43773] TeleShop       Flagship store TeleShop       TeleShop      
## [43777] TeleShop       Flagship store TeleShop       e-Shop        
## [43781] e-Shop         e-Shop         e-Shop         e-Shop        
## [43785] e-Shop         e-Shop         e-Shop         e-Shop        
## [43789] e-Shop         e-Shop         e-Shop         e-Shop        
## [43793] e-Shop         TeleShop       e-Shop         TeleShop      
## [43797] TeleShop       TeleShop       TeleShop       e-Shop        
## [43801] e-Shop         e-Shop         e-Shop         e-Shop        
## [43805] e-Shop         e-Shop         e-Shop         e-Shop        
## [43809] Flagship store e-Shop         Flagship store Flagship store
## [43813] e-Shop         TeleShop       e-Shop         TeleShop      
## [43817] e-Shop         TeleShop       e-Shop         e-Shop        
## [43821] TeleShop       TeleShop       e-Shop         e-Shop        
## [43825] e-Shop         e-Shop         e-Shop         MBR           
## [43829] MBR            e-Shop         e-Shop         MBR           
## [43833] MBR            TeleShop       MBR            e-Shop        
## [43837] TeleShop       TeleShop       e-Shop         TeleShop      
## [43841] e-Shop         TeleShop       e-Shop         e-Shop        
## [43845] TeleShop       e-Shop         e-Shop         e-Shop        
## [43849] e-Shop         TeleShop       e-Shop         e-Shop        
## [43853] TeleShop       e-Shop         e-Shop         TeleShop      
## [43857] MBR            MBR            TeleShop       TeleShop      
## [43861] e-Shop         e-Shop         TeleShop       MBR           
## [43865] Flagship store MBR            MBR            Flagship store
## [43869] MBR            MBR            Flagship store TeleShop      
## [43873] e-Shop         e-Shop         e-Shop         MBR           
## [43877] e-Shop         e-Shop         e-Shop         e-Shop        
## [43881] e-Shop         MBR            e-Shop         e-Shop        
## [43885] e-Shop         Flagship store Flagship store Flagship store
## [43889] Flagship store Flagship store Flagship store Flagship store
## [43893] Flagship store Flagship store e-Shop         e-Shop        
## [43897] e-Shop         e-Shop         e-Shop         e-Shop        
## [43901] e-Shop         e-Shop         e-Shop         e-Shop        
## [43905] e-Shop         e-Shop         e-Shop         e-Shop        
## [43909] e-Shop         TeleShop       e-Shop         TeleShop      
## [43913] TeleShop       MBR            MBR            e-Shop        
## [43917] e-Shop         e-Shop         MBR            MBR           
## [43921] MBR            MBR            e-Shop         MBR           
## [43925] MBR            MBR            MBR            e-Shop        
## [43929] MBR            e-Shop         Flagship store MBR           
## [43933] Flagship store e-Shop         e-Shop         e-Shop        
## [43937] Flagship store Flagship store Flagship store Flagship store
## [43941] e-Shop         Flagship store e-Shop         Flagship store
## [43945] MBR            MBR            MBR            e-Shop        
## [43949] MBR            e-Shop         MBR            e-Shop        
## [43953] TeleShop       e-Shop         MBR            TeleShop      
## [43957] TeleShop       TeleShop       e-Shop         TeleShop      
## [43961] e-Shop         TeleShop       MBR            MBR           
## [43965] Flagship store Flagship store MBR            MBR           
## [43969] MBR            MBR            Flagship store MBR           
## [43973] e-Shop         e-Shop         MBR            e-Shop        
## [43977] e-Shop         MBR            e-Shop         MBR           
## [43981] MBR            Flagship store Flagship store Flagship store
## [43985] e-Shop         MBR            MBR            MBR           
## [43989] MBR            e-Shop         e-Shop         MBR           
## [43993] Flagship store MBR            MBR            Flagship store
## [43997] Flagship store Flagship store Flagship store Flagship store
## [44001] Flagship store Flagship store TeleShop       TeleShop      
## [44005] Flagship store TeleShop       TeleShop       TeleShop      
## [44009] TeleShop       Flagship store TeleShop       TeleShop      
## [44013] TeleShop       TeleShop       TeleShop       Flagship store
## [44017] TeleShop       TeleShop       TeleShop       e-Shop        
## [44021] e-Shop         MBR            MBR            e-Shop        
## [44025] e-Shop         e-Shop         e-Shop         e-Shop        
## [44029] e-Shop         e-Shop         e-Shop         e-Shop        
## [44033] e-Shop         e-Shop         e-Shop         e-Shop        
## [44037] Flagship store e-Shop         Flagship store e-Shop        
## [44041] MBR            Flagship store MBR            MBR           
## [44045] MBR            MBR            Flagship store Flagship store
## [44049] MBR            MBR            MBR            MBR           
## [44053] MBR            MBR            MBR            MBR           
## [44057] MBR            MBR            MBR            MBR           
## [44061] MBR            MBR            TeleShop       TeleShop      
## [44065] MBR            MBR            TeleShop       MBR           
## [44069] TeleShop       MBR            MBR            TeleShop      
## [44073] MBR            MBR            MBR            e-Shop        
## [44077] e-Shop         e-Shop         e-Shop         e-Shop        
## [44081] e-Shop         e-Shop         e-Shop         MBR           
## [44085] Flagship store Flagship store Flagship store MBR           
## [44089] Flagship store Flagship store Flagship store Flagship store
## [44093] e-Shop         e-Shop         Flagship store Flagship store
## [44097] Flagship store TeleShop       TeleShop       TeleShop      
## [44101] e-Shop         e-Shop         e-Shop         e-Shop        
## [44105] e-Shop         Flagship store Flagship store MBR           
## [44109] MBR            MBR            MBR            MBR           
## [44113] MBR            MBR            MBR            e-Shop        
## [44117] MBR            e-Shop         MBR            e-Shop        
## [44121] MBR            MBR            e-Shop         e-Shop        
## [44125] MBR            MBR            MBR            e-Shop        
## [44129] e-Shop         e-Shop         e-Shop         e-Shop        
## [44133] e-Shop         e-Shop         e-Shop         e-Shop        
## [44137] e-Shop         e-Shop         e-Shop         e-Shop        
## [44141] e-Shop         Flagship store e-Shop         MBR           
## [44145] e-Shop         e-Shop         Flagship store MBR           
## [44149] MBR            e-Shop         e-Shop         e-Shop        
## [44153] Flagship store e-Shop         e-Shop         MBR           
## [44157] e-Shop         e-Shop         e-Shop         MBR           
## [44161] e-Shop         TeleShop       e-Shop         MBR           
## [44165] TeleShop       TeleShop       TeleShop       TeleShop      
## [44169] MBR            MBR            MBR            MBR           
## [44173] e-Shop         MBR            e-Shop         e-Shop        
## [44177] e-Shop         e-Shop         e-Shop         MBR           
## [44181] e-Shop         e-Shop         e-Shop         MBR           
## [44185] MBR            Flagship store Flagship store e-Shop        
## [44189] e-Shop         MBR            MBR            Flagship store
## [44193] MBR            MBR            e-Shop         e-Shop        
## [44197] MBR            e-Shop         MBR            MBR           
## [44201] e-Shop         e-Shop         MBR            e-Shop        
## [44205] e-Shop         e-Shop         TeleShop       TeleShop      
## [44209] TeleShop       MBR            MBR            MBR           
## [44213] TeleShop       TeleShop       MBR            e-Shop        
## [44217] e-Shop         e-Shop         e-Shop         e-Shop        
## [44221] e-Shop         e-Shop         e-Shop         e-Shop        
## [44225] TeleShop       e-Shop         TeleShop       TeleShop      
## [44229] Flagship store Flagship store MBR            MBR           
## [44233] e-Shop         TeleShop       Flagship store Flagship store
## [44237] e-Shop         MBR            e-Shop         e-Shop        
## [44241] TeleShop       MBR            TeleShop       MBR           
## [44245] TeleShop       MBR            MBR            MBR           
## [44249] MBR            MBR            MBR            e-Shop        
## [44253] MBR            e-Shop         e-Shop         e-Shop        
## [44257] MBR            e-Shop         MBR            e-Shop        
## [44261] MBR            MBR            MBR            MBR           
## [44265] MBR            e-Shop         e-Shop         e-Shop        
## [44269] e-Shop         e-Shop         e-Shop         e-Shop        
## [44273] Flagship store Flagship store MBR            Flagship store
## [44277] MBR            e-Shop         e-Shop         e-Shop        
## [44281] MBR            MBR            MBR            MBR           
## [44285] e-Shop         e-Shop         e-Shop         MBR           
## [44289] MBR            e-Shop         MBR            e-Shop        
## [44293] e-Shop         e-Shop         Flagship store e-Shop        
## [44297] e-Shop         Flagship store e-Shop         e-Shop        
## [44301] e-Shop         e-Shop         e-Shop         e-Shop        
## [44305] e-Shop         e-Shop         e-Shop         e-Shop        
## [44309] e-Shop         e-Shop         e-Shop         e-Shop        
## [44313] e-Shop         e-Shop         e-Shop         e-Shop        
## [44317] e-Shop         e-Shop         Flagship store e-Shop        
## [44321] e-Shop         e-Shop         TeleShop       e-Shop        
## [44325] Flagship store TeleShop       Flagship store Flagship store
## [44329] Flagship store e-Shop         TeleShop       TeleShop      
## [44333] e-Shop         MBR            e-Shop         MBR           
## [44337] TeleShop       e-Shop         e-Shop         e-Shop        
## [44341] e-Shop         e-Shop         e-Shop         e-Shop        
## [44345] e-Shop         e-Shop         e-Shop         e-Shop        
## [44349] e-Shop         MBR            e-Shop         MBR           
## [44353] e-Shop         Flagship store Flagship store Flagship store
## [44357] Flagship store MBR            e-Shop         MBR           
## [44361] MBR            MBR            MBR            e-Shop        
## [44365] MBR            e-Shop         Flagship store Flagship store
## [44369] Flagship store MBR            e-Shop         MBR           
## [44373] MBR            e-Shop         e-Shop         MBR           
## [44377] e-Shop         e-Shop         e-Shop         e-Shop        
## [44381] MBR            MBR            MBR            MBR           
## [44385] MBR            MBR            Flagship store Flagship store
## [44389] Flagship store TeleShop       Flagship store TeleShop      
## [44393] TeleShop       TeleShop       Flagship store Flagship store
## [44397] Flagship store TeleShop       e-Shop         TeleShop      
## [44401] e-Shop         e-Shop         TeleShop       TeleShop      
## [44405] TeleShop       e-Shop         e-Shop         e-Shop        
## [44409] e-Shop         e-Shop         e-Shop         Flagship store
## [44413] Flagship store Flagship store Flagship store Flagship store
## [44417] Flagship store Flagship store Flagship store MBR           
## [44421] MBR            MBR            MBR            MBR           
## [44425] MBR            MBR            MBR            MBR           
## [44429] e-Shop         e-Shop         MBR            e-Shop        
## [44433] MBR            e-Shop         e-Shop         MBR           
## [44437] TeleShop       TeleShop       TeleShop       MBR           
## [44441] MBR            MBR            MBR            Flagship store
## [44445] e-Shop         Flagship store TeleShop       TeleShop      
## [44449] TeleShop       e-Shop         Flagship store e-Shop        
## [44453] e-Shop         e-Shop         Flagship store e-Shop        
## [44457] TeleShop       Flagship store e-Shop         e-Shop        
## [44461] e-Shop         Flagship store Flagship store Flagship store
## [44465] Flagship store Flagship store e-Shop         e-Shop        
## [44469] e-Shop         e-Shop         MBR            MBR           
## [44473] MBR            e-Shop         MBR            MBR           
## [44477] MBR            e-Shop         e-Shop         e-Shop        
## [44481] MBR            MBR            Flagship store Flagship store
## [44485] Flagship store Flagship store MBR            Flagship store
## [44489] MBR            MBR            Flagship store MBR           
## [44493] e-Shop         e-Shop         e-Shop         Flagship store
## [44497] e-Shop         MBR            MBR            e-Shop        
## [44501] e-Shop         e-Shop         e-Shop         MBR           
## [44505] e-Shop         e-Shop         e-Shop         MBR           
## [44509] e-Shop         MBR            Flagship store Flagship store
## [44513] Flagship store MBR            e-Shop         e-Shop        
## [44517] e-Shop         e-Shop         e-Shop         e-Shop        
## [44521] e-Shop         e-Shop         e-Shop         e-Shop        
## [44525] e-Shop         Flagship store e-Shop         e-Shop        
## [44529] Flagship store Flagship store e-Shop         MBR           
## [44533] MBR            MBR            MBR            MBR           
## [44537] MBR            MBR            MBR            Flagship store
## [44541] MBR            MBR            MBR            Flagship store
## [44545] MBR            Flagship store Flagship store Flagship store
## [44549] Flagship store e-Shop         e-Shop         e-Shop        
## [44553] e-Shop         e-Shop         e-Shop         e-Shop        
## [44557] e-Shop         e-Shop         e-Shop         e-Shop        
## [44561] e-Shop         e-Shop         e-Shop         MBR           
## [44565] MBR            Flagship store Flagship store MBR           
## [44569] Flagship store Flagship store MBR            Flagship store
## [44573] MBR            Flagship store e-Shop         e-Shop        
## [44577] e-Shop         e-Shop         Flagship store e-Shop        
## [44581] Flagship store e-Shop         e-Shop         e-Shop        
## [44585] Flagship store Flagship store Flagship store MBR           
## [44589] MBR            e-Shop         e-Shop         e-Shop        
## [44593] e-Shop         e-Shop         MBR            e-Shop        
## [44597] TeleShop       TeleShop       TeleShop       TeleShop      
## [44601] TeleShop       TeleShop       TeleShop       TeleShop      
## [44605] TeleShop       MBR            MBR            MBR           
## [44609] MBR            Flagship store MBR            Flagship store
## [44613] MBR            Flagship store TeleShop       TeleShop      
## [44617] Flagship store Flagship store TeleShop       TeleShop      
## [44621] e-Shop         e-Shop         e-Shop         e-Shop        
## [44625] e-Shop         e-Shop         e-Shop         MBR           
## [44629] MBR            e-Shop         MBR            MBR           
## [44633] MBR            e-Shop         TeleShop       TeleShop      
## [44637] TeleShop       TeleShop       e-Shop         MBR           
## [44641] e-Shop         MBR            MBR            e-Shop        
## [44645] MBR            e-Shop         MBR            e-Shop        
## [44649] MBR            MBR            MBR            MBR           
## [44653] MBR            MBR            e-Shop         MBR           
## [44657] Flagship store Flagship store e-Shop         e-Shop        
## [44661] TeleShop       Flagship store e-Shop         e-Shop        
## [44665] Flagship store e-Shop         e-Shop         e-Shop        
## [44669] TeleShop       e-Shop         Flagship store Flagship store
## [44673] MBR            MBR            Flagship store MBR           
## [44677] Flagship store MBR            MBR            MBR           
## [44681] Flagship store MBR            MBR            MBR           
## [44685] e-Shop         e-Shop         e-Shop         e-Shop        
## [44689] e-Shop         MBR            MBR            e-Shop        
## [44693] MBR            MBR            e-Shop         e-Shop        
## [44697] e-Shop         e-Shop         MBR            MBR           
## [44701] MBR            MBR            e-Shop         e-Shop        
## [44705] MBR            e-Shop         e-Shop         e-Shop        
## [44709] MBR            MBR            e-Shop         e-Shop        
## [44713] MBR            e-Shop         TeleShop       MBR           
## [44717] e-Shop         e-Shop         TeleShop       e-Shop        
## [44721] TeleShop       MBR            e-Shop         e-Shop        
## [44725] MBR            e-Shop         e-Shop         MBR           
## [44729] Flagship store MBR            MBR            e-Shop        
## [44733] MBR            MBR            e-Shop         e-Shop        
## [44737] Flagship store TeleShop       TeleShop       e-Shop        
## [44741] e-Shop         e-Shop         e-Shop         e-Shop        
## [44745] e-Shop         e-Shop         e-Shop         e-Shop        
## [44749] e-Shop         e-Shop         e-Shop         e-Shop        
## [44753] e-Shop         MBR            e-Shop         e-Shop        
## [44757] MBR            MBR            e-Shop         TeleShop      
## [44761] TeleShop       e-Shop         e-Shop         TeleShop      
## [44765] Flagship store Flagship store Flagship store e-Shop        
## [44769] Flagship store Flagship store e-Shop         e-Shop        
## [44773] e-Shop         e-Shop         e-Shop         e-Shop        
## [44777] e-Shop         e-Shop         Flagship store e-Shop        
## [44781] e-Shop         e-Shop         Flagship store e-Shop        
## [44785] e-Shop         e-Shop         e-Shop         e-Shop        
## [44789] e-Shop         e-Shop         e-Shop         MBR           
## [44793] Flagship store MBR            MBR            TeleShop      
## [44797] Flagship store TeleShop       MBR            MBR           
## [44801] MBR            TeleShop       e-Shop         MBR           
## [44805] e-Shop         MBR            e-Shop         e-Shop        
## [44809] TeleShop       Flagship store e-Shop         Flagship store
## [44813] Flagship store e-Shop         e-Shop         e-Shop        
## [44817] e-Shop         Flagship store e-Shop         TeleShop      
## [44821] e-Shop         TeleShop       Flagship store e-Shop        
## [44825] Flagship store TeleShop       TeleShop       Flagship store
## [44829] Flagship store Flagship store Flagship store Flagship store
## [44833] Flagship store Flagship store Flagship store Flagship store
## [44837] e-Shop         e-Shop         e-Shop         MBR           
## [44841] e-Shop         e-Shop         e-Shop         e-Shop        
## [44845] e-Shop         e-Shop         e-Shop         e-Shop        
## [44849] MBR            e-Shop         MBR            e-Shop        
## [44853] e-Shop         e-Shop         MBR            e-Shop        
## [44857] e-Shop         e-Shop         e-Shop         MBR           
## [44861] e-Shop         e-Shop         e-Shop         TeleShop      
## [44865] TeleShop       e-Shop         TeleShop       TeleShop      
## [44869] e-Shop         e-Shop         TeleShop       e-Shop        
## [44873] Flagship store e-Shop         e-Shop         TeleShop      
## [44877] Flagship store TeleShop       TeleShop       TeleShop      
## [44881] TeleShop       TeleShop       TeleShop       e-Shop        
## [44885] MBR            e-Shop         e-Shop         e-Shop        
## [44889] e-Shop         MBR            MBR            e-Shop        
## [44893] e-Shop         e-Shop         e-Shop         TeleShop      
## [44897] e-Shop         TeleShop       TeleShop       e-Shop        
## [44901] e-Shop         TeleShop       e-Shop         e-Shop        
## [44905] e-Shop         e-Shop         Flagship store Flagship store
## [44909] TeleShop       Flagship store TeleShop       Flagship store
## [44913] Flagship store TeleShop      
## Levels: e-Shop Flagship store MBR TeleShop
#is.factor(Customer_Final$Store_type)

Customer_Final[sapply(Customer_Final, is.character)] <- lapply(Customer_Final[sapply(Customer_Final, is.character)],as.factor)
str(Customer_Final)
## 'data.frame':    44914 obs. of  16 variables:
##  $ cust_id          : int  266783 266783 266783 266783 266783 266783 266783 266783 266783 266783 ...
##  $ prod_subcat_code : int  1 1 4 1 1 4 1 4 4 1 ...
##  $ transaction_id   : num  2.59e+10 2.59e+10 9.85e+10 2.59e+10 2.59e+10 ...
##  $ tran_date        : Factor w/ 1128 levels "1/1/2012","1/1/2013",..: 617 580 510 617 617 450 580 510 450 580 ...
##  $ prod_cat_code    : int  2 2 1 2 2 1 2 1 1 2 ...
##  $ Qty              : int  -4 4 3 -4 -4 1 4 3 1 4 ...
##  $ Rate             : int  -1321 1321 93 -1321 -1321 869 1321 93 869 1321 ...
##  $ Tax              : num  554.8 554.8 29.3 554.8 554.8 ...
##  $ total_amt        : num  -5839 5839 308 -5839 -5839 ...
##  $ Store_type       : Factor w/ 4 levels "e-Shop","Flagship store",..: 1 1 4 1 1 1 1 4 1 1 ...
##  $ prod_cat         : Factor w/ 6 levels "Bags","Books",..: 3 3 1 3 3 1 3 1 1 3 ...
##  $ prod_sub_cat_code: int  4 4 1 1 3 4 3 4 1 1 ...
##  $ prod_subcat      : Factor w/ 18 levels "Academic","Audio and video",..: 13 13 13 18 11 18 11 18 13 18 ...
##  $ DOB              : Factor w/ 3721 levels "01-01-1972","01-01-1978",..: 47 47 47 47 47 47 47 47 47 47 ...
##  $ Gender           : Factor w/ 3 levels "","F","M": 3 3 3 3 3 3 3 3 3 3 ...
##  $ city_code        : int  4 4 4 4 4 4 4 4 4 4 ...
info <- Customer_Final[,c("prod_cat","prod_subcat","Gender","Store_type")]
table(info)
## , , Gender = , Store_type = e-Shop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                   0               0    0       0        0      0
##   Clothing                0               0    0       0        0      0
##   Electronics             0               0    0       0        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0    1       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0    0       0
##   Books                    0   0       0          0    0       0    0       0
##   Clothing                 0   0       0          0    2       0    2       0
##   Electronics              0   0       0          0    0       0    0       0
##   Footwear                 0   0       0          0    0       0    0       0
##   Home and kitchen         0   0       0          1    0       1    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0     0
##   Books                      0                   0     0     0
##   Clothing                   0                   0     0     2
##   Electronics                0                   0     0     0
##   Footwear                   0                   0     0     0
##   Home and kitchen           0                   0     1     0
## 
## , , Gender = F, Store_type = e-Shop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                 182               0    0       0      182    182
##   Clothing                0               0    0       0        0      0
##   Electronics             0             639    0     639        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0  182       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  768       0
##   Books                    0 182     182          0    0       0    0       0
##   Clothing                 0   0       0          0  576       0  576       0
##   Electronics            639   0       0          0    0       0    0     639
##   Footwear                 0   0       0          0  202       0  202       0
##   Home and kitchen         0   0       0        182    0     182    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   768
##   Books                    182                   0     0     0
##   Clothing                   0                   0     0   576
##   Electronics                0                 639     0     0
##   Footwear                   0                   0     0   202
##   Home and kitchen           0                   0   182     0
## 
## , , Gender = M, Store_type = e-Shop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                 200               0    0       0      200    200
##   Clothing                0               0    0       0        0      0
##   Electronics             0             589    0     589        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0  206       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  860       0
##   Books                    0 200     200          0    0       0    0       0
##   Clothing                 0   0       0          0  596       0  596       0
##   Electronics            589   0       0          0    0       0    0     589
##   Footwear                 0   0       0          0  213       0  213       0
##   Home and kitchen         0   0       0        206    0     206    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   860
##   Books                    200                   0     0     0
##   Clothing                   0                   0     0   596
##   Electronics                0                 589     0     0
##   Footwear                   0                   0     0   213
##   Home and kitchen           0                   0   206     0
## 
## , , Gender = , Store_type = Flagship store
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                   0               0    0       0        0      0
##   Clothing                0               0    0       0        0      0
##   Electronics             0               0    0       0        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0    0       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0    0       0
##   Books                    0   0       0          0    0       0    0       0
##   Clothing                 0   0       0          0    0       0    0       0
##   Electronics              0   0       0          0    0       0    0       0
##   Footwear                 0   0       0          0    0       0    0       0
##   Home and kitchen         0   0       0          0    0       0    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0     0
##   Books                      0                   0     0     0
##   Clothing                   0                   0     0     0
##   Electronics                0                   0     0     0
##   Footwear                   0                   0     0     0
##   Home and kitchen           0                   0     0     0
## 
## , , Gender = F, Store_type = Flagship store
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                  94               0    0       0       94     94
##   Clothing                0               0    0       0        0      0
##   Electronics             0             307    0     307        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0   92       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  423       0
##   Books                    0  94      94          0    0       0    0       0
##   Clothing                 0   0       0          0  264       0  264       0
##   Electronics            307   0       0          0    0       0    0     307
##   Footwear                 0   0       0          0   90       0   90       0
##   Home and kitchen         0   0       0         92    0      92    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   423
##   Books                     94                   0     0     0
##   Clothing                   0                   0     0   264
##   Electronics                0                 307     0     0
##   Footwear                   0                   0     0    90
##   Home and kitchen           0                   0    92     0
## 
## , , Gender = M, Store_type = Flagship store
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                 107               0    0       0      107    107
##   Clothing                0               0    0       0        0      0
##   Electronics             0             289    0     289        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0   97       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  384       0
##   Books                    0 107     107          0    0       0    0       0
##   Clothing                 0   0       0          0  288       0  288       0
##   Electronics            289   0       0          0    0       0    0     289
##   Footwear                 0   0       0          0  103       0  103       0
##   Home and kitchen         0   0       0         97    0      97    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   384
##   Books                    107                   0     0     0
##   Clothing                   0                   0     0   288
##   Electronics                0                 289     0     0
##   Footwear                   0                   0     0   103
##   Home and kitchen           0                   0    97     0
## 
## , , Gender = , Store_type = MBR
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                   0               0    0       0        0      0
##   Clothing                0               0    0       0        0      0
##   Electronics             0               0    0       0        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0    0       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0    1       0
##   Books                    0   0       0          0    0       0    0       0
##   Clothing                 0   0       0          0    0       0    0       0
##   Electronics              0   0       0          0    0       0    0       0
##   Footwear                 0   0       0          0    0       0    0       0
##   Home and kitchen         0   0       0          0    0       0    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0     1
##   Books                      0                   0     0     0
##   Clothing                   0                   0     0     0
##   Electronics                0                   0     0     0
##   Footwear                   0                   0     0     0
##   Home and kitchen           0                   0     0     0
## 
## , , Gender = F, Store_type = MBR
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                  94               0    0       0       94     94
##   Clothing                0               0    0       0        0      0
##   Electronics             0             309    0     309        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0  107       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  393       0
##   Books                    0  94      94          0    0       0    0       0
##   Clothing                 0   0       0          0  292       0  292       0
##   Electronics            309   0       0          0    0       0    0     309
##   Footwear                 0   0       0          0  101       0  101       0
##   Home and kitchen         0   0       0        107    0     107    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   393
##   Books                     94                   0     0     0
##   Clothing                   0                   0     0   292
##   Electronics                0                 309     0     0
##   Footwear                   0                   0     0   101
##   Home and kitchen           0                   0   107     0
## 
## , , Gender = M, Store_type = MBR
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                  94               0    0       0       94     94
##   Clothing                0               0    0       0        0      0
##   Electronics             0             313    0     313        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0   98       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  395       0
##   Books                    0  94      94          0    0       0    0       0
##   Clothing                 0   0       0          0  340       0  340       0
##   Electronics            313   0       0          0    0       0    0     313
##   Footwear                 0   0       0          0  101       0  101       0
##   Home and kitchen         0   0       0         98    0      98    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   395
##   Books                     94                   0     0     0
##   Clothing                   0                   0     0   340
##   Electronics                0                 313     0     0
##   Footwear                   0                   0     0   101
##   Home and kitchen           0                   0    98     0
## 
## , , Gender = , Store_type = TeleShop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                   0               0    0       0        0      0
##   Clothing                0               0    0       0        0      0
##   Electronics             0               1    0       1        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0    0       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0    0       0
##   Books                    0   0       0          0    0       0    0       0
##   Clothing                 0   0       0          0    0       0    0       0
##   Electronics              1   0       0          0    0       0    0       1
##   Footwear                 0   0       0          0    0       0    0       0
##   Home and kitchen         0   0       0          0    0       0    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0     0
##   Books                      0                   0     0     0
##   Clothing                   0                   0     0     0
##   Electronics                0                   1     0     0
##   Footwear                   0                   0     0     0
##   Home and kitchen           0                   0     0     0
## 
## , , Gender = F, Store_type = TeleShop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                  98               0    0       0       98     98
##   Clothing                0               0    0       0        0      0
##   Electronics             0             298    0     298        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0  103       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  355       0
##   Books                    0  98      98          0    0       0    0       0
##   Clothing                 0   0       0          0  292       0  292       0
##   Electronics            298   0       0          0    0       0    0     298
##   Footwear                 0   0       0          0   84       0   84       0
##   Home and kitchen         0   0       0        103    0     103    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   355
##   Books                     98                   0     0     0
##   Clothing                   0                   0     0   292
##   Electronics                0                 298     0     0
##   Footwear                   0                   0     0    84
##   Home and kitchen           0                   0   103     0
## 
## , , Gender = M, Store_type = TeleShop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                  89               0    0       0       89     89
##   Clothing                0               0    0       0        0      0
##   Electronics             0             322    0     322        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0  103       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  423       0
##   Books                    0  89      89          0    0       0    0       0
##   Clothing                 0   0       0          0  300       0  300       0
##   Electronics            322   0       0          0    0       0    0     322
##   Footwear                 0   0       0          0  113       0  113       0
##   Home and kitchen         0   0       0        103    0     103    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   423
##   Books                     89                   0     0     0
##   Clothing                   0                   0     0   300
##   Electronics                0                 322     0     0
##   Footwear                   0                   0     0   113
##   Home and kitchen           0                   0   103     0
library(plyr)
## ------------------------------------------------------------------------------
## You have loaded plyr after dplyr - this is likely to cause problems.
## If you need functions from both plyr and dplyr, please load plyr first, then dplyr:
## library(plyr); library(dplyr)
## ------------------------------------------------------------------------------
## 
## Attaching package: 'plyr'
## The following objects are masked from 'package:dplyr':
## 
##     arrange, count, desc, failwith, id, mutate, rename, summarise,
##     summarize
count(info$prod_cat)
count(info$prod_subcat)
count(info$Gender)
count(info$Store_type)

#3. Generate histograms for all continuous variables and frequency bars for categorical variables

library(ggplot2)

sum(is.na(info))
## [1] 0
sum(is.na(info1))
## [1] 0
table(info)
## , , Gender = , Store_type = e-Shop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                   0               0    0       0        0      0
##   Clothing                0               0    0       0        0      0
##   Electronics             0               0    0       0        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0    1       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0    0       0
##   Books                    0   0       0          0    0       0    0       0
##   Clothing                 0   0       0          0    2       0    2       0
##   Electronics              0   0       0          0    0       0    0       0
##   Footwear                 0   0       0          0    0       0    0       0
##   Home and kitchen         0   0       0          1    0       1    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0     0
##   Books                      0                   0     0     0
##   Clothing                   0                   0     0     2
##   Electronics                0                   0     0     0
##   Footwear                   0                   0     0     0
##   Home and kitchen           0                   0     1     0
## 
## , , Gender = F, Store_type = e-Shop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                 182               0    0       0      182    182
##   Clothing                0               0    0       0        0      0
##   Electronics             0             639    0     639        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0  182       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  768       0
##   Books                    0 182     182          0    0       0    0       0
##   Clothing                 0   0       0          0  576       0  576       0
##   Electronics            639   0       0          0    0       0    0     639
##   Footwear                 0   0       0          0  202       0  202       0
##   Home and kitchen         0   0       0        182    0     182    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   768
##   Books                    182                   0     0     0
##   Clothing                   0                   0     0   576
##   Electronics                0                 639     0     0
##   Footwear                   0                   0     0   202
##   Home and kitchen           0                   0   182     0
## 
## , , Gender = M, Store_type = e-Shop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                 200               0    0       0      200    200
##   Clothing                0               0    0       0        0      0
##   Electronics             0             589    0     589        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0  206       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  860       0
##   Books                    0 200     200          0    0       0    0       0
##   Clothing                 0   0       0          0  596       0  596       0
##   Electronics            589   0       0          0    0       0    0     589
##   Footwear                 0   0       0          0  213       0  213       0
##   Home and kitchen         0   0       0        206    0     206    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   860
##   Books                    200                   0     0     0
##   Clothing                   0                   0     0   596
##   Electronics                0                 589     0     0
##   Footwear                   0                   0     0   213
##   Home and kitchen           0                   0   206     0
## 
## , , Gender = , Store_type = Flagship store
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                   0               0    0       0        0      0
##   Clothing                0               0    0       0        0      0
##   Electronics             0               0    0       0        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0    0       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0    0       0
##   Books                    0   0       0          0    0       0    0       0
##   Clothing                 0   0       0          0    0       0    0       0
##   Electronics              0   0       0          0    0       0    0       0
##   Footwear                 0   0       0          0    0       0    0       0
##   Home and kitchen         0   0       0          0    0       0    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0     0
##   Books                      0                   0     0     0
##   Clothing                   0                   0     0     0
##   Electronics                0                   0     0     0
##   Footwear                   0                   0     0     0
##   Home and kitchen           0                   0     0     0
## 
## , , Gender = F, Store_type = Flagship store
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                  94               0    0       0       94     94
##   Clothing                0               0    0       0        0      0
##   Electronics             0             307    0     307        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0   92       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  423       0
##   Books                    0  94      94          0    0       0    0       0
##   Clothing                 0   0       0          0  264       0  264       0
##   Electronics            307   0       0          0    0       0    0     307
##   Footwear                 0   0       0          0   90       0   90       0
##   Home and kitchen         0   0       0         92    0      92    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   423
##   Books                     94                   0     0     0
##   Clothing                   0                   0     0   264
##   Electronics                0                 307     0     0
##   Footwear                   0                   0     0    90
##   Home and kitchen           0                   0    92     0
## 
## , , Gender = M, Store_type = Flagship store
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                 107               0    0       0      107    107
##   Clothing                0               0    0       0        0      0
##   Electronics             0             289    0     289        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0   97       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  384       0
##   Books                    0 107     107          0    0       0    0       0
##   Clothing                 0   0       0          0  288       0  288       0
##   Electronics            289   0       0          0    0       0    0     289
##   Footwear                 0   0       0          0  103       0  103       0
##   Home and kitchen         0   0       0         97    0      97    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   384
##   Books                    107                   0     0     0
##   Clothing                   0                   0     0   288
##   Electronics                0                 289     0     0
##   Footwear                   0                   0     0   103
##   Home and kitchen           0                   0    97     0
## 
## , , Gender = , Store_type = MBR
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                   0               0    0       0        0      0
##   Clothing                0               0    0       0        0      0
##   Electronics             0               0    0       0        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0    0       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0    1       0
##   Books                    0   0       0          0    0       0    0       0
##   Clothing                 0   0       0          0    0       0    0       0
##   Electronics              0   0       0          0    0       0    0       0
##   Footwear                 0   0       0          0    0       0    0       0
##   Home and kitchen         0   0       0          0    0       0    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0     1
##   Books                      0                   0     0     0
##   Clothing                   0                   0     0     0
##   Electronics                0                   0     0     0
##   Footwear                   0                   0     0     0
##   Home and kitchen           0                   0     0     0
## 
## , , Gender = F, Store_type = MBR
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                  94               0    0       0       94     94
##   Clothing                0               0    0       0        0      0
##   Electronics             0             309    0     309        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0  107       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  393       0
##   Books                    0  94      94          0    0       0    0       0
##   Clothing                 0   0       0          0  292       0  292       0
##   Electronics            309   0       0          0    0       0    0     309
##   Footwear                 0   0       0          0  101       0  101       0
##   Home and kitchen         0   0       0        107    0     107    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   393
##   Books                     94                   0     0     0
##   Clothing                   0                   0     0   292
##   Electronics                0                 309     0     0
##   Footwear                   0                   0     0   101
##   Home and kitchen           0                   0   107     0
## 
## , , Gender = M, Store_type = MBR
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                  94               0    0       0       94     94
##   Clothing                0               0    0       0        0      0
##   Electronics             0             313    0     313        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0   98       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  395       0
##   Books                    0  94      94          0    0       0    0       0
##   Clothing                 0   0       0          0  340       0  340       0
##   Electronics            313   0       0          0    0       0    0     313
##   Footwear                 0   0       0          0  101       0  101       0
##   Home and kitchen         0   0       0         98    0      98    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   395
##   Books                     94                   0     0     0
##   Clothing                   0                   0     0   340
##   Electronics                0                 313     0     0
##   Footwear                   0                   0     0   101
##   Home and kitchen           0                   0    98     0
## 
## , , Gender = , Store_type = TeleShop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                   0               0    0       0        0      0
##   Clothing                0               0    0       0        0      0
##   Electronics             0               1    0       1        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0    0       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0    0       0
##   Books                    0   0       0          0    0       0    0       0
##   Clothing                 0   0       0          0    0       0    0       0
##   Electronics              1   0       0          0    0       0    0       1
##   Footwear                 0   0       0          0    0       0    0       0
##   Home and kitchen         0   0       0          0    0       0    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0     0
##   Books                      0                   0     0     0
##   Clothing                   0                   0     0     0
##   Electronics                0                   1     0     0
##   Footwear                   0                   0     0     0
##   Home and kitchen           0                   0     0     0
## 
## , , Gender = F, Store_type = TeleShop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                  98               0    0       0       98     98
##   Clothing                0               0    0       0        0      0
##   Electronics             0             298    0     298        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0  103       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  355       0
##   Books                    0  98      98          0    0       0    0       0
##   Clothing                 0   0       0          0  292       0  292       0
##   Electronics            298   0       0          0    0       0    0     298
##   Footwear                 0   0       0          0   84       0   84       0
##   Home and kitchen         0   0       0        103    0     103    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   355
##   Books                     98                   0     0     0
##   Clothing                   0                   0     0   292
##   Electronics                0                 298     0     0
##   Footwear                   0                   0     0    84
##   Home and kitchen           0                   0   103     0
## 
## , , Gender = M, Store_type = TeleShop
## 
##                   prod_subcat
## prod_cat           Academic Audio and video Bath Cameras Children Comics
##   Bags                    0               0    0       0        0      0
##   Books                  89               0    0       0       89     89
##   Clothing                0               0    0       0        0      0
##   Electronics             0             322    0     322        0      0
##   Footwear                0               0    0       0        0      0
##   Home and kitchen        0               0  103       0        0      0
##                   prod_subcat
## prod_cat           Computers DIY Fiction Furnishing Kids Kitchen Mens Mobiles
##   Bags                     0   0       0          0    0       0  423       0
##   Books                    0  89      89          0    0       0    0       0
##   Clothing                 0   0       0          0  300       0  300       0
##   Electronics            322   0       0          0    0       0    0     322
##   Footwear                 0   0       0          0  113       0  113       0
##   Home and kitchen         0   0       0        103    0     103    0       0
##                   prod_subcat
## prod_cat           Non-Fiction Personal Appliances Tools Women
##   Bags                       0                   0     0   423
##   Books                     89                   0     0     0
##   Clothing                   0                   0     0   300
##   Electronics                0                 322     0     0
##   Footwear                   0                   0     0   113
##   Home and kitchen           0                   0   103     0
typeof(info)
## [1] "list"
class(info)
## [1] "data.frame"
str(info)
## 'data.frame':    44914 obs. of  4 variables:
##  $ prod_cat   : Factor w/ 6 levels "Bags","Books",..: 3 3 1 3 3 1 3 1 1 3 ...
##  $ prod_subcat: Factor w/ 18 levels "Academic","Audio and video",..: 13 13 13 18 11 18 11 18 13 18 ...
##  $ Gender     : Factor w/ 3 levels "","F","M": 3 3 3 3 3 3 3 3 3 3 ...
##  $ Store_type : Factor w/ 4 levels "e-Shop","Flagship store",..: 1 1 4 1 1 1 1 4 1 1 ...
library(ggplot2)

info[sapply(info,is.character)] <- lapply(info[sapply(info, is.character)],as.factor)

plotinfo<- function(x){

a <-ggplot2::qplot(x)
  plot(a)
  
}

sapply(X = info,FUN = plotinfo)

##             prod_cat         prod_subcat      Gender           Store_type      
## data        data.frame,0     data.frame,0     data.frame,0     data.frame,0    
## layers      list,1           list,1           list,1           list,1          
## scales      ScalesList,2     ScalesList,2     ScalesList,2     ScalesList,2    
## mapping     ~x               ~x               ~x               ~x              
## theme       list,0           list,0           list,0           list,0          
## coordinates CoordCartesian,5 CoordCartesian,5 CoordCartesian,5 CoordCartesian,5
## facet       FacetNull,2      FacetNull,2      FacetNull,2      FacetNull,2     
## plot_env    ?                ?                ?                ?               
## labels      list,3           list,3           list,3           list,3

#4. Calculate the following information using the merged dataset : #a. Time period of the available transaction data

str(Customer_Final)
## 'data.frame':    44914 obs. of  16 variables:
##  $ cust_id          : int  266783 266783 266783 266783 266783 266783 266783 266783 266783 266783 ...
##  $ prod_subcat_code : int  1 1 4 1 1 4 1 4 4 1 ...
##  $ transaction_id   : num  2.59e+10 2.59e+10 9.85e+10 2.59e+10 2.59e+10 ...
##  $ tran_date        : Factor w/ 1128 levels "1/1/2012","1/1/2013",..: 617 580 510 617 617 450 580 510 450 580 ...
##  $ prod_cat_code    : int  2 2 1 2 2 1 2 1 1 2 ...
##  $ Qty              : int  -4 4 3 -4 -4 1 4 3 1 4 ...
##  $ Rate             : int  -1321 1321 93 -1321 -1321 869 1321 93 869 1321 ...
##  $ Tax              : num  554.8 554.8 29.3 554.8 554.8 ...
##  $ total_amt        : num  -5839 5839 308 -5839 -5839 ...
##  $ Store_type       : Factor w/ 4 levels "e-Shop","Flagship store",..: 1 1 4 1 1 1 1 4 1 1 ...
##  $ prod_cat         : Factor w/ 6 levels "Bags","Books",..: 3 3 1 3 3 1 3 1 1 3 ...
##  $ prod_sub_cat_code: int  4 4 1 1 3 4 3 4 1 1 ...
##  $ prod_subcat      : Factor w/ 18 levels "Academic","Audio and video",..: 13 13 13 18 11 18 11 18 13 18 ...
##  $ DOB              : Factor w/ 3721 levels "01-01-1972","01-01-1978",..: 47 47 47 47 47 47 47 47 47 47 ...
##  $ Gender           : Factor w/ 3 levels "","F","M": 3 3 3 3 3 3 3 3 3 3 ...
##  $ city_code        : int  4 4 4 4 4 4 4 4 4 4 ...
as.Date(Customer_Final$tran_date,format = "%d-%m-%Y","%d/%m/%Y")
##     [1] "2011-09-24" "2011-09-23" "2012-10-21" "2011-09-24" "2011-09-24"
##     [6] "2013-02-20" "2011-09-23" "2012-10-21" "2013-02-20" "2011-09-23"
##    [11] NA           NA           NA           "2013-02-13" "2011-10-24"
##    [16] NA           NA           "2013-02-13" NA           "2011-10-24"
##    [21] "2011-03-15" NA           NA           "2013-02-13" "2011-03-15"
##    [26] "2011-09-13" "2011-09-13" NA           NA           NA          
##    [31] "2012-10-31" "2012-10-31" "2012-10-31" "2012-06-28" "2012-01-30"
##    [36] "2012-01-30" "2012-01-30" NA           "2011-03-18" NA          
##    [41] "2011-03-18" "2012-06-28" NA           "2011-04-22" NA          
##    [46] "2011-03-18" NA           "2012-01-30" "2012-06-28" "2011-04-22"
##    [51] NA           "2012-01-30" "2011-03-18" "2012-06-28" NA          
##    [56] NA           "2011-03-18" "2012-06-28" NA           NA          
##    [61] NA           NA           NA           NA           NA          
##    [66] NA           NA           NA           NA           NA          
##    [71] NA           NA           NA           NA           NA          
##    [76] NA           "2013-02-21" NA           "2013-02-21" NA          
##    [81] "2013-11-28" NA           "2013-02-21" "2013-11-28" "2011-11-14"
##    [86] "2011-11-14" "2012-12-25" "2012-12-25" "2011-11-14" NA          
##    [91] "2013-02-23" NA           NA           "2013-02-23" "2013-02-23"
##    [96] NA           "2013-02-23" NA           NA           NA          
##   [101] "2013-02-23" NA           NA           NA           "2011-02-23"
##   [106] NA           "2011-02-23" NA           NA           NA          
##   [111] NA           "2012-11-22" "2012-11-22" NA           NA          
##   [116] NA           NA           "2011-04-17" NA           NA          
##   [121] "2011-04-17" "2011-04-17" "2012-11-22" "2012-09-14" "2012-11-22"
##   [126] "2012-09-14" "2012-11-22" "2011-07-13" "2011-07-13" "2011-07-13"
##   [131] NA           "2011-07-13" "2011-07-13" NA           "2011-07-13"
##   [136] NA           NA           NA           NA           NA          
##   [141] "2013-03-21" NA           "2013-03-21" NA           NA          
##   [146] NA           NA           NA           NA           NA          
##   [151] NA           NA           NA           NA           NA          
##   [156] NA           "2012-07-26" "2012-07-26" "2012-01-17" "2012-01-17"
##   [161] "2012-01-17" "2012-01-17" "2012-01-17" "2012-07-26" "2012-07-26"
##   [166] "2012-07-26" NA           "2011-04-16" "2011-04-16" "2011-04-16"
##   [171] "2011-04-16" NA           NA           NA           "2012-01-25"
##   [176] "2011-04-16" "2012-01-25" NA           "2012-01-25" "2011-11-23"
##   [181] "2011-11-23" NA           NA           NA           NA          
##   [186] NA           NA           NA           "2013-12-27" "2011-12-15"
##   [191] NA           "2013-12-27" "2012-03-16" "2013-12-27" "2012-03-16"
##   [196] "2011-12-15" "2011-12-15" "2012-03-16" NA           "2013-12-27"
##   [201] "2012-03-16" "2013-12-27" "2011-12-15" "2013-12-27" "2012-03-16"
##   [206] NA           NA           NA           NA           NA          
##   [211] NA           NA           NA           "2011-07-18" NA          
##   [216] "2011-07-18" "2011-07-18" NA           NA           NA          
##   [221] NA           NA           NA           "2013-04-27" "2011-07-31"
##   [226] "2011-07-31" "2013-04-27" "2011-07-31" NA           NA          
##   [231] NA           NA           NA           NA           "2013-02-19"
##   [236] "2013-02-19" NA           NA           "2011-03-24" "2011-03-24"
##   [241] "2011-06-13" "2011-06-13" NA           NA           NA          
##   [246] NA           NA           NA           NA           NA          
##   [251] "2014-01-18" NA           NA           "2014-01-18" NA          
##   [256] NA           NA           NA           "2014-01-18" NA          
##   [261] NA           "2014-01-18" NA           "2014-01-18" NA          
##   [266] "2012-07-26" "2011-10-19" "2012-07-26" "2011-10-19" "2012-07-26"
##   [271] "2012-07-26" "2012-07-26" NA           NA           NA          
##   [276] NA           NA           NA           NA           NA          
##   [281] "2012-03-16" "2012-03-16" "2012-03-16" "2011-08-30" "2011-08-28"
##   [286] "2011-02-21" "2011-08-21" "2011-08-28" "2011-08-21" "2011-08-21"
##   [291] "2011-08-28" "2011-08-30" "2011-02-21" "2011-08-30" "2012-03-24"
##   [296] NA           "2012-03-24" NA           "2012-12-20" "2012-12-20"
##   [301] "2012-12-20" "2012-12-20" "2012-12-20" "2012-12-20" NA          
##   [306] NA           NA           NA           NA           NA          
##   [311] "2011-02-16" "2011-02-16" NA           "2012-01-20" "2012-01-20"
##   [316] NA           NA           NA           NA           NA          
##   [321] NA           NA           NA           NA           "2012-01-20"
##   [326] NA           NA           "2014-01-26" NA           NA          
##   [331] NA           "2014-01-26" NA           NA           "2014-01-26"
##   [336] NA           NA           "2012-07-24" "2011-08-15" NA          
##   [341] "2011-08-15" "2012-07-24" "2012-07-24" NA           "2012-07-24"
##   [346] "2012-07-24" "2012-07-24" "2011-05-30" "2013-11-17" "2011-05-30"
##   [351] "2011-05-30" "2011-05-30" "2011-05-30" "2011-05-30" "2013-11-17"
##   [356] "2013-11-17" "2013-11-17" "2013-11-17" "2012-05-23" "2012-05-23"
##   [361] "2012-05-23" "2012-05-23" "2012-05-23" "2013-12-29" "2013-12-29"
##   [366] "2011-06-18" NA           "2011-12-14" "2011-12-14" "2011-12-14"
##   [371] "2011-12-14" "2013-12-29" NA           "2012-05-31" "2011-12-14"
##   [376] "2011-06-18" "2012-05-31" "2012-05-31" "2011-09-13" "2011-09-13"
##   [381] "2011-09-13" "2011-09-13" NA           NA           NA          
##   [386] NA           NA           NA           NA           NA          
##   [391] NA           NA           "2013-05-19" "2013-05-19" "2013-07-25"
##   [396] "2013-07-25" NA           "2013-07-25" "2013-07-25" NA          
##   [401] NA           "2013-12-15" "2014-02-20" "2014-02-20" "2013-12-15"
##   [406] "2014-02-20" "2013-12-15" "2013-12-15" NA           "2012-07-30"
##   [411] NA           NA           "2012-11-25" NA           NA          
##   [416] "2012-07-30" NA           NA           NA           NA          
##   [421] "2012-11-25" NA           NA           "2012-11-25" NA          
##   [426] "2012-07-30" "2012-07-30" "2012-07-30" NA           "2012-11-25"
##   [431] "2012-11-25" NA           NA           "2011-05-18" NA          
##   [436] "2011-05-18" NA           NA           "2013-02-24" "2011-01-25"
##   [441] "2011-01-25" "2013-02-24" "2013-02-24" NA           NA          
##   [446] NA           NA           NA           NA           NA          
##   [451] "2012-12-29" "2012-12-29" "2012-12-29" "2012-12-29" "2012-12-29"
##   [456] "2011-04-25" "2013-11-24" "2011-04-25" "2013-11-24" "2013-11-24"
##   [461] "2013-11-24" "2012-03-17" "2011-09-20" "2012-03-15" "2012-03-15"
##   [466] "2011-09-20" "2011-09-20" "2011-09-20" "2012-03-20" "2012-03-17"
##   [471] "2011-09-20" "2012-03-20" "2013-12-29" "2013-12-29" "2013-12-29"
##   [476] "2012-01-26" "2012-04-24" "2012-12-14" "2012-01-26" "2012-01-26"
##   [481] "2011-05-29" "2012-06-20" "2012-04-22" "2012-04-22" "2011-05-29"
##   [486] "2012-04-24" "2012-06-20" "2012-04-20" "2012-04-20" "2012-04-20"
##   [491] "2012-12-14" "2012-04-24" "2012-06-20" "2012-01-26" "2011-05-29"
##   [496] "2011-05-29" "2012-04-22" "2012-04-20" "2012-06-20" "2012-04-22"
##   [501] "2011-05-29" "2012-04-24" "2012-06-20" "2012-12-14" "2012-06-20"
##   [506] NA           "2011-06-19" "2011-06-19" "2011-06-19" "2011-06-19"
##   [511] "2011-06-19" NA           NA           NA           NA          
##   [516] "2013-04-27" "2013-04-27" "2013-06-23" "2013-06-23" NA          
##   [521] "2011-12-23" "2013-06-23" NA           "2013-06-23" "2011-12-23"
##   [526] NA           "2013-06-23" NA           NA           "2011-06-20"
##   [531] "2011-06-20" "2011-06-20" "2013-05-26" "2013-05-26" "2013-05-26"
##   [536] "2013-05-26" "2013-05-26" "2012-07-26" NA           "2012-07-26"
##   [541] NA           "2012-07-26" "2012-07-26" "2012-07-26" NA          
##   [546] "2012-12-20" NA           "2012-12-20" NA           NA          
##   [551] NA           "2013-05-14" NA           NA           NA          
##   [556] NA           "2013-05-14" NA           NA           NA          
##   [561] NA           NA           "2013-05-14" NA           "2013-05-14"
##   [566] "2013-05-14" "2013-05-14" NA           "2011-10-24" "2012-06-27"
##   [571] "2012-06-27" "2011-10-19" "2011-10-24" NA           "2011-10-19"
##   [576] "2012-06-27" NA           "2012-01-28" "2012-01-28" "2012-01-28"
##   [581] NA           "2011-01-26" "2012-04-27" NA           NA          
##   [586] "2011-01-26" NA           "2012-04-27" NA           "2012-04-27"
##   [591] NA           "2012-04-27" NA           NA           NA          
##   [596] "2012-04-27" "2011-09-20" "2011-09-20" "2011-09-20" "2013-11-23"
##   [601] "2013-02-16" "2013-02-16" "2011-09-20" "2013-11-23" "2013-11-23"
##   [606] "2011-09-20" "2013-02-16" "2013-02-16" "2013-02-16" NA          
##   [611] "2011-12-29" NA           "2011-12-29" "2011-12-29" "2011-12-29"
##   [616] "2011-12-29" NA           NA           NA           "2013-06-26"
##   [621] "2013-06-26" "2013-06-26" "2013-06-26" "2012-05-24" "2012-05-24"
##   [626] "2013-06-26" NA           NA           "2012-04-24" "2012-01-30"
##   [631] "2012-04-24" "2012-04-24" NA           NA           "2012-01-30"
##   [636] NA           "2011-04-15" NA           NA           NA          
##   [641] "2011-04-29" "2013-10-29" NA           "2011-04-15" "2013-10-29"
##   [646] "2011-04-29" "2013-10-29" "2011-05-22" "2011-05-22" "2011-04-29"
##   [651] "2013-10-29" "2011-05-22" NA           NA           "2012-10-20"
##   [656] "2012-10-20" "2013-04-16" "2013-04-16" "2012-04-14" "2012-02-20"
##   [661] "2012-04-14" "2013-04-16" "2012-04-14" "2013-04-16" NA          
##   [666] "2013-04-16" "2012-04-14" NA           "2013-04-16" "2012-02-20"
##   [671] NA           "2012-02-20" "2012-04-14" NA           NA          
##   [676] NA           NA           NA           NA           NA          
##   [681] NA           NA           NA           NA           NA          
##   [686] "2012-09-23" "2013-06-27" "2013-06-24" "2012-09-23" NA          
##   [691] "2013-06-24" "2013-06-27" NA           NA           "2013-06-24"
##   [696] "2013-06-27" NA           "2011-09-19" "2013-12-27" "2011-09-19"
##   [701] NA           "2013-12-27" "2013-12-27" "2013-12-27" "2013-12-27"
##   [706] "2011-09-19" NA           NA           NA           NA          
##   [711] NA           NA           NA           NA           NA          
##   [716] NA           NA           NA           NA           NA          
##   [721] NA           NA           NA           NA           NA          
##   [726] NA           NA           "2012-02-29" NA           "2012-02-29"
##   [731] "2012-05-27" NA           NA           "2012-02-29" NA          
##   [736] "2012-05-27" "2012-10-17" "2012-10-17" NA           NA          
##   [741] NA           "2012-10-17" NA           NA           NA          
##   [746] NA           NA           "2012-07-17" "2012-07-17" "2012-07-17"
##   [751] NA           "2013-07-28" "2013-07-28" "2013-08-22" "2013-08-22"
##   [756] "2011-09-30" "2011-09-30" "2011-08-23" "2011-08-27" "2011-09-30"
##   [761] "2011-08-23" "2011-08-27" NA           "2011-09-30" "2011-09-30"
##   [766] "2011-08-27" NA           "2011-08-23" "2011-08-23" "2011-08-27"
##   [771] NA           NA           NA           NA           NA          
##   [776] NA           NA           NA           NA           NA          
##   [781] NA           NA           "2013-10-25" "2013-10-25" "2013-01-30"
##   [786] "2013-10-25" "2013-10-25" "2013-01-30" "2013-01-30" "2013-10-25"
##   [791] "2012-08-15" "2012-08-15" "2012-08-15" "2012-08-15" "2012-09-14"
##   [796] "2012-08-15" "2012-10-22" "2012-08-15" "2012-09-14" "2012-10-22"
##   [801] NA           NA           NA           NA           NA          
##   [806] NA           "2011-12-16" "2013-07-21" "2012-09-19" "2013-06-27"
##   [811] NA           "2011-12-16" "2013-06-27" "2013-07-21" "2012-09-19"
##   [816] "2012-09-19" "2013-06-27" "2013-06-27" "2013-07-21" "2011-12-16"
##   [821] "2013-06-27" NA           "2013-10-22" "2013-10-22" "2013-10-22"
##   [826] "2013-03-17" "2012-02-26" "2012-02-26" "2012-02-26" "2013-03-17"
##   [831] "2013-03-17" "2012-02-26" "2012-08-20" "2012-07-23" "2012-07-23"
##   [836] "2012-08-20" "2012-08-20" "2012-07-23" "2012-08-20" "2011-04-17"
##   [841] "2011-04-23" "2011-04-23" "2011-04-17" "2011-04-17" "2011-04-17"
##   [846] "2011-04-23" "2011-04-23" "2011-04-17" "2011-04-23" "2011-10-24"
##   [851] "2011-10-24" "2011-10-24" "2013-03-22" "2012-01-20" "2012-01-20"
##   [856] "2013-03-22" "2012-11-17" NA           "2011-12-24" "2011-02-20"
##   [861] "2011-02-20" NA           NA           "2011-12-15" NA          
##   [866] "2012-11-17" "2011-12-15" NA           NA           NA          
##   [871] "2011-12-24" NA           "2012-03-19" "2012-03-19" "2012-03-19"
##   [876] NA           NA           "2012-12-15" "2011-03-21" NA          
##   [881] "2012-12-15" "2012-12-15" NA           "2011-03-21" "2011-03-21"
##   [886] "2011-03-21" "2011-03-21" "2013-05-31" NA           NA          
##   [891] NA           NA           NA           NA           NA          
##   [896] NA           "2012-12-15" "2012-12-15" NA           "2013-05-31"
##   [901] NA           NA           NA           "2013-05-31" NA          
##   [906] "2013-05-17" "2013-05-16" NA           NA           NA          
##   [911] NA           NA           NA           "2013-05-17" "2013-05-16"
##   [916] "2013-11-22" "2013-11-22" "2013-11-22" "2013-03-14" "2013-11-22"
##   [921] NA           "2013-11-22" "2013-03-14" "2013-11-22" NA          
##   [926] "2013-06-19" "2012-11-14" "2012-11-14" "2012-11-14" "2012-11-14"
##   [931] "2013-06-19" "2013-06-19" "2012-11-14" "2011-07-20" "2011-03-25"
##   [936] NA           "2011-07-20" "2011-03-25" NA           "2011-03-25"
##   [941] NA           NA           "2013-10-26" "2013-10-28" NA          
##   [946] NA           NA           "2013-10-26" NA           "2011-03-13"
##   [951] "2013-10-28" "2013-10-26" NA           "2013-10-26" "2013-10-26"
##   [956] "2011-03-13" NA           "2011-03-13" "2013-10-28" NA          
##   [961] "2013-10-28" "2013-10-28" NA           NA           NA          
##   [966] NA           NA           NA           "2014-01-30" "2014-01-24"
##   [971] "2014-01-24" "2014-01-24" "2014-01-30" "2014-01-24" "2014-01-30"
##   [976] "2014-01-24" "2014-01-30" "2014-01-30" NA           NA          
##   [981] NA           NA           NA           NA           NA          
##   [986] NA           NA           NA           NA           NA          
##   [991] NA           NA           NA           "2012-09-22" "2012-09-22"
##   [996] "2012-09-22" "2012-09-22" "2012-09-22" "2012-05-25" NA          
##  [1001] NA           NA           "2012-05-25" NA           NA          
##  [1006] NA           NA           NA           NA           "2011-08-26"
##  [1011] "2011-08-26" "2011-08-26" "2013-01-30" "2013-01-30" "2013-01-30"
##  [1016] NA           "2012-05-14" "2012-05-14" NA           "2013-08-30"
##  [1021] "2013-08-30" "2013-06-24" "2013-06-24" "2013-06-24" "2013-08-30"
##  [1026] "2013-08-30" "2013-08-30" "2013-06-24" "2013-06-24" "2011-11-28"
##  [1031] NA           "2011-11-28" NA           NA           NA          
##  [1036] "2011-11-28" NA           NA           NA           NA          
##  [1041] NA           "2013-06-17" "2013-02-13" "2013-02-13" NA          
##  [1046] "2011-11-13" "2013-06-17" "2013-02-13" "2013-02-13" NA          
##  [1051] NA           "2013-02-13" "2011-11-13" "2012-06-20" "2011-11-13"
##  [1056] "2012-06-20" "2013-02-13" "2012-06-20" NA           "2012-06-20"
##  [1061] "2012-06-20" NA           NA           NA           NA          
##  [1066] NA           "2011-10-16" "2011-05-28" "2011-05-28" NA          
##  [1071] "2011-10-16" "2011-10-16" NA           "2011-10-16" "2011-10-16"
##  [1076] NA           "2011-10-16" "2013-11-28" NA           NA          
##  [1081] NA           "2013-11-28" "2012-09-27" "2011-10-22" "2011-10-22"
##  [1086] "2011-10-22" "2011-10-22" "2012-09-27" "2011-10-22" NA          
##  [1091] NA           NA           NA           NA           NA          
##  [1096] NA           NA           NA           NA           NA          
##  [1101] "2012-09-25" "2012-09-25" NA           "2012-09-25" "2012-09-25"
##  [1106] NA           NA           "2012-10-23" "2012-10-23" NA          
##  [1111] NA           NA           NA           NA           NA          
##  [1116] "2012-12-21" NA           NA           NA           NA          
##  [1121] "2012-11-18" "2012-11-18" NA           NA           "2012-12-24"
##  [1126] NA           "2012-11-18" "2012-12-21" "2012-11-18" "2012-12-24"
##  [1131] NA           NA           "2011-01-26" "2011-01-26" NA          
##  [1136] NA           "2012-12-21" NA           "2012-12-24" NA          
##  [1141] "2012-12-21" NA           "2012-12-24" "2012-12-24" "2012-12-21"
##  [1146] NA           NA           "2012-07-19" "2012-07-19" "2012-07-19"
##  [1151] "2012-07-19" "2012-07-19" "2013-10-28" "2011-06-24" "2011-06-24"
##  [1156] "2013-10-28" "2011-10-23" "2011-10-23" "2011-10-23" "2013-01-13"
##  [1161] "2011-10-23" "2011-10-23" "2013-01-13" NA           NA          
##  [1166] NA           NA           NA           "2011-03-25" "2011-03-25"
##  [1171] "2011-03-25" "2011-03-25" "2011-03-25" "2013-05-26" "2013-05-26"
##  [1176] "2013-05-26" NA           NA           "2013-11-16" NA          
##  [1181] "2013-11-16" NA           NA           "2013-11-16" "2012-07-31"
##  [1186] "2013-07-17" "2013-07-17" "2011-12-19" "2011-12-19" "2012-07-31"
##  [1191] "2012-07-31" "2012-07-31" NA           "2012-07-31" "2011-12-19"
##  [1196] NA           "2012-03-31" NA           NA           "2012-03-31"
##  [1201] NA           "2012-03-31" NA           NA           "2012-03-31"
##  [1206] NA           NA           NA           NA           NA          
##  [1211] NA           "2012-10-27" NA           NA           "2012-10-27"
##  [1216] "2013-01-14" NA           "2013-01-14" NA           NA          
##  [1221] NA           NA           NA           NA           NA          
##  [1226] "2011-05-22" NA           NA           NA           "2011-05-22"
##  [1231] NA           "2012-10-26" "2012-10-26" NA           NA          
##  [1236] NA           NA           NA           NA           NA          
##  [1241] "2012-04-24" "2012-04-24" "2012-04-24" NA           NA          
##  [1246] NA           NA           NA           NA           NA          
##  [1251] NA           NA           NA           NA           NA          
##  [1256] "2011-10-30" "2011-10-30" "2011-06-17" NA           "2011-06-17"
##  [1261] NA           NA           NA           NA           "2013-07-22"
##  [1266] "2011-06-16" "2011-06-16" "2011-06-17" "2013-07-22" "2011-06-16"
##  [1271] "2013-07-22" "2011-06-24" "2011-06-24" "2011-06-24" "2011-06-24"
##  [1276] "2011-06-24" "2011-06-24" "2011-08-23" "2011-08-23" "2011-08-23"
##  [1281] "2013-12-16" "2013-02-17" "2013-02-22" NA           "2013-02-17"
##  [1286] "2013-02-22" NA           NA           "2013-12-16" "2013-02-22"
##  [1291] NA           NA           NA           NA           NA          
##  [1296] NA           "2011-08-24" "2011-08-24" "2011-08-24" "2011-08-24"
##  [1301] "2011-08-24" "2011-08-24" NA           NA           NA          
##  [1306] "2011-04-21" NA           NA           NA           NA          
##  [1311] NA           NA           NA           "2011-04-21" "2013-07-23"
##  [1316] "2013-09-21" NA           "2013-09-21" NA           "2013-07-23"
##  [1321] "2013-07-23" "2013-09-21" "2013-07-23" "2013-07-23" "2013-02-14"
##  [1326] "2011-02-22" "2011-02-22" "2011-02-22" "2011-02-22" "2011-02-22"
##  [1331] "2013-02-14" "2011-06-23" "2011-06-23" NA           "2011-06-23"
##  [1336] NA           NA           "2012-11-21" NA           "2011-06-23"
##  [1341] "2011-06-23" "2012-11-21" NA           "2012-09-15" "2012-09-15"
##  [1346] "2014-02-19" NA           NA           NA           "2014-02-19"
##  [1351] NA           "2014-02-19" NA           "2014-02-19" NA          
##  [1356] "2014-02-19" "2013-02-18" "2013-12-22" "2013-02-18" "2013-02-18"
##  [1361] "2013-12-22" "2013-02-18" "2013-12-22" "2013-12-22" "2013-02-18"
##  [1366] "2013-02-18" "2013-12-22" "2011-10-23" "2011-10-23" "2011-10-23"
##  [1371] "2011-10-23" "2011-10-23" NA           NA           NA          
##  [1376] NA           NA           NA           NA           "2012-03-30"
##  [1381] NA           NA           NA           "2012-03-30" "2011-09-25"
##  [1386] "2011-09-25" "2011-05-31" "2011-05-31" NA           "2011-05-13"
##  [1391] "2011-05-31" "2011-05-31" "2011-05-31" NA           "2011-05-13"
##  [1396] "2011-05-31" "2014-02-16" "2013-04-26" "2014-02-16" "2013-04-26"
##  [1401] "2014-02-16" "2012-11-26" "2012-11-26" "2012-11-26" NA          
##  [1406] NA           "2013-09-18" "2013-09-18" "2011-09-27" "2011-03-23"
##  [1411] "2011-09-27" "2011-03-23" "2011-03-23" "2011-03-23" "2011-03-23"
##  [1416] "2011-09-27" "2011-03-23" NA           NA           "2011-11-20"
##  [1421] "2011-11-20" "2012-12-30" "2012-12-30" "2011-11-20" NA          
##  [1426] NA           "2012-12-30" NA           NA           NA          
##  [1431] NA           NA           NA           NA           NA          
##  [1436] NA           NA           "2012-12-14" NA           NA          
##  [1441] NA           NA           "2012-12-14" NA           NA          
##  [1446] NA           NA           NA           NA           "2012-12-14"
##  [1451] NA           NA           NA           NA           "2012-12-14"
##  [1456] NA           "2012-12-14" "2012-12-14" NA           NA          
##  [1461] NA           NA           NA           NA           NA          
##  [1466] NA           NA           "2013-12-29" "2013-12-29" NA          
##  [1471] NA           "2013-12-29" "2013-12-29" NA           "2013-12-29"
##  [1476] NA           NA           NA           NA           NA          
##  [1481] "2013-02-16" "2013-02-16" "2013-02-16" "2013-09-24" "2013-09-24"
##  [1486] "2013-09-24" "2011-09-14" "2011-09-14" "2011-01-31" "2011-01-25"
##  [1491] "2011-01-31" "2011-01-31" "2014-01-26" "2014-01-26" "2011-01-25"
##  [1496] "2014-01-26" "2011-01-31" "2011-01-25" "2011-01-25" "2011-01-25"
##  [1501] "2014-01-26" "2014-01-26" "2014-01-26" "2011-01-31" "2014-02-18"
##  [1506] NA           "2014-02-18" NA           NA           NA          
##  [1511] NA           "2014-02-18" "2014-02-18" "2014-02-18" "2014-02-18"
##  [1516] "2014-02-18" "2014-02-18" NA           NA           "2012-06-29"
##  [1521] NA           "2012-04-21" "2012-04-18" NA           "2012-06-29"
##  [1526] NA           "2012-03-21" "2012-04-18" "2012-04-21" "2012-06-29"
##  [1531] NA           "2012-03-21" NA           "2012-04-18" "2012-03-21"
##  [1536] "2012-04-28" NA           "2012-04-21" "2012-04-28" NA          
##  [1541] NA           "2012-04-28" "2012-12-27" "2012-12-27" NA          
##  [1546] NA           "2012-12-27" NA           "2012-12-27" "2012-11-14"
##  [1551] "2012-09-20" "2012-11-14" "2012-02-15" "2012-11-14" "2012-09-20"
##  [1556] "2012-11-14" NA           "2012-02-15" "2012-09-20" "2012-11-14"
##  [1561] "2012-09-20" "2012-09-20" NA           "2012-02-15" "2013-05-26"
##  [1566] "2013-05-26" NA           "2012-11-14" NA           NA          
##  [1571] NA           NA           NA           NA           NA          
##  [1576] NA           NA           "2014-01-19" NA           "2014-01-19"
##  [1581] NA           "2014-01-19" NA           NA           NA          
##  [1586] "2011-11-27" NA           "2011-11-27" "2012-05-18" NA          
##  [1591] "2012-05-18" "2012-05-18" "2012-05-18" "2012-05-18" NA          
##  [1596] "2013-07-14" "2013-07-14" NA           "2013-07-14" NA          
##  [1601] NA           NA           NA           NA           NA          
##  [1606] NA           NA           "2012-03-28" "2012-06-16" "2012-06-16"
##  [1611] "2012-03-28" NA           NA           NA           NA          
##  [1616] NA           NA           NA           NA           NA          
##  [1621] NA           "2011-07-31" "2011-07-31" "2011-07-31" NA          
##  [1626] "2011-07-31" "2011-07-31" "2012-10-28" "2012-10-28" NA          
##  [1631] "2012-10-28" NA           NA           "2012-10-28" "2012-10-28"
##  [1636] NA           NA           NA           NA           NA          
##  [1641] NA           NA           NA           NA           "2012-02-15"
##  [1646] NA           "2012-09-19" "2012-02-15" NA           NA          
##  [1651] "2012-09-19" "2012-02-15" "2012-06-19" "2012-06-19" NA          
##  [1656] NA           NA           NA           NA           NA          
##  [1661] NA           NA           NA           NA           NA          
##  [1666] "2011-10-31" "2011-10-31" "2013-02-14" "2012-07-24" "2012-07-24"
##  [1671] "2012-07-24" "2012-07-24" "2013-02-14" "2013-02-14" NA          
##  [1676] "2012-09-30" "2011-09-26" "2012-07-24" "2012-09-30" "2011-09-26"
##  [1681] "2012-08-31" "2012-07-23" "2012-07-23" NA           "2012-08-31"
##  [1686] "2012-07-23" "2012-07-23" "2012-08-31" "2013-02-14" NA          
##  [1691] "2013-02-14" "2012-07-23" NA           NA           NA          
##  [1696] "2011-05-26" "2012-01-29" NA           "2012-01-29" NA          
##  [1701] NA           "2011-05-26" NA           "2012-01-29" "2011-05-26"
##  [1706] NA           NA           NA           NA           NA          
##  [1711] NA           NA           NA           NA           NA          
##  [1716] NA           "2011-08-16" "2011-08-16" "2013-12-29" NA          
##  [1721] "2013-12-25" NA           NA           NA           "2013-12-29"
##  [1726] NA           "2013-12-25" NA           "2013-10-26" "2013-10-26"
##  [1731] "2013-10-26" "2013-12-20" "2013-12-20" "2013-12-20" "2011-09-26"
##  [1736] "2011-09-26" "2011-09-26" "2011-09-26" "2011-09-26" "2013-05-30"
##  [1741] "2013-05-30" NA           "2012-03-29" "2013-05-30" NA          
##  [1746] "2012-03-29" "2012-03-29" NA           NA           "2013-05-30"
##  [1751] "2013-05-30" NA           "2012-03-29" "2012-03-29" NA          
##  [1756] NA           NA           NA           NA           NA          
##  [1761] NA           NA           NA           NA           "2012-09-20"
##  [1766] "2012-09-20" "2012-09-20" "2012-09-20" "2012-04-22" "2013-03-26"
##  [1771] "2012-04-22" "2013-03-26" "2012-03-25" NA           "2012-03-25"
##  [1776] "2012-03-25" NA           "2012-03-25" "2012-03-25" "2012-06-21"
##  [1781] "2011-06-26" "2012-06-21" "2011-06-26" "2011-06-26" "2011-06-26"
##  [1786] "2012-06-21" "2011-12-26" "2013-06-27" "2013-06-27" "2012-06-28"
##  [1791] "2011-12-30" "2011-12-30" "2011-12-26" "2011-12-30" NA          
##  [1796] "2011-12-26" "2011-12-30" NA           NA           "2012-06-28"
##  [1801] "2011-12-30" NA           NA           "2012-02-18" "2013-10-21"
##  [1806] NA           "2012-02-18" "2011-10-18" "2013-10-21" NA          
##  [1811] "2013-10-21" "2011-10-18" NA           "2013-10-21" NA          
##  [1816] NA           "2013-10-21" NA           NA           NA          
##  [1821] NA           NA           NA           NA           "2013-11-17"
##  [1826] "2013-11-17" "2013-11-17" "2013-11-17" "2013-11-17" "2011-06-17"
##  [1831] "2011-06-17" "2012-03-17" "2012-03-17" "2012-03-17" "2011-06-17"
##  [1836] "2011-06-17" "2011-06-17" "2011-11-21" "2011-11-21" "2011-11-21"
##  [1841] "2012-09-26" "2012-09-22" "2011-04-23" NA           "2011-04-23"
##  [1846] "2011-04-23" "2012-09-26" "2012-09-22" "2011-04-23" NA          
##  [1851] "2012-09-26" NA           "2011-04-23" NA           NA          
##  [1856] NA           "2012-09-22" NA           NA           NA          
##  [1861] NA           NA           NA           NA           NA          
##  [1866] NA           "2011-02-23" "2011-02-23" NA           NA          
##  [1871] "2012-12-21" "2012-12-21" "2013-08-25" "2013-08-25" NA          
##  [1876] NA           "2012-12-21" NA           NA           "2012-07-28"
##  [1881] "2012-07-28" "2012-04-27" "2011-08-31" "2011-08-31" "2012-07-28"
##  [1886] "2012-07-28" "2012-03-21" "2011-08-31" "2012-04-27" "2012-07-28"
##  [1891] "2012-03-21" "2012-04-27" "2011-08-31" "2012-04-27" "2011-08-31"
##  [1896] "2012-03-21" "2012-04-27" "2011-05-30" "2011-05-30" "2011-05-30"
##  [1901] "2011-05-30" "2013-05-20" "2013-04-24" "2012-10-29" NA          
##  [1906] "2013-04-24" "2012-10-29" NA           "2012-10-29" NA          
##  [1911] NA           NA           NA           NA           "2013-05-20"
##  [1916] "2013-05-20" NA           NA           NA           NA          
##  [1921] NA           NA           NA           NA           NA          
##  [1926] "2013-06-13" NA           "2012-10-26" "2013-06-13" NA          
##  [1931] NA           "2012-10-26" "2013-06-13" "2013-06-13" "2011-12-18"
##  [1936] "2011-12-18" NA           NA           "2012-08-15" "2012-08-15"
##  [1941] "2012-08-15" NA           "2012-08-15" "2011-12-18" NA          
##  [1946] "2013-03-31" "2013-03-31" "2013-03-31" "2013-03-31" "2013-03-31"
##  [1951] "2013-07-16" NA           "2013-07-16" "2013-07-16" "2013-06-30"
##  [1956] NA           NA           "2013-07-16" "2013-06-30" NA          
##  [1961] "2013-06-30" NA           NA           NA           NA          
##  [1966] "2011-03-20" "2011-03-20" "2012-03-27" "2012-03-27" "2012-03-27"
##  [1971] "2011-03-20" "2012-03-27" "2012-03-27" NA           "2011-11-17"
##  [1976] "2011-11-17" NA           NA           "2011-11-17" "2011-11-17"
##  [1981] "2011-11-17" NA           "2012-09-30" "2012-09-30" NA          
##  [1986] "2013-02-26" "2013-02-26" "2012-01-31" "2012-01-31" "2013-07-24"
##  [1991] "2013-07-24" "2013-07-24" "2013-08-15" "2013-08-15" "2013-08-15"
##  [1996] "2012-06-25" "2012-06-25" "2012-06-25" NA           NA          
##  [2001] NA           "2012-06-25" "2012-06-25" "2012-11-19" NA          
##  [2006] NA           NA           "2013-12-20" "2012-11-19" "2013-12-20"
##  [2011] NA           NA           NA           "2012-11-19" "2012-11-19"
##  [2016] NA           NA           NA           "2013-11-30" NA          
##  [2021] NA           "2013-11-30" NA           "2013-11-30" NA          
##  [2026] NA           NA           NA           NA           "2012-02-19"
##  [2031] NA           "2012-02-19" "2012-09-25" "2012-09-25" NA          
##  [2036] "2012-04-30" NA           "2012-04-30" NA           NA          
##  [2041] NA           "2012-04-30" "2013-11-27" "2013-08-15" "2013-08-15"
##  [2046] "2013-11-27" "2013-08-15" NA           "2013-08-15" NA          
##  [2051] "2013-11-27" NA           "2013-11-24" "2013-11-24" NA          
##  [2056] NA           "2013-11-24" NA           NA           NA          
##  [2061] NA           NA           "2012-05-27" "2012-02-28" "2012-05-27"
##  [2066] "2012-05-27" "2012-05-27" "2012-02-28" "2012-02-28" "2012-05-27"
##  [2071] "2012-05-23" "2012-05-27" "2012-05-23" NA           "2012-05-23"
##  [2076] NA           "2012-05-23" "2012-05-23" "2013-01-16" "2013-01-16"
##  [2081] "2012-05-23" "2013-01-16" NA           NA           NA          
##  [2086] NA           NA           "2012-06-26" NA           "2012-06-26"
##  [2091] NA           NA           "2013-11-17" "2013-11-17" NA          
##  [2096] "2013-11-17" "2011-11-21" "2011-11-21" "2012-04-29" "2011-05-18"
##  [2101] "2012-05-19" "2012-05-19" "2011-05-18" "2012-04-29" "2012-05-19"
##  [2106] "2011-05-18" "2013-08-17" "2013-08-17" "2012-04-18" "2012-09-26"
##  [2111] "2012-04-18" "2012-09-26" "2013-08-17" "2013-08-17" "2012-09-28"
##  [2116] "2012-09-28" "2012-09-26" "2012-09-26" "2013-08-17" "2012-09-26"
##  [2121] "2013-08-17" "2012-09-28" "2012-04-18" "2013-09-29" "2013-09-29"
##  [2126] NA           NA           "2011-03-16" NA           "2013-03-14"
##  [2131] "2011-03-16" "2011-03-16" "2013-03-14" "2011-03-16" "2013-03-14"
##  [2136] NA           NA           NA           NA           NA          
##  [2141] NA           NA           NA           NA           NA          
##  [2146] NA           NA           NA           NA           "2011-08-24"
##  [2151] NA           NA           "2011-08-24" NA           "2011-08-24"
##  [2156] "2011-08-24" "2011-09-20" NA           NA           NA          
##  [2161] "2011-09-20" "2011-09-20" NA           NA           NA          
##  [2166] "2013-09-17" "2011-11-29" "2011-11-29" NA           NA          
##  [2171] "2013-09-17" NA           "2011-11-29" NA           NA          
##  [2176] "2013-09-17" "2013-06-15" "2013-06-15" NA           "2013-06-15"
##  [2181] NA           NA           NA           NA           NA          
##  [2186] NA           NA           NA           NA           "2011-04-25"
##  [2191] NA           "2011-04-25" "2011-04-25" NA           NA          
##  [2196] NA           "2012-08-25" "2012-08-25" "2013-10-20" "2013-10-20"
##  [2201] "2012-08-25" "2012-08-25" "2013-10-20" "2012-08-25" "2013-10-20"
##  [2206] NA           "2011-08-18" NA           NA           NA          
##  [2211] NA           NA           "2011-08-18" NA           "2012-07-19"
##  [2216] "2012-04-14" "2012-07-19" "2012-04-14" "2012-04-14" "2011-11-30"
##  [2221] "2011-11-30" "2012-04-14" "2012-07-19" "2012-04-14" NA          
##  [2226] "2012-02-25" NA           "2012-02-25" "2013-02-28" NA          
##  [2231] "2013-02-28" "2011-05-22" NA           NA           "2011-05-22"
##  [2236] "2012-02-25" "2011-05-22" NA           "2013-06-16" NA          
##  [2241] "2013-06-16" NA           "2013-06-16" "2012-08-15" "2013-08-29"
##  [2246] "2013-08-29" "2013-08-29" "2012-08-15" "2012-08-15" NA          
##  [2251] NA           NA           "2011-11-23" "2011-11-23" NA          
##  [2256] "2011-11-23" NA           "2011-11-23" "2011-11-23" "2012-11-30"
##  [2261] "2012-11-30" "2012-11-30" "2012-12-30" "2013-01-31" NA          
##  [2266] "2012-12-30" NA           "2013-01-31" "2011-05-14" NA          
##  [2271] NA           NA           "2011-05-14" NA           NA          
##  [2276] NA           NA           "2011-05-14" "2012-09-18" "2012-09-18"
##  [2281] "2012-09-18" "2012-09-18" "2012-09-18" "2012-09-18" "2014-01-29"
##  [2286] NA           NA           "2014-01-29" NA           NA          
##  [2291] "2014-01-29" NA           NA           "2012-11-20" "2012-11-20"
##  [2296] NA           NA           "2013-07-23" "2013-07-26" NA          
##  [2301] NA           NA           "2011-11-27" NA           "2011-11-27"
##  [2306] "2013-07-26" NA           NA           "2013-07-23" NA          
##  [2311] NA           "2012-10-23" "2012-10-23" "2012-10-23" "2012-08-29"
##  [2316] NA           NA           "2012-08-29" "2012-06-20" "2012-06-20"
##  [2321] "2012-08-29" "2012-06-20" "2012-06-20" NA           NA          
##  [2326] "2012-02-19" NA           "2012-02-19" "2012-02-19" "2012-02-19"
##  [2331] "2012-02-21" "2012-02-21" "2012-02-21" "2012-02-21" NA          
##  [2336] NA           NA           NA           NA           NA          
##  [2341] NA           NA           NA           NA           NA          
##  [2346] NA           NA           "2011-07-16" "2011-07-16" "2011-07-16"
##  [2351] "2011-07-16" "2011-07-16" NA           NA           "2012-06-22"
##  [2356] "2012-06-22" "2012-06-22" "2012-06-22" "2012-06-22" NA          
##  [2361] "2012-12-15" "2012-12-15" NA           NA           "2011-10-21"
##  [2366] NA           NA           "2011-10-21" NA           NA          
##  [2371] "2011-10-21" NA           "2011-10-21" "2011-10-21" "2012-05-20"
##  [2376] "2012-05-20" "2012-05-20" NA           NA           NA          
##  [2381] NA           NA           "2011-05-25" "2011-05-25" NA          
##  [2386] "2012-03-18" "2012-03-18" NA           "2012-03-18" "2012-03-18"
##  [2391] "2012-03-18" "2012-03-18" NA           "2011-03-28" "2011-03-28"
##  [2396] NA           "2011-03-28" "2011-03-28" NA           "2011-03-28"
##  [2401] NA           NA           NA           NA           "2012-08-13"
##  [2406] "2012-08-13" "2012-08-13" NA           NA           "2011-10-14"
##  [2411] "2012-08-13" "2011-10-14" NA           NA           "2012-08-13"
##  [2416] "2011-10-14" NA           "2011-10-14" "2011-10-14" NA          
##  [2421] NA           NA           NA           NA           NA          
##  [2426] NA           NA           NA           NA           NA          
##  [2431] NA           "2011-04-26" NA           NA           "2011-04-26"
##  [2436] NA           NA           "2012-09-18" "2011-04-26" "2012-09-18"
##  [2441] NA           "2011-04-26" NA           "2012-09-15" NA          
##  [2446] "2011-04-26" NA           NA           "2011-04-26" NA          
##  [2451] "2012-09-15" NA           NA           NA           NA          
##  [2456] NA           NA           NA           "2012-06-29" "2012-06-29"
##  [2461] "2012-06-29" "2012-06-29" "2012-06-29" "2012-06-29" NA          
##  [2466] NA           NA           NA           NA           NA          
##  [2471] NA           NA           NA           NA           NA          
##  [2476] NA           NA           NA           NA           "2011-08-15"
##  [2481] "2011-08-15" "2011-08-15" "2011-08-15" "2013-07-13" "2013-07-13"
##  [2486] "2012-10-31" "2012-10-31" "2012-01-25" "2012-10-31" "2012-01-25"
##  [2491] "2012-10-31" "2012-10-31" "2012-01-25" "2012-01-25" "2012-01-25"
##  [2496] "2012-12-16" "2012-12-16" "2012-12-16" "2014-01-16" "2014-01-16"
##  [2501] "2014-01-16" NA           NA           "2013-06-22" NA          
##  [2506] "2013-06-22" NA           NA           "2013-06-22" NA          
##  [2511] NA           NA           NA           NA           NA          
##  [2516] NA           NA           NA           NA           NA          
##  [2521] NA           NA           NA           NA           NA          
##  [2526] "2012-09-29" NA           NA           NA           "2012-09-29"
##  [2531] "2012-11-23" "2012-11-29" NA           "2012-11-23" NA          
##  [2536] "2012-11-23" "2012-11-29" NA           NA           "2012-09-29"
##  [2541] NA           NA           "2012-09-29" "2012-11-29" "2012-09-29"
##  [2546] NA           NA           "2011-05-20" "2011-05-20" "2011-05-20"
##  [2551] "2011-05-14" "2011-05-14" "2011-05-14" "2011-05-14" "2013-06-15"
##  [2556] "2013-06-15" "2013-06-15" "2013-06-15" "2013-06-15" "2013-02-27"
##  [2561] NA           "2011-09-23" "2011-09-23" "2012-08-24" NA          
##  [2566] "2012-08-24" NA           "2013-02-27" "2012-08-24" NA          
##  [2571] NA           NA           NA           "2011-09-23" "2011-09-23"
##  [2576] NA           "2011-09-23" "2013-02-27" "2011-09-23" "2012-10-16"
##  [2581] "2012-10-16" NA           NA           NA           NA          
##  [2586] "2011-11-15" "2011-11-15" NA           "2011-11-15" "2011-11-15"
##  [2591] "2011-11-15" NA           NA           NA           NA          
##  [2596] NA           NA           NA           "2011-08-15" NA          
##  [2601] "2011-08-15" NA           "2012-03-31" "2012-03-31" NA          
##  [2606] NA           NA           NA           NA           NA          
##  [2611] NA           NA           NA           NA           NA          
##  [2616] NA           NA           NA           NA           NA          
##  [2621] NA           NA           NA           NA           NA          
##  [2626] NA           NA           "2013-07-14" NA           NA          
##  [2631] "2013-07-14" "2012-11-13" "2014-01-22" "2014-01-22" "2012-11-13"
##  [2636] "2014-01-22" "2014-01-22" "2014-01-22" "2014-01-22" "2011-01-30"
##  [2641] "2011-01-30" "2011-01-30" NA           "2011-01-30" NA          
##  [2646] NA           "2011-09-16" "2013-02-25" "2013-02-25" "2011-09-16"
##  [2651] "2011-12-29" "2011-12-29" "2013-10-27" "2013-10-27" NA          
##  [2656] "2013-10-27" "2013-10-27" NA           NA           "2013-10-27"
##  [2661] NA           NA           "2013-09-15" "2013-09-15" NA          
##  [2666] NA           "2013-09-15" NA           NA           NA          
##  [2671] "2013-10-22" NA           NA           NA           "2013-10-14"
##  [2676] "2013-10-14" "2013-10-22" "2013-10-14" NA           "2013-10-22"
##  [2681] "2011-06-15" "2011-08-22" NA           "2011-06-15" "2011-08-22"
##  [2686] "2011-08-22" NA           NA           NA           NA          
##  [2691] "2013-10-23" NA           NA           NA           NA          
##  [2696] "2013-10-23" NA           NA           "2013-10-23" "2013-10-23"
##  [2701] NA           "2013-10-23" NA           NA           NA          
##  [2706] NA           "2011-02-24" NA           "2011-02-24" "2011-02-24"
##  [2711] NA           "2011-02-24" "2011-02-24" NA           NA          
##  [2716] NA           NA           NA           NA           NA          
##  [2721] "2011-03-27" "2011-03-27" "2011-03-27" "2011-03-27" NA          
##  [2726] "2012-06-22" "2012-05-23" "2012-06-24" "2011-03-28" "2011-03-27"
##  [2731] "2012-06-26" "2012-06-26" "2011-03-27" "2011-03-28" "2012-06-24"
##  [2736] "2011-03-28" "2012-06-24" "2012-06-22" "2011-03-28" "2011-03-28"
##  [2741] "2012-06-22" NA           "2012-06-26" "2011-03-28" "2012-05-23"
##  [2746] "2012-02-19" "2012-02-19" "2012-02-19" "2012-02-19" "2012-07-26"
##  [2751] "2012-07-26" "2012-07-26" "2012-07-26" "2012-07-26" "2012-07-26"
##  [2756] NA           "2013-09-15" NA           NA           NA          
##  [2761] NA           "2013-09-15" NA           "2013-09-15" NA          
##  [2766] "2013-09-15" NA           "2013-09-15" NA           "2013-03-23"
##  [2771] "2013-03-23" NA           NA           "2013-03-23" NA          
##  [2776] NA           NA           NA           "2013-03-23" "2013-03-23"
##  [2781] NA           NA           NA           NA           NA          
##  [2786] NA           NA           NA           NA           NA          
##  [2791] NA           "2011-07-26" NA           NA           NA          
##  [2796] "2011-07-26" NA           NA           NA           "2011-07-26"
##  [2801] "2012-01-17" "2012-01-17" "2013-10-25" "2013-09-23" NA          
##  [2806] "2013-09-30" "2013-10-25" "2013-10-25" "2013-09-23" NA          
##  [2811] "2013-09-30" "2011-10-14" "2011-10-14" "2011-10-14" "2011-10-14"
##  [2816] "2011-10-14" NA           NA           NA           NA          
##  [2821] NA           NA           NA           NA           NA          
##  [2826] NA           NA           NA           NA           "2012-05-14"
##  [2831] "2012-11-16" "2012-05-14" "2012-11-16" "2012-05-22" "2012-11-16"
##  [2836] "2012-05-14" "2012-11-16" "2012-05-14" "2012-05-22" "2012-05-22"
##  [2841] "2012-05-14" "2012-05-22" "2012-11-16" "2012-05-14" "2012-11-16"
##  [2846] "2012-05-22" "2012-05-22" NA           NA           NA          
##  [2851] NA           "2011-03-13" "2011-03-13" "2011-03-13" "2011-03-28"
##  [2856] "2012-07-17" "2014-01-19" "2011-03-28" "2012-07-17" "2012-07-17"
##  [2861] "2011-03-28" "2012-07-17" "2011-03-28" "2014-01-19" "2014-01-19"
##  [2866] "2011-03-28" "2012-07-17" "2014-01-19" "2013-08-21" "2013-08-21"
##  [2871] "2013-08-21" "2011-04-18" "2012-04-26" NA           "2012-11-25"
##  [2876] NA           "2012-04-26" NA           "2013-07-26" "2012-11-25"
##  [2881] NA           NA           "2011-04-18" "2013-07-26" "2012-11-25"
##  [2886] NA           NA           "2013-05-29" NA           NA          
##  [2891] NA           NA           NA           "2013-07-23" NA          
##  [2896] NA           "2013-05-29" NA           NA           "2013-07-23"
##  [2901] NA           NA           NA           NA           "2013-07-23"
##  [2906] NA           NA           NA           NA           NA          
##  [2911] NA           NA           "2012-02-18" "2012-02-18" NA          
##  [2916] "2012-02-18" NA           "2013-02-25" "2013-02-25" "2013-02-25"
##  [2921] "2012-02-18" "2012-02-18" "2013-02-25" "2012-02-18" "2013-02-25"
##  [2926] "2012-08-29" "2012-08-29" "2011-04-22" "2012-08-29" "2013-06-22"
##  [2931] "2013-06-22" "2012-08-29" NA           "2011-04-22" "2012-08-29"
##  [2936] NA           "2012-04-17" "2012-04-17" "2012-04-17" "2012-04-17"
##  [2941] "2011-05-28" "2011-05-28" NA           NA           "2013-02-22"
##  [2946] "2013-02-22" "2012-10-29" "2012-10-29" "2013-02-22" "2013-02-22"
##  [2951] "2013-02-22" "2013-02-22" NA           NA           "2012-05-24"
##  [2956] "2012-05-24" "2012-05-24" NA           NA           NA          
##  [2961] NA           NA           NA           NA           "2012-11-14"
##  [2966] NA           NA           "2012-11-14" "2012-11-14" "2012-11-14"
##  [2971] NA           "2012-11-14" NA           NA           NA          
##  [2976] NA           NA           NA           "2013-12-30" NA          
##  [2981] NA           NA           "2013-12-30" "2013-10-14" "2013-10-14"
##  [2986] NA           NA           NA           "2013-10-14" NA          
##  [2991] NA           NA           NA           NA           "2012-03-27"
##  [2996] "2012-03-27" "2012-03-19" "2011-03-19" "2011-03-19" "2012-03-27"
##  [3001] "2012-03-19" "2012-03-19" "2011-07-15" "2011-07-15" "2011-07-15"
##  [3006] "2011-07-15" "2011-07-15" "2012-10-26" "2012-10-26" NA          
##  [3011] NA           "2011-08-15" "2012-03-23" NA           NA          
##  [3016] "2013-01-19" "2012-03-23" NA           "2011-08-15" "2013-01-27"
##  [3021] "2012-03-23" "2012-03-23" NA           "2013-01-19" NA          
##  [3026] "2011-08-15" NA           "2013-01-27" "2014-02-13" "2014-02-13"
##  [3031] "2013-09-18" "2014-02-13" "2013-09-18" "2014-02-13" "2014-02-13"
##  [3036] "2014-02-13" "2013-09-18" NA           NA           NA          
##  [3041] NA           NA           "2013-10-27" NA           NA          
##  [3046] "2012-04-28" "2012-04-28" "2012-04-28" "2013-10-27" "2013-10-27"
##  [3051] "2012-04-28" NA           "2012-04-28" "2013-07-23" "2013-07-23"
##  [3056] "2013-07-23" "2013-07-23" "2013-07-23" NA           NA          
##  [3061] NA           NA           NA           NA           NA          
##  [3066] NA           NA           NA           NA           "2012-01-13"
##  [3071] "2012-01-13" "2011-01-25" "2011-01-25" "2011-01-25" "2011-01-25"
##  [3076] "2011-01-25" "2013-10-18" "2013-10-18" "2013-10-17" "2013-10-18"
##  [3081] "2013-10-18" "2013-10-17" "2013-10-17" "2013-10-17" "2013-10-17"
##  [3086] "2013-10-18" NA           "2012-11-27" "2012-11-27" NA          
##  [3091] "2012-11-27" "2012-11-27" "2012-11-27" NA           NA          
##  [3096] "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18"
##  [3101] "2013-05-17" "2013-05-17" "2013-05-17" NA           NA          
##  [3106] "2013-05-17" NA           "2013-05-17" "2013-05-17" NA          
##  [3111] NA           "2011-12-22" "2011-12-14" NA           "2011-12-22"
##  [3116] "2011-12-29" "2011-12-29" "2011-12-16" "2011-12-14" "2011-12-16"
##  [3121] "2011-12-16" "2011-12-14" NA           NA           NA          
##  [3126] NA           NA           NA           NA           NA          
##  [3131] "2012-06-21" "2012-06-21" NA           "2012-05-23" "2012-05-15"
##  [3136] "2013-03-13" "2012-05-23" "2012-05-15" "2013-03-13" "2011-05-18"
##  [3141] "2012-05-13" "2011-05-18" "2012-05-13" "2011-05-18" "2012-05-13"
##  [3146] "2011-12-13" "2011-09-25" "2011-09-25" "2011-09-25" NA          
##  [3151] "2011-09-25" "2011-12-13" "2011-09-25" NA           "2011-12-13"
##  [3156] "2012-06-28" "2011-12-13" NA           "2012-06-28" "2011-09-25"
##  [3161] "2011-12-13" "2011-06-13" "2011-06-13" NA           NA          
##  [3166] "2011-06-13" NA           NA           NA           NA          
##  [3171] NA           "2012-09-21" "2012-09-21" "2012-09-21" "2013-03-30"
##  [3176] "2013-03-30" "2013-03-30" "2013-07-31" "2013-07-31" "2013-07-31"
##  [3181] "2013-07-31" "2013-07-31" "2013-04-13" "2013-04-13" "2013-05-31"
##  [3186] "2013-05-31" "2013-05-31" "2013-05-31" "2013-07-27" "2013-07-27"
##  [3191] "2013-05-31" "2013-07-27" "2011-09-27" NA           "2011-09-27"
##  [3196] "2011-09-27" "2012-07-21" "2012-07-21" "2012-07-21" "2012-07-21"
##  [3201] NA           "2012-07-21" NA           "2011-12-19" "2011-12-19"
##  [3206] "2011-12-22" "2011-12-19" "2011-12-19" "2011-12-22" "2012-11-18"
##  [3211] "2011-03-28" "2011-03-28" "2011-03-28" "2011-12-19" "2011-12-22"
##  [3216] "2011-12-22" "2011-12-22" "2011-03-28" "2012-11-18" "2011-08-18"
##  [3221] "2013-11-17" "2013-11-17" "2011-08-18" "2011-08-18" "2013-11-17"
##  [3226] "2011-08-18" "2011-08-18" "2013-11-17" NA           NA          
##  [3231] NA           NA           NA           "2012-09-18" NA          
##  [3236] NA           "2013-07-30" "2013-07-30" "2012-09-18" NA          
##  [3241] "2012-09-18" "2013-07-30" NA           "2012-09-18" NA          
##  [3246] NA           "2014-01-25" NA           "2011-03-18" "2011-03-18"
##  [3251] NA           NA           "2011-03-18" NA           NA          
##  [3256] NA           NA           NA           "2011-03-18" NA          
##  [3261] NA           NA           "2011-03-18" NA           "2014-01-25"
##  [3266] NA           NA           "2011-06-24" "2011-06-24" "2011-06-24"
##  [3271] "2011-06-24" "2011-06-24" NA           "2012-11-30" "2012-11-28"
##  [3276] "2012-11-30" "2012-11-22" "2012-11-28" "2012-11-22" "2012-11-28"
##  [3281] "2012-11-28" "2012-11-22" "2012-11-22" "2012-11-22" "2012-11-30"
##  [3286] "2012-11-30" "2012-11-28" "2012-11-30" "2012-01-30" "2012-01-30"
##  [3291] NA           NA           "2013-04-22" "2013-04-22" NA          
##  [3296] "2013-04-22" NA           "2013-04-22" "2013-04-22" "2012-01-22"
##  [3301] "2012-01-22" NA           NA           "2012-01-22" "2012-01-30"
##  [3306] "2013-12-31" "2013-12-31" "2013-12-31" NA           NA          
##  [3311] NA           "2013-04-17" NA           NA           NA          
##  [3316] "2013-04-17" "2013-04-17" NA           "2013-04-17" "2011-03-19"
##  [3321] NA           NA           "2011-03-19" NA           NA          
##  [3326] NA           "2011-07-21" NA           NA           "2011-07-21"
##  [3331] NA           "2011-07-21" "2011-03-19" "2011-07-21" "2011-07-21"
##  [3336] NA           "2011-05-15" "2011-05-15" "2011-05-15" "2012-01-30"
##  [3341] "2011-05-15" "2013-08-25" "2011-05-15" "2013-08-25" "2013-08-25"
##  [3346] "2012-01-30" "2013-12-19" NA           "2013-12-19" "2013-12-19"
##  [3351] NA           NA           NA           NA           NA          
##  [3356] NA           NA           NA           NA           NA          
##  [3361] NA           NA           NA           NA           NA          
##  [3366] NA           "2011-09-25" "2013-09-19" "2013-09-19" "2011-09-25"
##  [3371] NA           "2013-09-19" NA           "2011-09-25" "2011-09-25"
##  [3376] "2011-09-25" NA           NA           "2011-09-25" NA          
##  [3381] NA           NA           "2012-04-27" "2012-04-27" NA          
##  [3386] NA           "2014-01-17" "2014-01-17" NA           NA          
##  [3391] NA           NA           NA           NA           NA          
##  [3396] "2014-01-20" NA           NA           NA           NA          
##  [3401] NA           NA           NA           "2014-01-20" NA          
##  [3406] NA           "2013-06-28" NA           NA           "2013-01-31"
##  [3411] NA           "2013-01-31" NA           "2013-06-28" NA          
##  [3416] "2013-01-31" NA           NA           "2013-01-31" "2013-01-31"
##  [3421] NA           NA           NA           NA           NA          
##  [3426] NA           "2013-06-22" "2013-06-27" "2013-12-29" "2013-12-29"
##  [3431] "2013-06-27" "2013-06-25" "2013-06-22" "2013-12-29" "2013-06-22"
##  [3436] "2013-06-27" "2013-06-27" "2013-06-25" "2013-06-25" "2013-06-25"
##  [3441] "2013-06-22" "2013-06-25" "2013-06-22" "2013-06-27" NA          
##  [3446] NA           "2012-09-13" NA           "2013-08-20" NA          
##  [3451] "2012-09-13" "2013-08-20" "2013-08-20" NA           NA          
##  [3456] "2013-01-24" "2013-01-24" "2013-01-24" NA           NA          
##  [3461] "2013-01-24" NA           "2013-01-24" "2014-01-24" NA          
##  [3466] NA           "2014-01-24" "2014-01-24" NA           "2012-06-26"
##  [3471] NA           NA           "2012-06-26" "2012-06-26" NA          
##  [3476] "2012-06-26" NA           "2012-06-26" NA           "2012-06-26"
##  [3481] "2013-01-24" "2012-08-25" NA           NA           "2012-08-25"
##  [3486] "2013-01-24" NA           "2013-01-24" "2012-08-25" "2012-09-24"
##  [3491] NA           NA           NA           "2012-09-24" NA          
##  [3496] "2011-08-17" "2011-08-17" "2012-09-24" "2012-12-22" NA          
##  [3501] "2012-12-22" NA           NA           "2012-09-16" "2012-12-22"
##  [3506] "2012-09-16" NA           NA           NA           NA          
##  [3511] NA           NA           NA           NA           NA          
##  [3516] "2011-02-21" "2011-02-21" "2011-02-21" NA           "2012-11-23"
##  [3521] "2012-11-23" NA           NA           "2011-02-28" "2011-02-28"
##  [3526] "2011-02-28" "2011-09-21" "2013-12-20" NA           NA          
##  [3531] "2011-09-21" "2013-12-20" "2011-10-23" NA           NA          
##  [3536] NA           "2011-10-23" NA           "2013-12-20" "2013-12-20"
##  [3541] NA           "2013-12-20" "2011-09-21" "2014-02-20" "2014-02-20"
##  [3546] NA           NA           NA           "2014-02-20" NA          
##  [3551] "2014-02-20" "2014-02-20" NA           NA           "2011-07-13"
##  [3556] "2011-07-21" NA           "2011-07-13" NA           "2011-07-21"
##  [3561] NA           NA           NA           NA           NA          
##  [3566] NA           NA           NA           NA           NA          
##  [3571] NA           "2011-09-17" "2012-11-19" NA           "2012-11-19"
##  [3576] "2012-11-19" NA           "2011-09-17" "2012-07-28" NA          
##  [3581] "2012-07-28" NA           NA           "2012-10-25" "2012-10-25"
##  [3586] NA           NA           NA           NA           NA          
##  [3591] NA           NA           NA           NA           NA          
##  [3596] NA           NA           NA           NA           NA          
##  [3601] NA           NA           NA           NA           NA          
##  [3606] NA           NA           "2011-02-23" NA           NA          
##  [3611] "2013-01-18" NA           NA           "2011-02-23" "2011-02-23"
##  [3616] "2013-01-18" NA           NA           NA           NA          
##  [3621] "2011-02-23" "2011-02-23" NA           "2012-09-14" "2012-06-16"
##  [3626] "2012-06-16" "2012-06-16" "2012-06-16" "2012-09-14" "2012-06-16"
##  [3631] NA           "2012-08-29" NA           NA           NA          
##  [3636] NA           "2012-08-29" "2012-11-28" NA           "2013-01-15"
##  [3641] "2012-11-28" "2013-01-15" NA           "2013-01-15" "2013-01-15"
##  [3646] NA           NA           "2012-01-18" NA           "2012-01-18"
##  [3651] NA           NA           NA           NA           NA          
##  [3656] NA           "2014-01-27" "2014-01-27" NA           NA          
##  [3661] "2012-11-21" "2012-11-21" NA           "2014-01-27" NA          
##  [3666] NA           "2012-11-21" "2014-01-27" "2014-01-27" NA          
##  [3671] NA           NA           NA           "2011-06-30" "2011-06-22"
##  [3676] NA           "2011-06-22" "2011-06-26" "2011-06-30" NA          
##  [3681] "2011-06-26" "2011-09-14" "2011-06-30" NA           NA          
##  [3686] "2011-06-26" NA           "2011-09-14" NA           NA          
##  [3691] NA           "2011-09-14" NA           "2011-06-22" "2013-03-16"
##  [3696] NA           NA           "2013-03-16" NA           NA          
##  [3701] NA           NA           NA           "2013-03-16" "2012-10-31"
##  [3706] "2013-03-16" "2013-03-16" NA           "2012-10-31" NA          
##  [3711] NA           NA           NA           NA           NA          
##  [3716] "2011-11-13" NA           "2013-03-17" "2011-11-13" "2013-03-17"
##  [3721] NA           NA           "2011-11-13" "2011-11-13" NA          
##  [3726] "2011-11-13" "2013-03-17" "2011-05-22" NA           "2011-05-22"
##  [3731] "2013-11-28" "2013-11-28" "2013-03-24" "2013-02-18" "2013-02-18"
##  [3736] "2013-02-16" "2013-03-24" NA           "2013-02-16" "2013-02-18"
##  [3741] "2013-02-16" "2013-02-16" "2013-02-18" NA           "2013-02-16"
##  [3746] "2013-02-18" NA           "2014-02-14" "2014-02-14" "2011-07-21"
##  [3751] "2011-07-22" "2011-07-21" "2011-07-21" "2014-02-14" "2011-07-22"
##  [3756] "2011-07-22" "2011-07-22" "2011-07-21" "2011-07-21" "2011-07-22"
##  [3761] NA           NA           NA           NA           "2012-02-25"
##  [3766] NA           NA           NA           "2012-02-25" NA          
##  [3771] NA           NA           "2012-04-29" NA           "2013-03-31"
##  [3776] "2013-03-31" NA           "2013-10-18" "2013-10-18" "2012-04-29"
##  [3781] "2012-04-29" "2012-04-29" NA           NA           NA          
##  [3786] "2013-03-31" "2012-04-29" "2013-11-17" NA           NA          
##  [3791] NA           "2013-11-17" NA           NA           NA          
##  [3796] NA           NA           NA           NA           "2014-01-22"
##  [3801] "2013-10-23" "2014-01-22" "2014-01-22" "2013-10-23" "2014-01-22"
##  [3806] "2014-01-22" "2014-01-22" "2013-10-23" "2013-10-23" "2013-10-23"
##  [3811] "2012-11-21" "2012-11-21" "2012-03-17" "2012-03-17" "2012-11-21"
##  [3816] "2012-03-17" NA           NA           NA           NA          
##  [3821] "2013-01-25" NA           NA           NA           NA          
##  [3826] NA           "2013-01-25" NA           NA           "2013-01-25"
##  [3831] "2012-03-22" "2012-02-21" "2012-02-21" "2012-09-19" "2012-09-19"
##  [3836] "2012-03-22" "2011-10-17" NA           "2012-09-19" "2011-10-17"
##  [3841] "2012-09-19" "2012-09-19" NA           NA           NA          
##  [3846] NA           NA           "2012-02-21" NA           NA          
##  [3851] "2011-10-17" NA           NA           "2011-09-24" "2011-09-24"
##  [3856] NA           NA           "2011-09-24" "2012-12-22" "2012-12-22"
##  [3861] "2012-12-22" "2013-12-20" "2012-12-22" "2012-06-25" "2012-12-22"
##  [3866] "2013-12-20" "2012-06-25" "2013-12-20" "2012-06-25" "2012-05-21"
##  [3871] "2012-05-21" "2013-09-24" "2013-09-24" NA           NA          
##  [3876] NA           NA           NA           NA           NA          
##  [3881] "2013-06-28" "2013-06-28" NA           NA           NA          
##  [3886] "2013-06-28" "2013-06-28" "2013-06-28" NA           "2011-07-28"
##  [3891] "2011-07-28" NA           "2011-07-28" NA           NA          
##  [3896] "2011-07-28" "2011-07-28" NA           "2011-07-28" "2012-01-19"
##  [3901] "2012-01-19" "2012-01-19" "2012-01-19" "2012-01-19" NA          
##  [3906] "2012-02-13" NA           NA           "2011-07-13" "2011-07-13"
##  [3911] "2012-02-13" "2012-12-26" "2012-02-13" NA           "2012-02-13"
##  [3916] NA           "2012-02-13" NA           "2011-07-13" NA          
##  [3921] "2012-12-26" "2012-12-26" NA           NA           NA          
##  [3926] NA           NA           NA           NA           NA          
##  [3931] "2011-03-28" NA           "2011-03-28" "2011-11-22" "2011-11-22"
##  [3936] "2011-11-22" "2014-02-19" "2014-02-19" "2014-02-19" "2014-02-19"
##  [3941] "2014-02-19" NA           NA           NA           NA          
##  [3946] NA           "2011-12-22" "2011-12-22" "2011-12-22" "2011-12-22"
##  [3951] "2011-12-22" "2012-11-20" "2012-11-20" NA           "2012-11-20"
##  [3956] "2013-04-14" "2014-01-29" "2012-10-14" "2013-04-14" "2014-01-29"
##  [3961] "2012-11-20" "2012-10-14" NA           "2014-01-29" "2012-10-14"
##  [3966] "2013-04-14" NA           "2012-10-14" "2013-04-14" "2013-04-14"
##  [3971] "2012-10-14" "2012-11-20" "2012-11-20" NA           NA          
##  [3976] NA           NA           NA           NA           "2013-02-20"
##  [3981] NA           "2013-02-20" NA           NA           NA          
##  [3986] "2013-02-20" "2013-02-20" "2013-02-20" "2013-02-20" NA          
##  [3991] NA           "2011-12-18" NA           "2012-01-14" "2011-12-18"
##  [3996] NA           NA           "2012-01-14" "2012-01-14" NA          
##  [4001] "2012-01-14" "2012-01-14" "2012-08-17" "2012-05-22" NA          
##  [4006] "2012-05-22" "2012-05-17" "2012-05-17" "2012-08-17" NA          
##  [4011] "2012-05-22" "2012-05-17" "2011-09-18" NA           "2011-09-18"
##  [4016] NA           NA           NA           "2011-05-29" "2011-05-29"
##  [4021] "2011-05-29" "2012-10-14" "2012-10-14" "2012-02-18" "2012-11-29"
##  [4026] "2012-07-15" "2012-11-29" "2012-11-29" "2012-07-15" "2011-07-20"
##  [4031] "2012-02-18" "2012-02-18" "2012-02-18" "2012-11-29" "2011-07-20"
##  [4036] "2012-11-29" "2012-02-18" "2012-02-26" "2012-02-16" "2012-02-26"
##  [4041] "2012-02-16" "2012-02-26" "2012-02-16" "2011-12-22" "2011-12-22"
##  [4046] "2011-12-22" "2011-12-22" "2011-12-22" "2014-02-18" "2012-02-17"
##  [4051] NA           "2012-02-17" "2012-02-17" "2014-02-18" "2012-02-17"
##  [4056] "2012-02-17" NA           NA           "2014-02-18" NA          
##  [4061] NA           NA           NA           "2011-09-26" "2011-09-26"
##  [4066] NA           NA           "2012-04-19" "2012-04-19" "2012-04-18"
##  [4071] "2012-04-19" "2012-04-18" "2012-04-19" "2012-04-18" "2012-04-18"
##  [4076] "2012-04-19" "2012-04-18" "2012-03-16" "2012-10-14" "2012-10-14"
##  [4081] "2012-03-16" "2012-03-16" NA           NA           "2012-03-16"
##  [4086] "2012-10-14" "2012-10-14" "2012-03-16" "2013-01-22" "2013-01-16"
##  [4091] "2013-01-22" "2012-07-27" "2013-01-22" "2013-01-22" "2013-01-22"
##  [4096] "2012-07-27" "2013-01-16" "2013-01-16" "2013-12-19" "2013-05-31"
##  [4101] "2013-01-16" "2012-07-21" "2013-05-31" "2013-12-19" "2013-05-31"
##  [4106] "2013-05-31" "2013-01-16" "2012-07-27" "2013-05-31" "2012-07-21"
##  [4111] "2012-07-21" "2013-12-19" NA           "2012-05-31" NA          
##  [4116] NA           NA           "2012-05-31" "2011-07-22" "2011-07-22"
##  [4121] "2011-07-22" "2011-11-29" "2011-11-29" "2011-11-29" "2011-11-29"
##  [4126] "2011-11-29" "2012-07-15" "2012-07-15" NA           "2013-11-30"
##  [4131] "2013-11-30" NA           NA           "2013-11-30" "2013-04-17"
##  [4136] "2013-04-17" NA           NA           NA           NA          
##  [4141] NA           "2013-03-20" "2011-10-16" "2013-03-20" "2012-11-26"
##  [4146] "2013-03-20" "2011-10-16" "2011-10-16" "2012-11-26" "2011-06-17"
##  [4151] "2013-03-20" "2013-03-20" "2011-06-17" "2011-10-16" "2011-10-16"
##  [4156] "2011-06-13" "2011-06-13" "2013-05-23" NA           "2013-05-31"
##  [4161] NA           NA           "2013-05-23" NA           "2013-09-15"
##  [4166] "2013-05-23" NA           "2013-09-15" "2013-05-31" NA          
##  [4171] NA           "2013-05-23" NA           "2013-05-23" NA          
##  [4176] NA           "2013-02-23" "2013-02-15" "2013-02-23" "2013-02-15"
##  [4181] "2011-11-14" "2013-02-15" "2013-02-23" "2013-02-23" "2013-02-15"
##  [4186] "2013-02-23" "2011-11-14" "2012-09-19" NA           NA          
##  [4191] "2012-09-19" NA           "2013-08-13" NA           "2013-08-13"
##  [4196] "2013-08-13" "2011-03-27" NA           NA           "2011-03-27"
##  [4201] "2011-03-27" NA           NA           NA           "2013-08-19"
##  [4206] "2011-02-22" "2013-08-19" "2011-02-22" "2011-02-22" NA          
##  [4211] "2011-02-22" "2011-02-22" NA           "2013-01-26" "2012-08-14"
##  [4216] "2012-08-14" "2012-08-14" "2012-08-14" "2013-01-26" "2012-08-14"
##  [4221] "2011-04-13" "2011-04-13" "2011-04-13" "2011-04-13" "2011-04-13"
##  [4226] "2011-12-26" "2013-03-27" "2011-12-26" "2013-03-27" "2013-03-27"
##  [4231] "2012-03-28" "2012-03-28" "2012-03-28" "2012-03-28" "2012-03-28"
##  [4236] "2011-12-26" "2013-08-28" "2011-03-24" "2013-08-28" "2013-08-28"
##  [4241] "2013-08-28" NA           "2011-03-24" NA           NA          
##  [4246] "2013-08-28" "2011-03-24" NA           NA           NA          
##  [4251] NA           NA           NA           NA           NA          
##  [4256] NA           NA           NA           NA           NA          
##  [4261] NA           NA           NA           "2012-03-15" "2012-03-15"
##  [4266] NA           "2012-03-15" NA           NA           NA          
##  [4271] NA           NA           NA           NA           "2013-07-29"
##  [4276] "2013-07-31" NA           "2013-07-29" NA           "2013-07-31"
##  [4281] NA           NA           NA           "2012-02-13" "2012-02-13"
##  [4286] NA           NA           NA           "2013-07-26" "2013-07-26"
##  [4291] NA           "2013-07-26" "2013-09-23" NA           "2013-09-23"
##  [4296] NA           NA           NA           "2013-05-22" NA          
##  [4301] NA           NA           "2013-05-22" NA           "2013-05-22"
##  [4306] "2013-05-22" NA           NA           NA           "2012-08-27"
##  [4311] "2012-08-27" "2012-08-27" "2013-08-27" "2012-08-27" NA          
##  [4316] "2013-07-13" "2012-08-27" "2013-08-27" "2013-07-13" "2013-07-13"
##  [4321] NA           "2013-11-22" NA           NA           "2013-11-22"
##  [4326] NA           "2013-11-22" "2013-10-27" "2013-11-22" "2013-11-22"
##  [4331] "2013-10-27" NA           "2011-03-25" NA           NA          
##  [4336] NA           NA           "2011-03-25" NA           NA          
##  [4341] NA           NA           NA           "2012-12-31" "2012-12-31"
##  [4346] "2012-12-31" "2011-10-30" "2013-11-16" NA           "2013-11-16"
##  [4351] NA           "2013-11-16" "2011-10-30" "2011-10-30" "2011-10-30"
##  [4356] NA           "2011-10-30" NA           "2012-04-28" NA          
##  [4361] "2012-04-28" "2012-04-28" NA           NA           "2012-04-28"
##  [4366] NA           NA           NA           NA           NA          
##  [4371] "2012-04-28" NA           NA           "2013-10-23" "2013-10-23"
##  [4376] NA           NA           "2013-10-23" NA           "2013-10-23"
##  [4381] NA           "2013-10-23" NA           "2013-04-13" NA          
##  [4386] NA           "2013-04-13" NA           "2013-04-13" NA          
##  [4391] NA           "2013-04-13" NA           "2013-04-13" "2013-11-22"
##  [4396] "2013-11-22" "2013-09-14" "2013-09-14" "2013-11-22" "2013-11-22"
##  [4401] "2013-09-14" NA           NA           NA           NA          
##  [4406] NA           NA           NA           NA           NA          
##  [4411] NA           NA           NA           NA           NA          
##  [4416] "2012-10-15" "2012-10-15" NA           NA           "2012-10-15"
##  [4421] "2011-05-24" "2011-05-24" "2013-04-17" "2013-04-17" "2011-05-24"
##  [4426] NA           NA           NA           "2013-10-31" "2013-10-31"
##  [4431] "2013-10-31" NA           "2013-01-22" "2013-01-22" "2013-12-15"
##  [4436] NA           NA           "2013-01-22" "2013-12-15" "2013-12-15"
##  [4441] NA           "2013-01-22" "2013-01-22" NA           "2013-09-29"
##  [4446] "2011-09-18" "2011-09-18" "2013-09-29" "2011-09-18" "2012-09-15"
##  [4451] "2012-09-15" "2012-09-15" NA           NA           NA          
##  [4456] NA           NA           "2013-02-16" "2013-08-13" NA          
##  [4461] NA           "2013-08-13" "2013-02-16" "2013-02-16" "2013-02-16"
##  [4466] NA           "2013-02-16" "2012-10-13" "2013-02-13" "2013-02-13"
##  [4471] "2012-10-13" "2013-10-15" "2012-10-13" "2012-10-13" "2013-10-15"
##  [4476] "2013-10-15" "2012-10-13" NA           "2012-07-27" NA          
##  [4481] NA           "2013-02-17" "2013-02-17" NA           "2012-07-27"
##  [4486] NA           "2012-07-27" NA           NA           NA          
##  [4491] NA           NA           NA           NA           NA          
##  [4496] "2011-04-27" "2013-01-31" "2013-01-31" "2011-04-27" "2011-06-21"
##  [4501] "2011-06-21" NA           NA           NA           "2013-11-14"
##  [4506] "2013-11-14" "2013-05-14" "2013-05-14" NA           NA          
##  [4511] "2013-12-22" NA           "2014-01-25" "2013-12-22" "2013-12-22"
##  [4516] "2013-12-22" NA           "2013-05-14" "2013-12-22" "2014-01-25"
##  [4521] NA           "2013-05-14" NA           "2013-05-14" NA          
##  [4526] NA           NA           NA           "2013-12-22" "2014-01-28"
##  [4531] "2014-01-28" "2011-08-26" "2013-09-26" "2012-02-13" "2013-09-26"
##  [4536] "2011-08-26" "2011-08-26" "2012-02-13" "2013-09-26" "2012-02-13"
##  [4541] "2012-02-21" "2011-08-26" "2011-08-26" "2012-02-21" "2013-09-26"
##  [4546] "2012-02-21" "2013-05-14" NA           "2013-05-14" "2011-11-14"
##  [4551] "2013-05-14" NA           NA           NA           NA          
##  [4556] "2013-05-14" "2011-11-14" NA           "2013-05-14" NA          
##  [4561] "2011-11-14" "2012-04-27" "2012-04-27" "2012-04-27" "2012-04-27"
##  [4566] "2013-03-13" "2012-04-27" "2013-03-13" "2011-02-23" "2011-02-23"
##  [4571] "2013-02-24" "2013-02-24" "2011-02-23" NA           NA          
##  [4576] NA           "2012-06-17" NA           NA           "2012-06-17"
##  [4581] "2012-06-17" "2012-06-17" "2012-06-17" "2012-07-19" "2012-07-19"
##  [4586] "2012-07-19" "2012-07-19" "2012-07-19" "2011-10-23" "2011-10-23"
##  [4591] "2011-10-23" NA           NA           NA           NA          
##  [4596] NA           NA           NA           NA           NA          
##  [4601] "2013-11-20" "2013-11-20" "2013-11-29" "2013-11-20" NA          
##  [4606] NA           "2013-11-20" "2013-11-20" "2011-12-28" "2012-03-24"
##  [4611] "2012-03-24" NA           "2013-11-20" "2013-11-29" "2013-11-29"
##  [4616] NA           "2013-11-29" "2011-12-28" "2013-11-29" "2012-03-24"
##  [4621] "2013-11-29" "2011-08-29" "2013-05-20" "2011-08-29" "2013-05-20"
##  [4626] "2013-05-20" "2011-08-29" "2013-07-16" "2013-07-23" "2013-07-13"
##  [4631] NA           "2013-07-16" "2013-07-16" "2013-07-13" "2013-07-16"
##  [4636] NA           "2013-07-23" "2013-07-23" "2012-03-21" "2012-03-27"
##  [4641] "2013-10-18" "2013-10-23" "2012-03-21" "2013-10-23" "2013-10-18"
##  [4646] "2013-10-23" "2012-03-27" "2013-10-23" "2013-10-18" "2013-10-23"
##  [4651] "2013-10-18" "2013-10-18" "2013-10-18" "2013-10-23" NA          
##  [4656] NA           NA           NA           NA           NA          
##  [4661] NA           NA           NA           NA           "2012-04-26"
##  [4666] "2013-12-20" NA           NA           "2012-04-26" "2011-09-18"
##  [4671] "2011-09-18" "2011-09-18" "2013-12-20" "2013-12-20" "2011-05-21"
##  [4676] "2012-04-26" "2011-09-18" "2011-05-21" NA           "2013-12-21"
##  [4681] "2013-12-21" "2013-12-21" "2013-12-21" "2013-12-21" "2011-09-25"
##  [4686] "2011-09-25" "2012-03-24" NA           "2012-03-24" "2012-02-20"
##  [4691] NA           "2012-03-24" NA           "2012-03-24" NA          
##  [4696] "2012-03-24" NA           NA           NA           NA          
##  [4701] "2013-03-21" NA           "2012-02-20" "2013-03-21" NA          
##  [4706] "2013-03-21" "2012-02-20" NA           NA           NA          
##  [4711] "2013-03-21" "2012-02-20" NA           NA           "2012-02-20"
##  [4716] NA           "2011-01-29" "2011-09-16" "2011-01-29" "2011-01-29"
##  [4721] "2011-01-29" "2011-01-29" NA           NA           NA          
##  [4726] "2011-09-16" NA           "2011-09-16" "2011-09-16" NA          
##  [4731] "2012-10-28" "2012-10-28" "2012-10-28" "2012-12-14" "2012-12-14"
##  [4736] "2013-02-26" "2013-02-26" "2013-02-26" "2012-09-22" "2011-02-22"
##  [4741] "2012-09-22" "2012-09-22" NA           "2011-02-22" NA          
##  [4746] NA           NA           NA           "2011-09-29" NA          
##  [4751] NA           "2011-09-29" NA           "2011-05-13" "2011-05-13"
##  [4756] "2011-12-18" "2012-05-21" NA           "2012-04-16" "2011-05-22"
##  [4761] "2011-12-18" "2011-12-18" NA           "2011-05-22" "2011-05-22"
##  [4766] "2012-04-16" "2011-05-13" "2012-05-21" "2011-02-15" NA          
##  [4771] "2011-08-21" "2011-08-21" "2011-08-21" NA           "2011-08-21"
##  [4776] "2011-02-15" NA           "2011-08-21" NA           NA          
##  [4781] NA           NA           NA           NA           NA          
##  [4786] NA           "2011-09-18" "2011-09-18" "2011-09-18" "2011-05-31"
##  [4791] NA           NA           "2011-05-31" NA           "2013-10-14"
##  [4796] "2011-05-31" NA           "2011-03-21" "2013-10-14" NA          
##  [4801] NA           NA           NA           "2011-03-21" NA          
##  [4806] NA           "2013-10-14" "2011-05-31" "2013-02-14" "2013-02-14"
##  [4811] "2012-06-27" "2012-06-27" "2012-06-27" NA           NA          
##  [4816] "2011-08-27" NA           NA           NA           "2011-08-27"
##  [4821] "2011-08-27" "2011-08-27" NA           "2012-11-17" "2012-11-17"
##  [4826] "2011-09-22" "2011-09-22" "2012-06-24" "2012-06-24" "2012-06-24"
##  [4831] "2012-11-19" "2012-11-19" "2011-09-22" "2012-06-24" "2012-06-24"
##  [4836] NA           NA           NA           "2011-11-18" "2011-11-15"
##  [4841] NA           "2011-11-18" "2011-07-31" "2011-11-15" "2011-11-15"
##  [4846] NA           NA           NA           NA           "2011-09-30"
##  [4851] "2011-09-30" "2011-11-18" "2011-07-31" NA           NA          
##  [4856] NA           NA           NA           "2011-07-31" "2013-01-26"
##  [4861] "2013-01-26" "2013-10-29" "2013-10-29" "2013-10-29" "2013-10-29"
##  [4866] "2013-10-25" NA           NA           "2013-10-29" "2013-10-25"
##  [4871] "2013-10-25" "2013-10-25" "2012-07-26" "2011-11-27" "2012-07-26"
##  [4876] "2012-07-26" "2012-07-26" "2011-11-27" NA           NA          
##  [4881] NA           NA           NA           NA           NA          
##  [4886] "2012-07-30" "2012-07-30" "2011-08-19" "2011-08-19" "2011-08-18"
##  [4891] "2011-08-18" "2011-08-19" "2011-08-18" "2011-08-18" "2011-08-19"
##  [4896] NA           "2013-06-16" "2013-06-16" NA           NA          
##  [4901] NA           NA           NA           "2013-06-16" NA          
##  [4906] NA           "2012-09-20" "2012-09-20" NA           "2012-09-20"
##  [4911] "2012-09-23" NA           NA           NA           NA          
##  [4916] "2012-09-23" NA           "2012-09-23" NA           NA          
##  [4921] NA           NA           NA           NA           NA          
##  [4926] NA           NA           NA           "2011-03-27" "2011-03-27"
##  [4931] "2011-03-27" "2011-03-27" "2011-03-27" "2011-10-14" "2012-10-19"
##  [4936] "2011-10-14" "2011-10-14" "2012-10-19" "2013-09-30" "2011-10-14"
##  [4941] "2011-10-14" "2013-09-30" "2013-04-21" NA           "2013-04-21"
##  [4946] "2013-04-21" "2013-04-21" "2013-04-21" NA           NA          
##  [4951] "2012-10-29" "2013-03-21" "2013-03-21" "2013-03-21" "2012-10-29"
##  [4956] "2012-08-28" "2012-04-16" "2012-04-16" "2013-07-18" "2012-04-16"
##  [4961] "2012-08-28" "2013-07-18" "2012-04-16" "2012-08-28" "2012-08-28"
##  [4966] "2012-03-24" "2012-03-24" "2013-07-18" "2011-12-29" "2012-06-22"
##  [4971] "2011-12-29" "2011-12-29" "2011-12-29" "2011-12-29" "2012-06-22"
##  [4976] NA           NA           NA           NA           NA          
##  [4981] "2013-08-13" "2013-08-13" "2013-08-13" "2011-04-26" "2011-04-26"
##  [4986] "2011-04-26" "2013-08-13" "2011-04-26" "2011-04-26" "2013-08-13"
##  [4991] "2011-04-26" "2013-08-19" "2013-04-15" "2013-04-15" "2013-08-19"
##  [4996] NA           "2013-04-15" NA           "2013-04-15" "2013-08-19"
##  [5001] "2013-04-15" NA           NA           "2013-11-20" "2013-11-20"
##  [5006] NA           NA           "2013-08-16" NA           "2013-08-16"
##  [5011] NA           "2013-08-16" "2012-06-18" "2012-06-18" "2012-06-18"
##  [5016] "2012-06-18" "2012-01-16" "2012-06-18" "2012-01-16" "2012-02-27"
##  [5021] NA           "2012-02-27" NA           "2014-01-23" NA          
##  [5026] "2014-01-23" "2013-06-22" NA           NA           NA          
##  [5031] NA           "2013-06-22" "2012-12-26" "2011-04-13" NA          
##  [5036] "2012-12-26" "2012-12-26" "2011-04-22" "2011-04-13" "2012-12-26"
##  [5041] NA           "2011-04-22" "2012-12-26" NA           NA          
##  [5046] NA           NA           NA           NA           NA          
##  [5051] NA           NA           NA           NA           NA          
##  [5056] NA           NA           "2013-05-19" "2013-05-19" "2013-05-22"
##  [5061] "2013-05-19" "2013-05-19" NA           NA           NA          
##  [5066] NA           "2013-05-22" "2013-05-22" "2013-05-19" "2013-05-19"
##  [5071] "2013-02-15" "2013-02-15" "2013-02-15" "2013-02-15" "2013-02-15"
##  [5076] "2012-09-18" "2012-09-18" "2012-09-18" "2011-06-30" "2012-04-18"
##  [5081] "2012-04-18" "2012-04-19" "2012-04-19" "2011-06-30" "2012-05-21"
##  [5086] "2013-11-17" "2013-11-17" "2012-05-21" "2012-05-21" "2013-03-26"
##  [5091] "2013-03-26" "2013-11-17" "2012-05-24" NA           "2012-05-21"
##  [5096] "2011-06-30" NA           "2012-05-24" "2012-05-24" "2012-05-24"
##  [5101] "2013-03-26" "2013-03-26" NA           "2012-05-21" "2011-06-30"
##  [5106] "2011-09-23" "2011-09-23" "2012-05-24" "2013-03-26" "2013-12-14"
##  [5111] "2011-07-18" "2013-12-14" "2011-07-18" "2011-07-18" "2011-12-29"
##  [5116] "2011-12-29" "2011-12-29" "2011-12-29" NA           NA          
##  [5121] "2012-07-14" "2012-07-14" "2012-07-14" "2013-09-16" "2013-09-16"
##  [5126] "2013-09-16" "2013-09-16" "2013-09-16" "2011-07-24" "2011-07-24"
##  [5131] "2011-08-22" NA           "2011-07-24" NA           "2011-08-22"
##  [5136] NA           NA           NA           "2013-01-22" "2013-01-22"
##  [5141] "2013-01-22" "2012-07-22" "2013-05-30" "2013-05-30" "2012-07-22"
##  [5146] "2012-07-22" "2013-05-30" "2012-07-22" "2013-05-30" "2013-05-30"
##  [5151] NA           "2011-12-15" NA           NA           NA          
##  [5156] NA           NA           NA           NA           "2013-07-31"
##  [5161] "2012-08-31" "2011-12-15" "2011-12-15" "2012-08-31" "2011-12-15"
##  [5166] NA           "2011-12-15" "2011-12-15" NA           "2013-07-31"
##  [5171] NA           NA           NA           NA           NA          
##  [5176] "2012-02-29" NA           NA           NA           NA          
##  [5181] "2012-02-29" NA           NA           NA           NA          
##  [5186] NA           NA           NA           "2012-02-29" NA          
##  [5191] NA           NA           NA           NA           NA          
##  [5196] "2012-02-29" "2012-01-14" "2012-01-14" "2012-01-14" "2012-01-14"
##  [5201] "2012-01-14" "2012-01-14" "2012-10-17" "2012-01-28" "2012-01-28"
##  [5206] "2012-01-19" "2012-01-19" "2012-01-19" "2012-01-19" "2012-01-19"
##  [5211] "2012-10-17" NA           NA           "2012-06-15" NA          
##  [5216] "2012-01-19" "2012-06-15" NA           NA           NA          
##  [5221] "2012-06-15" "2012-06-15" NA           "2011-11-19" "2011-11-19"
##  [5226] "2011-11-19" NA           "2011-11-19" NA           "2011-11-19"
##  [5231] NA           NA           "2012-10-23" "2012-10-23" "2012-10-23"
##  [5236] NA           "2013-03-13" NA           "2013-03-13" NA          
##  [5241] "2013-03-13" NA           NA           "2013-03-13" "2013-03-13"
##  [5246] NA           NA           "2013-03-13" NA           "2013-05-14"
##  [5251] "2013-09-15" "2012-02-22" "2013-10-21" "2013-09-15" "2013-06-22"
##  [5256] "2013-10-21" "2012-02-22" "2013-05-14" "2013-09-15" "2013-10-21"
##  [5261] "2013-06-22" "2013-10-21" "2013-06-22" "2013-10-21" "2013-10-21"
##  [5266] "2013-06-22" "2013-01-27" "2013-01-27" "2013-01-27" "2013-01-27"
##  [5271] "2012-12-24" NA           "2013-01-27" "2012-12-24" NA          
##  [5276] "2012-12-28" "2012-12-28" NA           "2012-12-24" "2012-12-24"
##  [5281] "2012-12-28" "2012-12-24" "2012-12-28" "2012-12-28" "2012-12-24"
##  [5286] NA           NA           NA           "2012-12-28" NA          
##  [5291] NA           "2012-03-22" NA           "2011-06-18" "2011-06-18"
##  [5296] "2012-03-22" "2012-09-19" "2012-09-19" "2012-09-19" NA          
##  [5301] "2011-06-18" "2013-04-24" "2013-04-24" "2013-04-22" "2013-04-22"
##  [5306] "2013-04-24" "2013-04-22" NA           NA           NA          
##  [5311] NA           NA           "2012-06-17" "2012-06-17" "2012-06-17"
##  [5316] "2012-06-17" NA           "2013-08-16" NA           NA          
##  [5321] "2013-10-22" "2012-11-13" "2013-08-16" "2013-10-22" "2013-03-23"
##  [5326] NA           "2012-11-13" "2013-03-23" "2013-08-16" NA          
##  [5331] "2013-11-29" "2013-11-29" NA           NA           NA          
##  [5336] NA           "2012-09-26" "2012-09-26" "2012-09-26" NA          
##  [5341] NA           NA           "2011-09-27" "2011-09-27" "2011-09-27"
##  [5346] NA           NA           NA           NA           NA          
##  [5351] NA           NA           NA           NA           NA          
##  [5356] NA           NA           NA           NA           "2012-04-24"
##  [5361] "2012-04-24" NA           NA           NA           NA          
##  [5366] "2012-04-24" NA           NA           "2012-04-24" "2012-04-24"
##  [5371] NA           NA           "2012-06-19" NA           NA          
##  [5376] "2012-06-19" NA           "2012-06-19" NA           "2012-06-19"
##  [5381] "2012-06-19" NA           "2013-12-24" "2013-12-24" "2013-12-16"
##  [5386] "2013-12-16" "2013-12-24" "2013-12-16" NA           NA          
##  [5391] NA           NA           NA           "2011-05-14" NA          
##  [5396] NA           NA           NA           NA           "2012-01-31"
##  [5401] "2012-01-31" "2011-05-14" NA           NA           NA          
##  [5406] "2012-01-31" "2011-05-14" "2012-01-21" NA           "2012-01-21"
##  [5411] "2011-05-14" NA           "2012-01-21" "2011-06-20" "2011-06-20"
##  [5416] "2011-06-20" NA           NA           NA           NA          
##  [5421] "2013-11-23" "2013-11-23" "2013-11-29" "2013-11-29" NA          
##  [5426] "2011-10-29" "2011-10-29" NA           NA           NA          
##  [5431] NA           "2012-01-20" "2013-12-16" NA           NA          
##  [5436] NA           NA           "2012-01-20" "2013-12-16" "2013-12-16"
##  [5441] NA           "2012-08-31" NA           "2012-08-31" "2012-08-31"
##  [5446] "2013-01-26" "2012-08-31" "2013-01-26" "2013-01-26" "2012-05-16"
##  [5451] NA           NA           "2013-01-26" NA           "2012-05-16"
##  [5456] "2012-05-16" NA           "2012-08-31" NA           "2013-01-26"
##  [5461] NA           NA           "2012-02-28" NA           "2013-02-20"
##  [5466] NA           "2013-09-23" NA           "2013-09-23" NA          
##  [5471] "2012-02-28" "2013-02-20" NA           "2013-02-20" "2012-02-28"
##  [5476] NA           "2013-09-23" NA           "2014-01-28" "2014-01-28"
##  [5481] "2014-01-28" "2014-01-28" "2014-01-28" "2012-11-21" NA          
##  [5486] NA           NA           NA           "2012-11-21" NA          
##  [5491] NA           "2012-09-27" "2012-09-27" NA           "2013-01-15"
##  [5496] "2013-02-28" "2012-03-29" "2012-09-27" "2012-09-27" "2012-09-27"
##  [5501] "2013-01-15" "2012-03-29" "2012-09-27" "2013-02-28" "2013-02-28"
##  [5506] "2013-01-15" NA           NA           "2012-03-29" NA          
##  [5511] NA           NA           NA           "2013-06-18" "2013-06-18"
##  [5516] "2013-06-18" "2013-06-18" "2013-09-16" NA           "2013-09-16"
##  [5521] "2013-09-16" NA           NA           "2013-09-16" NA          
##  [5526] "2013-09-16" NA           "2012-05-25" "2012-05-25" "2012-05-25"
##  [5531] "2012-05-25" "2013-07-31" "2013-07-20" "2012-01-19" "2013-07-20"
##  [5536] "2012-01-19" "2013-07-31" "2013-07-20" "2013-07-20" "2013-07-20"
##  [5541] "2011-09-25" "2012-03-15" "2011-09-25" "2012-03-15" "2012-03-15"
##  [5546] NA           "2011-09-25" "2012-03-15" NA           "2012-03-15"
##  [5551] NA           "2012-08-26" "2013-12-16" "2011-02-23" "2013-12-16"
##  [5556] "2013-12-16" "2012-08-26" "2012-08-26" "2011-02-23" "2011-02-23"
##  [5561] "2012-08-26" "2011-02-23" "2011-02-23" "2013-08-18" "2014-01-17"
##  [5566] "2013-08-18" "2013-08-18" "2013-08-18" NA           "2013-08-18"
##  [5571] NA           "2014-01-17" "2014-01-17" "2013-08-22" "2013-08-22"
##  [5576] NA           NA           NA           NA           NA          
##  [5581] "2013-09-15" "2013-09-15" "2011-11-26" "2013-09-16" "2013-09-15"
##  [5586] "2013-09-16" "2012-10-29" "2013-09-16" "2011-11-26" "2013-09-15"
##  [5591] "2013-09-16" "2013-09-15" "2012-10-29" "2013-09-16" NA          
##  [5596] NA           "2011-03-27" "2011-03-27" "2011-06-22" "2011-08-30"
##  [5601] "2011-08-30" "2011-06-17" NA           NA           "2011-08-30"
##  [5606] "2011-08-22" "2011-06-22" NA           "2011-06-17" "2011-08-22"
##  [5611] "2011-08-22" "2011-08-30" "2011-08-30" "2011-06-17" "2011-08-22"
##  [5616] NA           "2011-06-17" "2011-08-22" "2011-06-22" "2011-06-22"
##  [5621] "2011-06-22" "2011-06-17" NA           NA           "2011-01-29"
##  [5626] "2011-01-29" "2011-01-29" "2011-01-29" "2011-01-29" "2013-05-17"
##  [5631] "2013-05-17" "2013-05-17" "2013-05-17" "2013-05-17" "2012-06-24"
##  [5636] "2012-06-24" "2012-05-18" "2012-06-24" "2012-05-18" NA          
##  [5641] "2012-06-24" "2012-06-24" NA           NA           NA          
##  [5646] NA           NA           NA           NA           NA          
##  [5651] NA           "2014-01-16" "2014-01-16" "2014-01-16" "2014-01-16"
##  [5656] "2014-01-16" "2014-01-16" "2011-08-21" "2011-08-14" "2011-08-21"
##  [5661] "2013-03-15" "2011-08-14" "2011-08-14" "2013-03-15" "2011-08-21"
##  [5666] NA           NA           NA           NA           NA          
##  [5671] NA           "2012-08-17" "2012-08-17" "2011-03-24" "2011-03-24"
##  [5676] "2011-03-24" "2011-03-24" "2011-03-24" "2013-01-19" "2013-01-19"
##  [5681] "2013-01-19" "2013-01-19" "2013-01-19" "2013-01-19" "2013-06-15"
##  [5686] "2013-03-14" "2013-06-15" "2013-06-15" "2013-06-15" "2012-12-20"
##  [5691] "2013-03-14" "2012-06-30" "2013-06-15" "2013-06-15" "2012-06-30"
##  [5696] "2012-12-20" "2013-03-14" NA           NA           NA          
##  [5701] NA           NA           "2013-11-18" NA           "2013-11-18"
##  [5706] NA           "2013-11-18" NA           NA           "2013-11-18"
##  [5711] "2013-01-14" "2011-11-23" "2013-01-14" "2013-12-31" "2013-01-14"
##  [5716] "2012-08-29" "2011-11-23" "2013-01-14" "2011-11-23" "2011-11-22"
##  [5721] "2011-11-22" "2013-01-14" NA           NA           "2013-12-31"
##  [5726] NA           "2012-08-29" NA           NA           "2013-12-31"
##  [5731] "2011-11-22" "2012-08-29" "2012-02-28" "2012-04-22" NA          
##  [5736] "2012-02-28" "2012-04-22" "2012-02-28" "2012-04-22" NA          
##  [5741] "2011-08-22" "2011-08-22" "2011-08-22" "2011-08-22" "2011-08-22"
##  [5746] "2013-06-30" NA           "2011-07-15" "2013-03-17" "2013-06-30"
##  [5751] NA           NA           "2011-07-15" NA           "2013-06-30"
##  [5756] NA           "2011-07-15" "2013-06-30" "2013-06-30" "2013-03-17"
##  [5761] NA           NA           NA           NA           "2011-04-20"
##  [5766] NA           "2011-04-20" NA           "2011-04-20" NA          
##  [5771] "2011-09-27" "2011-09-27" "2011-09-13" "2011-09-27" NA          
##  [5776] NA           "2011-09-27" "2011-09-13" NA           "2011-09-27"
##  [5781] "2012-04-29" "2012-04-29" "2011-09-27" "2011-09-13" NA          
##  [5786] "2012-04-29" "2012-04-29" "2012-04-29" "2013-04-16" "2013-04-16"
##  [5791] "2013-04-16" NA           NA           "2012-03-21" NA          
##  [5796] NA           "2012-03-21" "2013-06-30" "2013-06-30" "2012-03-21"
##  [5801] "2012-03-21" "2011-03-16" "2012-08-27" "2011-03-16" "2012-08-27"
##  [5806] "2012-08-27" NA           NA           "2013-09-28" "2013-09-28"
##  [5811] NA           "2013-09-28" "2013-09-28" NA           "2012-12-24"
##  [5816] "2012-12-24" "2012-12-24" NA           "2011-07-25" "2011-02-22"
##  [5821] "2011-02-22" "2011-02-22" "2011-07-25" NA           NA          
##  [5826] "2011-12-13" "2011-12-13" "2012-03-29" NA           NA          
##  [5831] "2012-03-29" NA           NA           NA           NA          
##  [5836] "2013-12-25" "2013-12-25" NA           "2013-12-25" NA          
##  [5841] NA           NA           "2013-10-13" NA           NA          
##  [5846] NA           NA           NA           "2013-10-13" NA          
##  [5851] NA           NA           NA           NA           NA          
##  [5856] "2013-07-18" "2013-07-18" NA           "2013-07-18" NA          
##  [5861] "2012-01-14" "2013-11-27" NA           NA           NA          
##  [5866] "2012-01-14" "2013-11-27" NA           NA           NA          
##  [5871] NA           "2013-11-27" NA           NA           NA          
##  [5876] NA           NA           NA           NA           NA          
##  [5881] "2012-01-14" "2012-01-14" "2012-01-14" "2011-11-15" NA          
##  [5886] NA           NA           "2011-11-15" NA           NA          
##  [5891] "2011-11-15" "2011-11-15" NA           "2011-11-15" "2011-05-28"
##  [5896] "2011-05-28" "2011-05-22" "2011-05-22" "2011-05-28" "2011-05-22"
##  [5901] NA           NA           NA           "2012-10-18" NA          
##  [5906] "2013-11-27" NA           NA           "2012-10-18" "2013-11-27"
##  [5911] "2012-10-18" NA           NA           NA           NA          
##  [5916] NA           NA           NA           NA           NA          
##  [5921] NA           NA           "2012-03-26" "2012-03-26" "2012-07-24"
##  [5926] "2012-07-24" "2012-03-26" "2012-03-26" "2012-03-26" NA          
##  [5931] NA           NA           "2011-12-24" "2011-12-24" "2011-12-24"
##  [5936] "2011-12-24" "2013-08-29" "2011-12-24" "2013-08-29" "2013-08-29"
##  [5941] NA           NA           "2011-08-31" "2011-08-31" NA          
##  [5946] "2012-04-28" NA           "2012-04-28" "2012-12-17" "2012-12-17"
##  [5951] NA           NA           NA           "2011-08-31" "2011-08-31"
##  [5956] "2012-12-17" NA           "2011-08-31" NA           "2012-12-17"
##  [5961] NA           NA           "2012-12-17" NA           NA          
##  [5966] NA           NA           NA           NA           NA          
##  [5971] NA           "2014-01-16" NA           "2014-01-16" NA          
##  [5976] "2014-01-16" NA           NA           "2014-01-16" "2011-03-13"
##  [5981] "2011-03-13" NA           "2011-03-13" NA           NA          
##  [5986] "2014-01-16" NA           NA           NA           "2013-03-23"
##  [5991] NA           "2013-06-22" NA           "2013-03-20" "2013-03-23"
##  [5996] "2013-03-20" "2013-03-23" NA           "2013-03-23" "2013-06-22"
##  [6001] "2013-06-22" NA           NA           NA           "2013-03-20"
##  [6006] "2013-03-20" "2013-06-22" "2013-06-22" "2013-03-23" "2013-03-20"
##  [6011] "2011-10-23" "2011-06-30" "2011-10-23" "2013-03-14" "2011-06-30"
##  [6016] NA           "2013-03-14" NA           NA           "2013-03-14"
##  [6021] NA           "2011-06-29" "2011-06-15" NA           NA          
##  [6026] NA           NA           "2011-06-29" NA           NA          
##  [6031] "2011-06-15" NA           NA           "2011-06-29" NA          
##  [6036] NA           NA           "2012-10-26" "2012-10-26" NA          
##  [6041] NA           "2012-10-26" NA           "2012-10-26" "2012-10-26"
##  [6046] NA           "2012-10-26" NA           NA           "2011-07-13"
##  [6051] "2011-07-13" "2013-05-17" "2012-12-23" "2013-05-17" "2012-12-23"
##  [6056] "2012-12-23" "2013-05-17" "2013-05-17" "2013-05-17" "2012-12-23"
##  [6061] "2012-12-23" "2013-10-20" "2013-10-20" NA           NA          
##  [6066] "2011-12-19" "2011-12-19" NA           "2011-12-19" NA          
##  [6071] "2011-08-14" NA           NA           NA           "2013-07-14"
##  [6076] "2011-08-14" NA           "2011-08-14" "2013-07-14" "2013-07-14"
##  [6081] NA           "2011-09-29" NA           NA           NA          
##  [6086] "2013-07-14" "2011-08-14" "2011-09-29" "2013-07-14" "2013-07-14"
##  [6091] NA           NA           "2011-08-14" "2013-07-21" NA          
##  [6096] NA           "2013-07-21" NA           NA           NA          
##  [6101] NA           NA           "2013-07-21" NA           NA          
##  [6106] NA           NA           NA           NA           NA          
##  [6111] NA           "2013-01-18" "2013-01-18" "2012-06-16" "2012-06-16"
##  [6116] "2012-06-16" "2012-06-16" "2012-06-16" "2012-06-16" "2012-03-19"
##  [6121] NA           "2012-03-19" "2012-03-19" "2013-09-25" "2012-03-19"
##  [6126] NA           "2013-09-25" "2012-03-19" "2013-09-25" "2013-04-26"
##  [6131] "2013-09-25" "2013-04-26" NA           NA           NA          
##  [6136] NA           "2013-04-26" NA           NA           "2013-09-25"
##  [6141] "2013-04-26" "2013-04-26" NA           "2011-02-15" "2013-01-18"
##  [6146] "2013-01-18" "2011-12-24" "2011-12-24" "2013-10-25" "2013-10-25"
##  [6151] "2013-01-18" "2013-01-18" "2013-10-25" "2013-01-18" "2011-02-15"
##  [6156] "2013-10-19" "2013-10-17" "2013-10-19" "2013-10-14" "2013-10-14"
##  [6161] "2013-10-17" "2012-10-16" "2013-12-21" "2012-02-27" "2012-02-27"
##  [6166] "2012-02-27" "2013-12-21" "2012-10-16" "2012-10-16" "2012-10-16"
##  [6171] "2012-12-21" "2012-12-21" "2012-12-21" "2013-05-13" NA          
##  [6176] "2013-05-13" "2012-02-25" "2013-05-13" "2012-02-25" NA          
##  [6181] "2013-05-13" "2013-05-13" "2012-11-19" "2011-11-30" "2012-11-19"
##  [6186] "2011-11-30" "2011-11-30" "2012-11-19" "2013-10-22" "2013-05-22"
##  [6191] "2013-05-22" "2012-12-15" "2012-12-15" "2012-12-15" "2013-05-22"
##  [6196] "2012-12-15" "2012-12-15" "2013-10-22" "2013-05-22" "2013-10-22"
##  [6201] "2013-05-22" "2011-04-20" "2013-05-25" "2014-01-13" "2014-01-13"
##  [6206] "2011-04-20" "2011-04-28" "2014-01-16" "2014-01-16" "2011-04-28"
##  [6211] "2013-05-25" "2013-05-25" "2013-05-25" "2013-05-25" "2013-02-19"
##  [6216] "2013-02-19" "2011-06-25" "2011-06-25" "2013-02-19" "2011-06-25"
##  [6221] "2013-02-19" NA           NA           NA           "2011-07-22"
##  [6226] "2012-12-27" "2012-12-27" "2012-12-27" "2011-07-22" "2011-07-22"
##  [6231] "2011-01-26" "2011-01-26" "2012-05-19" "2011-04-28" "2012-05-19"
##  [6236] "2011-04-28" "2011-04-28" "2011-01-26" "2011-01-26" "2011-01-26"
##  [6241] "2013-05-20" "2013-05-20" "2012-12-31" NA           NA          
##  [6246] NA           NA           NA           NA           NA          
##  [6251] "2012-12-31" "2012-12-31" NA           "2011-07-30" "2011-07-30"
##  [6256] "2011-10-13" "2011-07-30" NA           "2011-10-13" NA          
##  [6261] NA           NA           "2012-06-26" NA           "2011-10-13"
##  [6266] "2011-07-30" "2011-10-13" "2012-06-26" "2012-06-26" "2011-10-13"
##  [6271] "2011-07-30" "2013-04-23" "2013-04-23" "2011-08-13" "2011-02-27"
##  [6276] "2011-02-27" "2013-04-23" "2011-08-13" "2011-02-27" "2011-08-13"
##  [6281] "2011-08-13" "2011-08-13" "2011-02-27" NA           "2011-11-18"
##  [6286] NA           "2011-11-18" NA           NA           "2011-11-18"
##  [6291] "2011-11-18" "2011-11-18" NA           NA           NA          
##  [6296] NA           NA           NA           NA           "2014-01-25"
##  [6301] "2014-01-25" NA           NA           NA           NA          
##  [6306] NA           "2011-11-25" NA           "2011-08-16" "2011-11-25"
##  [6311] NA           NA           NA           NA           NA          
##  [6316] NA           "2011-08-16" "2011-08-16" "2011-08-16" NA          
##  [6321] NA           NA           "2011-08-16" "2011-03-15" "2011-03-15"
##  [6326] "2011-03-15" NA           NA           "2012-09-15" "2012-09-15"
##  [6331] "2012-07-14" "2012-07-14" "2011-08-24" "2011-08-24" "2012-09-15"
##  [6336] "2012-07-14" "2012-07-14" "2012-07-14" "2012-07-14" "2012-09-15"
##  [6341] "2012-09-15" "2012-09-15" "2011-08-24" NA           NA          
##  [6346] NA           "2012-07-26" "2012-07-26" "2012-07-26" "2012-07-26"
##  [6351] "2012-07-26" "2013-04-16" "2012-03-13" "2013-04-17" "2013-04-16"
##  [6356] "2013-04-16" "2013-04-17" "2012-03-13" "2013-04-17" NA          
##  [6361] NA           NA           "2013-02-26" "2013-02-26" NA          
##  [6366] NA           "2013-02-26" "2011-08-18" "2011-12-24" "2011-12-24"
##  [6371] NA           NA           "2011-12-24" NA           "2011-08-18"
##  [6376] NA           NA           NA           NA           NA          
##  [6381] NA           NA           NA           NA           "2013-10-28"
##  [6386] "2013-10-28" NA           NA           NA           NA          
##  [6391] NA           "2013-10-28" NA           NA           "2013-10-28"
##  [6396] NA           NA           NA           NA           "2013-10-28"
##  [6401] NA           "2012-10-17" "2012-10-17" NA           "2012-10-17"
##  [6406] "2012-10-17" "2012-10-17" "2013-02-15" NA           NA          
##  [6411] "2013-02-15" NA           "2013-02-15" "2013-11-16" "2013-11-16"
##  [6416] "2011-12-15" "2013-11-16" "2011-12-15" NA           NA          
##  [6421] "2013-09-15" "2013-09-15" "2013-09-15" "2013-09-15" NA          
##  [6426] "2013-01-16" "2013-01-16" NA           NA           NA          
##  [6431] NA           "2013-09-15" "2013-09-15" NA           "2013-01-16"
##  [6436] "2013-02-24" "2013-02-24" "2013-02-24" NA           NA          
##  [6441] "2013-02-24" "2014-01-24" "2014-01-24" "2014-01-24" "2012-01-31"
##  [6446] "2014-01-24" "2014-01-24" "2012-01-31" NA           NA          
##  [6451] NA           NA           NA           NA           NA          
##  [6456] NA           "2011-03-20" "2012-05-17" "2012-05-17" "2012-05-17"
##  [6461] "2011-11-24" "2012-05-17" "2011-03-20" "2011-03-20" "2011-11-24"
##  [6466] "2011-03-20" "2011-03-20" "2011-11-24" "2011-11-24" "2011-11-24"
##  [6471] "2012-05-17" NA           NA           NA           NA          
##  [6476] NA           NA           NA           NA           NA          
##  [6481] NA           NA           NA           "2011-05-20" "2011-05-20"
##  [6486] "2013-01-26" "2013-01-26" NA           "2013-01-26" NA          
##  [6491] "2013-01-26" NA           NA           "2013-01-26" "2013-06-15"
##  [6496] "2013-06-15" "2012-11-28" "2013-06-15" "2013-06-15" "2013-06-15"
##  [6501] "2012-11-28" NA           "2011-05-15" "2012-03-23" "2012-03-23"
##  [6506] NA           "2012-03-23" "2011-09-30" "2011-05-15" "2012-03-23"
##  [6511] NA           NA           "2011-09-30" "2012-03-23" "2012-01-22"
##  [6516] "2012-01-22" "2011-11-22" "2011-11-22" "2011-11-22" "2012-01-22"
##  [6521] "2011-11-22" "2011-11-22" "2011-11-22" "2012-01-22" "2012-01-22"
##  [6526] "2011-11-22" "2011-11-22" NA           NA           NA          
##  [6531] NA           NA           NA           NA           NA          
##  [6536] "2013-09-19" NA           "2013-09-19" NA           NA          
##  [6541] NA           "2013-09-19" "2013-09-19" "2012-04-29" "2012-04-29"
##  [6546] NA           "2013-01-27" "2013-01-27" "2013-01-27" NA          
##  [6551] NA           NA           NA           NA           "2014-01-31"
##  [6556] "2014-01-31" "2014-01-31" "2014-02-15" "2014-02-15" "2012-06-18"
##  [6561] "2012-06-18" "2012-06-18" "2014-01-24" "2013-07-30" "2013-07-30"
##  [6566] "2012-11-25" "2014-01-24" "2013-07-30" "2012-11-25" "2014-01-24"
##  [6571] "2013-07-30" "2013-07-30" "2011-11-22" "2011-11-22" "2011-11-22"
##  [6576] NA           NA           NA           "2011-10-17" "2011-10-17"
##  [6581] "2011-10-17" "2011-10-17" NA           "2011-10-17" "2013-07-27"
##  [6586] "2013-07-27" "2011-01-26" "2013-07-27" "2013-07-27" "2011-01-26"
##  [6591] "2012-02-27" "2012-02-27" "2012-02-27" "2011-01-26" "2012-02-27"
##  [6596] "2012-02-27" NA           "2012-06-14" "2012-06-14" NA          
##  [6601] NA           NA           NA           "2012-06-14" "2012-06-14"
##  [6606] "2012-06-14" NA           NA           "2012-03-30" NA          
##  [6611] NA           "2012-03-30" "2012-03-30" NA           NA          
##  [6616] "2012-11-14" "2012-11-14" "2012-11-14" "2012-11-14" "2012-11-14"
##  [6621] "2013-03-13" "2013-03-13" "2013-03-13" "2013-03-13" "2013-03-13"
##  [6626] NA           NA           NA           NA           NA          
##  [6631] "2011-08-21" NA           NA           "2011-08-21" "2011-07-13"
##  [6636] NA           NA           "2011-07-13" "2011-07-13" "2011-07-13"
##  [6641] "2013-03-15" "2013-03-15" "2013-03-15" "2013-03-15" "2011-07-13"
##  [6646] "2013-08-19" NA           "2013-08-19" NA           NA          
##  [6651] NA           NA           "2013-08-19" NA           NA          
##  [6656] "2012-09-24" "2012-08-14" "2012-09-24" "2012-08-14" "2012-08-14"
##  [6661] "2012-08-14" "2013-12-30" "2013-12-30" "2013-12-30" "2013-12-29"
##  [6666] "2013-12-30" "2013-12-29" "2013-12-30" "2013-12-29" "2013-12-29"
##  [6671] "2011-11-19" "2013-12-29" "2011-11-19" "2011-11-19" "2011-11-19"
##  [6676] "2012-10-14" NA           NA           NA           "2012-10-14"
##  [6681] "2012-10-14" NA           "2012-12-26" "2012-12-26" "2012-12-26"
##  [6686] NA           "2012-02-13" "2012-02-13" "2012-04-22" NA          
##  [6691] NA           NA           "2012-04-22" "2012-12-26" NA          
##  [6696] NA           "2012-02-13" NA           NA           NA          
##  [6701] NA           NA           NA           NA           "2012-04-22"
##  [6706] "2013-03-26" "2013-03-26" "2013-07-21" "2013-07-21" "2013-03-26"
##  [6711] "2013-03-26" "2013-03-26" "2013-07-21" "2013-07-21" "2013-07-21"
##  [6716] NA           "2012-05-23" NA           "2012-05-18" NA          
##  [6721] "2012-05-23" "2012-05-18" NA           "2012-05-23" "2012-05-18"
##  [6726] "2013-09-16" "2013-09-16" "2012-07-17" "2013-11-28" "2013-09-16"
##  [6731] "2012-07-17" "2013-11-28" "2013-09-16" "2012-07-17" NA          
##  [6736] NA           "2013-11-28" NA           NA           "2011-12-20"
##  [6741] "2011-12-20" NA           NA           NA           NA          
##  [6746] NA           NA           NA           NA           NA          
##  [6751] NA           "2012-06-18" "2012-06-18" NA           NA          
##  [6756] NA           "2012-06-24" NA           NA           "2012-06-24"
##  [6761] "2012-06-24" NA           NA           NA           NA          
##  [6766] NA           NA           NA           NA           "2012-06-24"
##  [6771] NA           NA           "2012-10-23" NA           NA          
##  [6776] NA           "2012-10-23" "2012-10-23" NA           "2012-10-23"
##  [6781] NA           "2012-10-15" NA           "2012-10-23" "2012-10-15"
##  [6786] "2012-10-15" NA           "2012-10-15" "2012-10-15" NA          
##  [6791] "2013-11-25" "2011-04-25" NA           "2013-11-25" NA          
##  [6796] "2013-11-25" NA           NA           NA           "2011-04-25"
##  [6801] "2011-04-25" NA           "2013-01-20" NA           NA          
##  [6806] NA           NA           NA           NA           "2013-01-20"
##  [6811] NA           "2013-01-20" NA           NA           NA          
##  [6816] NA           NA           NA           NA           NA          
##  [6821] NA           NA           "2013-12-18" "2013-12-18" "2013-12-18"
##  [6826] "2013-12-18" "2013-12-18" NA           "2013-07-23" NA          
##  [6831] NA           "2013-07-23" NA           "2013-07-23" NA          
##  [6836] NA           NA           "2013-07-23" NA           NA          
##  [6841] "2013-07-23" "2013-10-24" NA           "2013-10-21" "2013-10-24"
##  [6846] NA           "2013-10-24" "2013-10-21" NA           "2013-10-21"
##  [6851] NA           "2013-10-21" "2013-10-24" NA           "2013-10-21"
##  [6856] "2013-10-24" "2014-01-28" "2011-10-20" "2014-01-28" "2011-10-20"
##  [6861] "2013-01-24" "2013-05-28" "2013-10-22" "2013-10-22" "2011-06-15"
##  [6866] "2013-01-24" NA           "2013-05-28" "2013-10-22" "2011-11-14"
##  [6871] "2013-01-24" "2013-01-24" "2011-06-15" "2013-10-22" "2011-11-14"
##  [6876] "2011-06-15" "2013-01-24" "2011-06-15" "2011-06-15" NA          
##  [6881] NA           "2013-10-22" NA           NA           "2012-04-19"
##  [6886] "2012-04-19" "2012-04-19" NA           NA           NA          
##  [6891] NA           NA           NA           NA           "2013-12-22"
##  [6896] "2013-12-22" NA           NA           "2013-10-19" NA          
##  [6901] NA           NA           NA           "2013-10-19" "2013-10-19"
##  [6906] NA           NA           NA           NA           "2011-06-24"
##  [6911] "2011-06-24" NA           "2013-08-16" NA           "2012-05-25"
##  [6916] "2013-06-27" NA           "2012-06-17" "2012-06-17" "2013-06-27"
##  [6921] "2012-06-17" "2013-06-27" "2012-05-16" "2012-05-16" "2013-08-16"
##  [6926] "2012-05-25" "2013-06-27" "2012-05-25" "2013-06-27" NA          
##  [6931] "2012-08-26" "2012-08-26" "2012-05-16" "2012-06-17" "2012-06-17"
##  [6936] "2012-04-23" NA           "2012-04-23" NA           NA          
##  [6941] "2012-04-23" "2012-04-23" "2012-04-23" "2011-04-20" "2011-04-20"
##  [6946] "2011-04-20" NA           "2011-04-20" NA           "2011-04-20"
##  [6951] NA           NA           NA           NA           NA          
##  [6956] NA           NA           NA           "2013-03-14" "2013-03-14"
##  [6961] "2013-03-14" "2013-03-14" "2013-03-14" "2013-03-14" "2011-11-21"
##  [6966] NA           NA           "2011-05-27" NA           "2012-12-16"
##  [6971] "2012-12-16" "2011-11-21" "2011-11-21" "2012-12-16" "2011-05-27"
##  [6976] "2011-11-21" "2012-08-25" "2011-05-27" "2012-08-25" "2012-08-25"
##  [6981] "2011-11-21" "2012-08-25" "2012-08-25" "2012-08-25" NA          
##  [6986] NA           NA           "2011-11-18" "2014-02-19" "2011-11-18"
##  [6991] NA           NA           "2014-02-19" NA           "2011-11-18"
##  [6996] NA           NA           NA           "2012-01-23" "2012-01-23"
##  [7001] NA           "2013-05-22" NA           "2013-05-22" "2012-01-23"
##  [7006] "2013-05-22" "2013-05-22" "2013-05-22" "2012-12-23" "2012-12-23"
##  [7011] "2012-12-23" "2012-12-23" "2012-12-23" NA           NA          
##  [7016] NA           "2011-11-28" "2014-02-14" "2011-11-28" "2014-02-14"
##  [7021] "2011-11-28" "2011-11-28" "2014-02-14" "2011-07-26" "2011-07-26"
##  [7026] NA           NA           NA           NA           NA          
##  [7031] "2014-02-18" NA           "2012-05-16" "2014-02-18" "2012-05-16"
##  [7036] NA           NA           NA           "2014-02-18" "2012-02-18"
##  [7041] "2012-05-16" "2014-02-17" NA           NA           NA          
##  [7046] NA           NA           NA           "2014-02-18" "2012-02-18"
##  [7051] "2014-02-17" "2014-02-17" "2012-05-16" "2014-02-17" NA          
##  [7056] NA           NA           "2013-08-13" "2013-08-13" NA          
##  [7061] "2013-08-13" "2013-08-13" "2012-07-22" "2012-07-22" "2013-08-13"
##  [7066] NA           "2013-08-13" NA           NA           "2012-07-22"
##  [7071] "2013-08-18" "2012-07-22" "2012-07-22" NA           "2013-08-18"
##  [7076] NA           NA           "2013-08-20" NA           NA          
##  [7081] NA           NA           NA           NA           "2013-08-20"
##  [7086] "2013-08-20" "2013-05-22" "2013-05-22" "2013-05-22" NA          
##  [7091] NA           NA           "2013-01-29" NA           "2013-01-29"
##  [7096] NA           NA           NA           "2012-11-17" "2012-11-17"
##  [7101] "2013-12-27" NA           "2012-11-17" "2013-12-27" NA          
##  [7106] "2012-04-22" NA           NA           "2012-04-24" "2013-10-24"
##  [7111] NA           NA           NA           "2014-02-17" "2014-02-17"
##  [7116] "2013-10-24" NA           "2012-04-24" NA           "2012-04-22"
##  [7121] NA           "2012-04-24" "2013-10-24" "2012-04-22" "2014-02-17"
##  [7126] "2012-04-22" "2012-04-22" "2013-12-18" "2013-12-18" "2013-12-18"
##  [7131] "2011-05-30" "2011-05-27" "2011-05-27" "2011-05-27" "2011-05-30"
##  [7136] "2011-05-30" "2011-05-30" "2011-05-27" "2011-05-27" "2011-05-30"
##  [7141] "2013-10-20" NA           NA           "2013-10-21" "2013-10-20"
##  [7146] "2013-10-21" NA           NA           NA           NA          
##  [7151] NA           NA           NA           NA           NA          
##  [7156] NA           NA           NA           NA           NA          
##  [7161] NA           NA           NA           NA           NA          
##  [7166] "2013-08-18" NA           "2013-08-18" NA           NA          
##  [7171] "2012-08-29" NA           NA           "2012-08-29" "2014-01-23"
##  [7176] "2012-02-17" NA           "2014-01-23" NA           "2012-08-29"
##  [7181] "2012-02-17" NA           NA           NA           NA          
##  [7186] NA           NA           NA           NA           NA          
##  [7191] NA           NA           NA           NA           NA          
##  [7196] NA           NA           NA           NA           NA          
##  [7201] NA           NA           "2012-12-24" "2013-01-30" "2013-01-30"
##  [7206] "2012-12-24" NA           NA           "2013-01-30" "2012-12-24"
##  [7211] NA           "2012-12-24" "2012-12-24" "2014-01-21" NA          
##  [7216] NA           "2011-07-21" "2011-07-21" "2014-01-21" "2011-07-21"
##  [7221] "2014-01-21" NA           "2011-07-21" "2012-07-24" NA          
##  [7226] NA           "2012-07-24" "2012-07-24" "2012-02-13" "2012-02-13"
##  [7231] "2012-02-13" NA           NA           NA           NA          
##  [7236] NA           "2012-05-31" NA           NA           "2012-05-31"
##  [7241] NA           "2012-05-31" NA           NA           NA          
##  [7246] NA           "2013-03-28" NA           NA           NA          
##  [7251] NA           "2013-03-28" NA           "2013-05-25" "2013-05-25"
##  [7256] NA           "2013-03-28" "2013-05-25" "2013-03-28" "2013-03-28"
##  [7261] "2013-03-28" NA           NA           NA           NA          
##  [7266] NA           NA           NA           NA           NA          
##  [7271] NA           "2013-12-23" "2013-12-23" "2013-01-27" "2013-12-23"
##  [7276] "2013-01-27" NA           "2012-03-26" "2013-12-23" NA          
##  [7281] "2013-12-23" NA           "2012-03-26" NA           "2012-03-26"
##  [7286] "2012-07-16" "2012-07-16" "2012-07-16" "2012-07-16" "2012-07-16"
##  [7291] NA           NA           NA           NA           NA          
##  [7296] NA           NA           NA           NA           NA          
##  [7301] NA           NA           NA           "2011-07-26" NA          
##  [7306] NA           NA           NA           NA           "2011-07-26"
##  [7311] NA           NA           NA           "2011-07-26" "2012-10-21"
##  [7316] "2012-10-21" "2012-10-21" "2012-10-21" "2013-06-21" "2013-06-15"
##  [7321] "2013-06-21" "2013-06-15" "2013-06-21" "2013-06-21" "2013-06-15"
##  [7326] "2013-06-15" "2013-06-21" "2013-06-15" NA           NA          
##  [7331] NA           NA           NA           "2011-10-24" "2011-10-24"
##  [7336] "2011-09-29" "2011-09-29" "2011-09-29" "2011-09-29" "2011-09-29"
##  [7341] NA           "2011-06-28" NA           "2011-06-28" NA          
##  [7346] "2013-01-30" NA           "2013-01-30" "2013-01-30" NA          
##  [7351] NA           NA           NA           NA           NA          
##  [7356] NA           NA           NA           "2012-06-22" "2012-02-18"
##  [7361] "2012-06-22" "2012-02-18" "2012-06-22" "2012-06-22" "2012-02-18"
##  [7366] "2012-06-22" "2012-02-18" "2012-02-18" "2012-09-24" NA          
##  [7371] NA           "2012-09-24" "2012-09-24" NA           NA          
##  [7376] NA           NA           NA           NA           NA          
##  [7381] "2013-12-30" NA           "2013-12-30" "2013-12-30" NA          
##  [7386] "2013-12-30" "2013-12-30" NA           "2013-12-30" NA          
##  [7391] NA           "2013-10-27" "2013-10-27" "2013-10-27" "2012-07-17"
##  [7396] "2012-07-17" "2012-07-17" "2012-07-25" NA           NA          
##  [7401] "2012-07-25" NA           "2012-07-25" NA           NA          
##  [7406] NA           NA           NA           NA           NA          
##  [7411] "2011-10-28" NA           NA           "2011-10-28" NA          
##  [7416] NA           NA           NA           NA           "2011-10-28"
##  [7421] NA           "2011-08-16" "2011-08-16" "2012-11-29" "2013-03-19"
##  [7426] "2012-09-24" "2014-01-28" "2012-11-29" "2012-03-21" "2014-01-28"
##  [7431] "2014-01-28" "2013-03-19" "2012-09-24" "2012-03-21" "2013-03-19"
##  [7436] NA           NA           NA           NA           NA          
##  [7441] NA           NA           NA           NA           "2013-10-24"
##  [7446] "2013-10-24" NA           "2013-10-24" "2013-10-24" "2013-10-24"
##  [7451] NA           "2012-07-17" "2011-11-15" "2012-06-28" "2012-07-17"
##  [7456] "2012-06-28" "2012-09-26" "2011-11-15" "2012-06-28" "2012-09-26"
##  [7461] "2011-11-15" "2012-06-28" "2012-06-28" NA           NA          
##  [7466] "2012-12-17" "2012-12-17" NA           NA           NA          
##  [7471] "2012-01-23" "2012-01-15" "2012-01-15" "2012-01-15" "2012-01-23"
##  [7476] "2012-01-23" "2014-02-19" "2014-02-19" "2011-04-26" "2011-04-26"
##  [7481] "2011-04-24" "2011-04-24" "2011-04-24" "2011-04-26" NA          
##  [7486] NA           NA           NA           "2012-08-25" NA          
##  [7491] "2012-08-25" "2011-06-30" "2013-11-14" "2012-08-20" "2013-11-14"
##  [7496] "2013-11-14" "2013-11-14" "2011-06-30" "2011-06-30" "2013-11-14"
##  [7501] "2012-08-20" "2012-08-20" "2011-06-30" "2011-06-30" "2012-03-17"
##  [7506] "2013-05-31" NA           NA           "2012-03-17" "2013-05-31"
##  [7511] NA           NA           "2013-05-31" NA           NA          
##  [7516] NA           NA           "2013-05-31" "2012-03-17" "2013-05-31"
##  [7521] "2012-02-25" "2012-02-25" NA           "2012-04-19" "2012-04-19"
##  [7526] "2012-02-25" "2012-04-19" NA           NA           NA          
##  [7531] "2012-04-19" NA           NA           NA           NA          
##  [7536] "2012-04-19" "2011-03-18" "2012-12-31" NA           "2012-12-31"
##  [7541] "2011-03-18" NA           "2011-12-15" NA           "2011-12-15"
##  [7546] "2011-12-24" NA           NA           NA           "2011-05-14"
##  [7551] NA           NA           "2011-05-14" "2011-12-15" NA          
##  [7556] "2011-12-24" "2011-07-17" "2011-07-17" "2012-02-23" "2012-02-23"
##  [7561] "2013-03-25" "2013-03-25" "2013-03-25" "2013-03-25" "2013-01-30"
##  [7566] "2011-05-22" "2013-01-30" "2011-08-27" "2011-05-22" NA          
##  [7571] "2011-05-22" "2011-08-27" "2013-01-30" NA           "2011-08-27"
##  [7576] "2011-08-27" "2011-05-22" NA           NA           "2013-01-30"
##  [7581] NA           "2011-05-22" "2013-01-30" "2011-08-27" "2012-06-17"
##  [7586] NA           NA           NA           NA           "2013-11-17"
##  [7591] "2012-06-17" "2013-11-17" NA           NA           "2012-06-17"
##  [7596] "2012-06-17" "2013-11-28" "2013-11-28" "2013-11-28" NA          
##  [7601] NA           "2013-11-28" NA           "2011-12-28" NA          
##  [7606] NA           "2011-12-28" NA           NA           NA          
##  [7611] NA           "2011-02-21" "2011-02-21" "2011-02-21" "2011-02-21"
##  [7616] "2011-02-21" "2011-02-25" "2011-02-25" "2011-02-25" "2011-02-25"
##  [7621] "2011-02-25" "2011-11-15" NA           NA           NA          
##  [7626] NA           "2011-11-15" "2011-11-15" "2011-05-16" NA          
##  [7631] "2011-05-31" "2011-05-16" NA           "2011-05-16" NA          
##  [7636] NA           NA           "2011-05-31" NA           "2011-05-31"
##  [7641] NA           "2011-05-31" NA           "2012-08-19" "2011-05-31"
##  [7646] NA           NA           "2011-05-16" "2012-08-19" "2011-05-16"
##  [7651] NA           NA           "2012-06-13" NA           "2012-06-13"
##  [7656] NA           NA           NA           "2012-06-13" "2012-06-13"
##  [7661] "2012-06-13" "2012-06-13" NA           NA           NA          
##  [7666] "2011-02-15" "2011-02-15" "2011-02-15" NA           NA          
##  [7671] "2013-04-21" "2013-04-21" "2013-04-21" NA           NA          
##  [7676] NA           NA           NA           "2013-04-21" "2013-04-21"
##  [7681] "2012-08-26" "2012-08-26" "2011-04-26" "2012-08-20" "2012-08-20"
##  [7686] "2012-08-26" "2011-04-26" "2012-08-20" "2012-08-26" "2012-08-20"
##  [7691] "2013-12-27" "2012-08-26" "2013-12-27" "2012-08-20" NA          
##  [7696] NA           "2011-08-26" "2011-08-26" NA           NA          
##  [7701] NA           NA           NA           NA           NA          
##  [7706] NA           NA           NA           NA           NA          
##  [7711] "2011-07-29" "2011-07-29" NA           NA           "2011-07-29"
##  [7716] "2011-06-28" "2011-06-28" "2011-11-24" "2011-06-28" "2011-06-28"
##  [7721] "2011-11-24" "2011-11-24" "2011-06-28" "2011-06-28" "2011-11-24"
##  [7726] "2011-11-24" NA           NA           NA           NA          
##  [7731] NA           NA           NA           NA           NA          
##  [7736] "2012-08-21" "2012-08-17" "2012-05-25" "2012-08-17" "2012-08-21"
##  [7741] "2012-08-17" "2013-03-25" NA           "2012-05-25" "2012-05-25"
##  [7746] "2013-03-25" "2012-05-25" NA           NA           "2012-05-25"
##  [7751] "2012-08-21" "2013-03-25" NA           NA           NA          
##  [7756] NA           NA           "2011-12-28" "2011-12-28" "2011-11-13"
##  [7761] "2011-11-13" "2013-01-24" "2011-12-28" "2011-11-13" "2011-12-28"
##  [7766] "2013-01-24" "2011-05-16" "2012-07-19" "2012-07-19" "2012-07-19"
##  [7771] "2012-07-19" "2011-05-16" "2012-07-19" "2012-11-30" "2012-11-30"
##  [7776] "2012-11-30" "2012-11-30" "2011-05-20" "2011-05-20" "2011-05-20"
##  [7781] "2011-05-20" "2011-05-20" "2013-08-22" "2012-11-16" "2013-08-22"
##  [7786] "2013-08-22" "2013-08-22" "2012-11-16" "2013-01-29" "2013-01-29"
##  [7791] "2013-01-29" "2013-01-29" "2012-04-19" "2012-04-19" "2013-01-29"
##  [7796] "2013-01-29" "2012-11-14" "2012-11-14" NA           NA          
##  [7801] NA           NA           NA           NA           NA          
##  [7806] NA           NA           "2012-11-14" "2012-08-23" NA          
##  [7811] NA           "2012-08-23" NA           NA           "2012-11-14"
##  [7816] "2012-11-14" NA           NA           NA           NA          
##  [7821] NA           NA           NA           NA           "2012-04-13"
##  [7826] "2012-04-13" "2012-04-13" NA           NA           "2012-04-13"
##  [7831] "2012-04-13" NA           "2013-04-20" "2013-04-20" "2013-04-20"
##  [7836] "2012-07-27" "2012-07-27" "2012-07-27" "2012-07-27" "2012-07-27"
##  [7841] "2012-02-19" "2012-02-19" "2012-02-19" "2012-02-19" "2011-09-15"
##  [7846] "2011-09-15" "2011-11-19" NA           "2011-11-19" "2012-02-19"
##  [7851] "2011-11-19" "2011-11-19" NA           NA           NA          
##  [7856] "2011-11-19" "2011-11-19" "2012-07-19" NA           "2012-10-13"
##  [7861] "2012-07-19" "2012-07-19" "2012-07-19" "2012-10-13" NA          
##  [7866] "2012-10-13" "2012-07-19" "2012-03-29" "2012-03-29" "2013-05-17"
##  [7871] "2013-05-17" "2012-03-29" "2012-03-29" "2012-03-29" NA          
##  [7876] NA           NA           NA           NA           NA          
##  [7881] "2012-05-20" "2013-02-28" "2012-05-20" NA           NA          
##  [7886] "2013-02-28" NA           NA           NA           "2012-05-20"
##  [7891] NA           "2012-05-20" NA           NA           "2012-05-20"
##  [7896] NA           "2012-05-20" NA           NA           NA          
##  [7901] "2012-02-20" "2013-06-30" "2012-04-16" "2012-04-16" "2012-02-20"
##  [7906] "2012-02-20" NA           "2013-06-20" "2012-04-16" "2013-06-20"
##  [7911] NA           "2012-02-20" "2013-06-20" NA           "2012-02-20"
##  [7916] "2012-02-20" "2012-03-15" "2013-06-30" NA           "2013-06-20"
##  [7921] "2012-04-16" "2013-06-20" "2013-06-30" "2012-03-15" "2013-06-30"
##  [7926] "2013-06-30" "2013-03-20" "2013-03-20" NA           NA          
##  [7931] NA           NA           NA           NA           NA          
##  [7936] "2011-07-26" NA           NA           "2011-07-26" NA          
##  [7941] NA           NA           NA           NA           NA          
##  [7946] NA           NA           NA           NA           NA          
##  [7951] NA           "2013-05-17" NA           NA           "2012-05-27"
##  [7956] NA           "2011-04-16" "2012-05-27" NA           "2013-05-17"
##  [7961] "2013-05-17" NA           "2013-05-17" "2013-05-17" NA          
##  [7966] "2011-04-16" "2012-11-17" "2012-11-23" "2012-11-23" "2012-11-23"
##  [7971] "2012-11-23" "2012-11-17" "2012-11-17" "2012-11-17" "2011-09-20"
##  [7976] "2012-12-27" "2011-09-20" "2011-09-20" "2011-09-20" "2012-12-27"
##  [7981] "2012-12-27" "2011-09-20" "2012-10-31" NA           "2012-10-31"
##  [7986] NA           "2012-10-31" "2012-10-31" NA           NA          
##  [7991] NA           NA           NA           "2011-12-29" "2011-03-13"
##  [7996] "2011-03-13" "2011-12-29" "2011-03-13" NA           "2011-03-13"
##  [8001] "2011-03-13" "2011-03-13" "2011-12-29" NA           "2012-03-16"
##  [8006] "2012-03-16" "2012-03-16" "2012-03-16" "2012-03-16" "2013-12-13"
##  [8011] "2013-12-13" "2013-10-15" "2013-10-15" "2012-02-18" "2012-02-18"
##  [8016] "2013-09-28" "2012-02-18" "2013-09-28" "2013-09-28" "2012-02-18"
##  [8021] NA           "2011-06-15" NA           NA           NA          
##  [8026] NA           "2011-06-23" NA           NA           "2011-06-23"
##  [8031] "2011-06-15" "2011-06-15" "2011-06-15" "2011-06-15" NA          
##  [8036] NA           "2011-06-23" NA           "2011-06-23" "2011-06-23"
##  [8041] NA           NA           "2011-05-22" NA           NA          
##  [8046] "2011-10-16" "2011-05-22" "2011-10-16" "2011-10-16" NA          
##  [8051] "2011-05-22" "2011-05-22" "2011-05-25" "2012-05-20" "2013-09-23"
##  [8056] "2013-09-23" "2012-05-20" "2013-09-23" "2011-05-25" "2013-09-23"
##  [8061] "2011-05-25" "2011-05-25" "2011-05-25" "2011-05-25" "2012-09-29"
##  [8066] "2012-09-29" "2012-09-29" "2012-09-29" NA           "2013-09-23"
##  [8071] "2013-09-23" NA           NA           "2013-09-23" "2013-09-23"
##  [8076] "2012-09-29" NA           NA           "2013-09-23" "2012-09-28"
##  [8081] "2012-09-28" "2012-06-18" "2012-06-18" "2012-06-18" NA          
##  [8086] NA           "2011-10-28" "2011-10-28" "2011-10-28" "2011-10-28"
##  [8091] "2013-06-15" "2013-06-15" "2013-06-15" "2013-06-15" "2011-10-28"
##  [8096] "2013-06-15" NA           NA           NA           NA          
##  [8101] NA           NA           NA           NA           NA          
##  [8106] NA           NA           NA           NA           NA          
##  [8111] NA           NA           NA           NA           NA          
##  [8116] NA           NA           NA           NA           NA          
##  [8121] NA           NA           NA           NA           NA          
##  [8126] "2013-11-24" "2011-12-20" "2013-11-24" "2011-12-20" NA          
##  [8131] NA           "2012-02-22" "2012-02-22" "2013-03-28" "2013-03-28"
##  [8136] "2012-02-22" "2013-03-28" NA           "2013-03-28" "2013-03-28"
##  [8141] NA           "2013-09-13" "2013-03-28" "2013-09-13" "2011-05-24"
##  [8146] "2011-05-24" NA           NA           NA           "2011-05-24"
##  [8151] NA           "2012-02-29" "2012-02-29" "2013-03-18" "2013-03-18"
##  [8156] "2013-01-19" "2013-01-19" NA           "2013-03-18" "2013-09-20"
##  [8161] "2013-09-20" "2013-09-20" "2013-03-18" "2013-01-19" "2013-09-20"
##  [8166] NA           "2013-03-18" "2013-09-20" NA           NA          
##  [8171] NA           "2012-01-16" "2011-10-22" NA           "2012-01-16"
##  [8176] "2011-10-22" NA           "2013-11-13" "2011-10-22" NA          
##  [8181] NA           "2013-11-13" "2013-11-13" "2011-10-23" "2011-10-23"
##  [8186] "2011-10-23" "2013-03-19" "2013-03-19" "2013-03-19" "2011-10-23"
##  [8191] "2011-10-23" "2012-03-24" NA           NA           "2012-03-24"
##  [8196] NA           NA           "2013-09-14" "2013-09-16" "2013-09-16"
##  [8201] "2013-09-16" NA           "2013-09-14" "2013-09-16" "2013-09-16"
##  [8206] "2013-09-14" "2013-09-14" "2013-09-16" NA           "2013-09-14"
##  [8211] NA           "2013-09-14" NA           "2012-06-14" "2011-11-14"
##  [8216] "2013-04-16" "2013-04-16" "2012-06-14" "2011-11-14" "2011-11-14"
##  [8221] NA           "2012-10-18" "2012-10-18" NA           NA          
##  [8226] "2013-09-20" "2011-10-20" "2013-08-13" "2011-10-20" "2013-09-20"
##  [8231] "2013-08-13" NA           NA           NA           NA          
##  [8236] NA           "2011-04-16" "2011-04-16" "2011-04-19" "2011-04-16"
##  [8241] "2013-09-20" NA           NA           "2011-04-19" "2013-09-20"
##  [8246] "2011-04-19" "2013-09-20" "2012-01-29" "2012-01-29" NA          
##  [8251] "2012-08-23" "2013-11-30" "2012-08-23" NA           NA          
##  [8256] "2011-03-31" NA           NA           "2013-11-30" NA          
##  [8261] NA           NA           "2013-11-30" NA           NA          
##  [8266] NA           NA           "2011-03-31" NA           NA          
##  [8271] NA           "2013-10-13" "2013-10-13" "2013-10-13" NA          
##  [8276] NA           NA           NA           NA           NA          
##  [8281] "2012-08-30" "2011-05-24" NA           "2012-08-30" NA          
##  [8286] NA           NA           "2011-05-24" "2011-05-24" "2012-08-21"
##  [8291] "2012-08-21" NA           NA           NA           NA          
##  [8296] NA           NA           NA           NA           NA          
##  [8301] NA           NA           NA           NA           NA          
##  [8306] "2011-03-14" NA           NA           NA           "2011-03-14"
##  [8311] NA           NA           NA           NA           "2011-03-14"
##  [8316] "2011-10-23" "2012-09-26" "2012-09-26" "2011-10-23" "2011-10-23"
##  [8321] "2012-09-26" "2012-09-26" "2012-09-26" "2012-04-22" "2012-04-22"
##  [8326] "2012-04-22" NA           NA           NA           NA          
##  [8331] NA           NA           NA           NA           NA          
##  [8336] NA           NA           NA           NA           NA          
##  [8341] NA           NA           "2011-08-27" "2011-08-27" "2011-12-27"
##  [8346] "2011-12-27" "2011-12-27" "2011-12-27" "2012-08-14" "2013-12-16"
##  [8351] "2012-10-14" "2012-04-26" NA           NA           "2012-10-14"
##  [8356] "2012-08-14" "2012-04-26" NA           NA           "2012-10-14"
##  [8361] NA           "2012-04-26" "2013-12-16" "2013-12-16" "2013-03-30"
##  [8366] "2013-03-30" "2011-02-14" "2011-02-14" "2013-03-30" "2011-02-14"
##  [8371] NA           "2011-02-14" NA           "2011-02-14" "2011-07-13"
##  [8376] "2011-07-13" "2011-07-13" "2011-07-13" NA           "2011-07-13"
##  [8381] NA           "2011-02-15" "2011-02-22" "2011-02-15" "2013-07-30"
##  [8386] "2013-07-30" "2011-02-22" "2013-07-30" "2011-02-22" "2011-02-22"
##  [8391] "2011-02-15" "2011-02-15" "2013-07-30" "2013-07-30" "2011-02-15"
##  [8396] "2011-02-22" "2013-06-24" "2013-06-24" NA           NA          
##  [8401] "2013-06-24" NA           NA           "2011-07-28" NA          
##  [8406] NA           NA           NA           "2011-07-28" NA          
##  [8411] "2011-06-29" "2011-06-29" "2012-07-26" "2012-10-20" "2012-07-26"
##  [8416] "2011-06-29" "2012-07-26" "2012-07-26" "2012-03-28" "2012-03-28"
##  [8421] "2012-03-28" "2012-03-28" "2012-07-26" "2012-10-20" "2012-03-28"
##  [8426] NA           NA           "2013-12-26" "2013-12-26" NA          
##  [8431] NA           NA           "2013-12-26" "2013-12-26" NA          
##  [8436] NA           NA           "2013-12-21" NA           "2013-12-21"
##  [8441] "2013-12-21" NA           "2011-04-23" "2011-04-23" NA          
##  [8446] NA           NA           "2013-02-17" NA           NA          
##  [8451] "2013-02-17" "2013-02-17" NA           NA           NA          
##  [8456] "2011-07-14" "2011-07-14" "2012-08-26" NA           "2012-08-26"
##  [8461] "2012-08-26" "2012-08-26" "2012-08-26" "2012-01-13" "2013-12-18"
##  [8466] "2013-12-26" "2013-02-13" "2013-12-18" "2012-01-13" "2013-12-26"
##  [8471] "2013-12-26" "2013-02-13" "2013-12-26" "2013-12-26" "2013-12-18"
##  [8476] "2013-12-18" "2012-01-13" "2013-12-18" "2013-02-13" "2011-11-27"
##  [8481] "2011-11-27" NA           "2013-11-14" "2013-11-14" NA          
##  [8486] NA           "2011-11-27" NA           "2011-11-27" NA          
##  [8491] NA           NA           NA           "2013-11-14" "2011-11-27"
##  [8496] "2013-11-14" NA           NA           NA           NA          
##  [8501] NA           NA           NA           NA           NA          
##  [8506] NA           "2012-12-17" "2012-12-17" "2012-12-17" NA          
##  [8511] NA           NA           NA           NA           NA          
##  [8516] NA           NA           NA           NA           "2012-08-21"
##  [8521] NA           "2012-08-21" NA           NA           NA          
##  [8526] NA           "2014-02-13" "2014-02-20" NA           NA          
##  [8531] "2014-02-13" NA           NA           "2014-02-20" NA          
##  [8536] NA           "2011-07-18" "2011-07-18" "2011-07-18" "2011-07-18"
##  [8541] NA           "2011-07-18" "2013-10-16" "2013-10-16" "2013-10-16"
##  [8546] "2013-10-16" NA           "2012-02-24" NA           "2012-12-31"
##  [8551] "2012-12-31" "2012-02-24" "2012-02-24" "2012-12-31" "2012-02-24"
##  [8556] "2012-02-24" "2012-02-24" NA           "2012-07-23" "2013-06-16"
##  [8561] "2012-07-23" "2013-06-16" "2012-07-23" "2012-07-23" NA          
##  [8566] NA           "2012-11-25" NA           "2012-11-25" "2012-11-25"
##  [8571] NA           "2012-11-25" "2012-11-25" NA           NA          
##  [8576] NA           NA           NA           NA           "2012-10-15"
##  [8581] "2012-10-15" NA           "2012-10-15" "2012-10-15" NA          
##  [8586] NA           "2013-06-30" NA           NA           "2013-06-30"
##  [8591] NA           NA           NA           NA           NA          
##  [8596] NA           NA           NA           NA           NA          
##  [8601] NA           NA           NA           "2011-06-30" "2011-06-30"
##  [8606] "2011-06-30" "2011-06-30" "2011-06-30" "2011-12-13" NA          
##  [8611] NA           NA           "2011-12-13" NA           "2012-05-23"
##  [8616] NA           "2012-05-23" NA           "2012-05-23" "2011-12-13"
##  [8621] "2012-01-18" "2012-01-18" "2012-01-18" "2013-01-28" "2012-01-18"
##  [8626] "2012-01-18" "2013-01-28" "2012-07-31" "2014-01-22" "2012-07-31"
##  [8631] "2012-07-31" "2014-01-22" NA           NA           NA          
##  [8636] NA           NA           NA           NA           NA          
##  [8641] NA           NA           NA           NA           "2012-06-24"
##  [8646] "2012-06-24" "2012-04-23" "2012-04-25" "2012-04-25" "2012-04-23"
##  [8651] "2012-06-24" "2012-04-25" "2012-06-24" "2012-06-24" "2012-04-23"
##  [8656] NA           "2012-09-27" NA           "2012-09-27" NA          
##  [8661] "2011-03-24" "2011-03-24" "2011-03-24" "2011-03-24" "2011-03-24"
##  [8666] "2011-03-24" NA           "2011-10-25" "2011-05-24" "2011-05-24"
##  [8671] "2011-10-25" NA           NA           "2011-10-25" "2011-05-24"
##  [8676] "2011-10-25" "2011-05-24" "2011-05-24" "2011-10-25" NA          
##  [8681] NA           NA           NA           NA           NA          
##  [8686] NA           NA           NA           NA           "2014-01-30"
##  [8691] NA           "2011-04-24" "2014-01-30" "2011-04-24" "2014-01-30"
##  [8696] "2011-04-24" NA           "2014-01-30" "2011-04-24" "2011-04-24"
##  [8701] NA           NA           NA           NA           "2013-07-15"
##  [8706] "2013-06-27" "2013-07-15" "2013-07-15" "2013-06-27" "2011-06-13"
##  [8711] "2011-06-15" "2011-03-25" "2011-06-13" "2011-03-25" "2011-06-15"
##  [8716] "2011-06-15" "2011-06-13" "2011-06-13" "2011-06-15" "2012-06-21"
##  [8721] "2012-06-21" "2011-11-28" "2011-11-28" "2011-01-31" "2012-06-20"
##  [8726] NA           NA           "2011-01-31" "2011-11-28" NA          
##  [8731] NA           NA           "2011-01-31" "2012-06-20" NA          
##  [8736] NA           NA           "2011-04-27" NA           "2011-04-27"
##  [8741] "2013-09-21" "2011-07-13" "2011-07-13" NA           "2011-04-27"
##  [8746] NA           "2013-09-14" "2013-09-21" NA           NA          
##  [8751] NA           "2011-04-27" NA           "2013-09-21" "2013-09-14"
##  [8756] "2012-10-18" "2011-07-13" "2011-07-13" NA           "2013-09-14"
##  [8761] "2011-07-13" NA           "2011-04-27" "2013-09-14" "2011-07-13"
##  [8766] "2013-09-21" "2013-09-14" NA           "2012-10-18" "2013-09-21"
##  [8771] "2011-12-16" "2014-01-24" NA           NA           "2011-12-16"
##  [8776] NA           "2014-01-24" "2014-01-24" "2014-01-24" NA          
##  [8781] NA           NA           "2014-02-20" "2011-12-16" NA          
##  [8786] NA           "2014-02-20" "2014-01-24" "2011-12-16" "2014-02-20"
##  [8791] NA           "2011-12-16" NA           "2012-05-20" "2012-05-20"
##  [8796] "2014-02-20" "2014-02-20" NA           NA           "2012-05-20"
##  [8801] "2012-05-20" "2012-05-20" "2011-10-27" "2011-10-27" "2011-10-27"
##  [8806] NA           NA           "2012-06-17" NA           "2012-06-17"
##  [8811] "2013-03-19" "2013-03-19" "2013-03-24" "2013-03-19" "2012-12-30"
##  [8816] "2013-03-19" NA           "2013-03-24" NA           "2012-12-30"
##  [8821] "2013-03-24" "2013-03-24" "2013-03-19" "2013-03-24" "2011-10-20"
##  [8826] "2011-10-20" "2011-10-20" "2011-10-20" "2011-10-20" "2014-02-18"
##  [8831] "2014-02-18" "2013-08-21" "2013-08-21" "2013-08-21" "2011-01-26"
##  [8836] "2014-02-18" "2013-08-21" "2014-02-18" "2014-02-18" NA          
##  [8841] "2013-06-24" "2013-08-21" "2013-06-24" "2013-06-24" "2011-01-26"
##  [8846] NA           NA           NA           "2013-03-15" "2013-03-15"
##  [8851] "2013-03-15" NA           NA           "2013-03-15" NA          
##  [8856] NA           "2013-03-15" "2013-03-15" NA           "2013-12-25"
##  [8861] "2013-12-25" "2013-12-25" NA           "2013-07-15" "2013-12-25"
##  [8866] "2013-12-25" NA           "2013-07-15" "2012-09-18" "2012-09-14"
##  [8871] "2012-09-14" "2012-09-18" "2012-09-18" "2012-09-14" "2013-04-25"
##  [8876] NA           "2013-04-25" "2013-04-25" "2013-04-25" "2013-04-25"
##  [8881] NA           NA           NA           NA           NA          
##  [8886] NA           NA           "2012-12-25" "2012-05-18" "2012-05-18"
##  [8891] "2012-12-25" "2012-12-25" "2013-07-22" NA           "2013-10-28"
##  [8896] "2013-07-22" NA           NA           "2013-07-22" "2013-07-22"
##  [8901] NA           NA           NA           "2013-10-28" "2013-05-30"
##  [8906] "2013-05-30" "2013-07-22" "2013-05-30" NA           "2012-09-29"
##  [8911] NA           NA           NA           NA           NA          
##  [8916] NA           NA           NA           NA           NA          
##  [8921] NA           "2012-09-29" NA           NA           NA          
##  [8926] "2012-09-29" NA           NA           "2012-09-29" "2012-09-29"
##  [8931] NA           "2011-04-22" NA           "2011-04-22" NA          
##  [8936] NA           "2013-01-23" "2013-01-23" "2013-01-23" "2013-01-23"
##  [8941] "2013-01-23" "2013-07-20" "2013-01-23" "2012-02-18" NA          
##  [8946] "2012-02-18" "2013-07-22" "2013-07-22" NA           NA          
##  [8951] "2012-02-18" "2013-07-20" "2013-07-22" NA           NA          
##  [8956] NA           NA           NA           NA           NA          
##  [8961] NA           NA           "2013-04-15" "2011-12-15" "2011-12-15"
##  [8966] "2013-04-15" "2011-12-15" "2014-02-20" NA           NA          
##  [8971] NA           NA           NA           NA           NA          
##  [8976] "2014-02-20" "2014-02-20" "2013-12-21" "2013-03-29" "2013-03-29"
##  [8981] "2013-12-21" "2013-07-24" "2013-03-29" "2013-12-21" "2013-12-21"
##  [8986] "2013-03-29" "2013-07-31" "2013-07-31" "2013-03-29" "2013-07-24"
##  [8991] "2011-05-23" "2012-10-23" "2011-05-23" "2012-10-23" "2011-05-23"
##  [8996] "2011-05-23" "2011-05-23" "2011-05-23" "2012-10-23" NA          
##  [9001] NA           "2012-08-28" NA           "2013-04-22" "2013-04-24"
##  [9006] "2013-04-22" "2012-08-28" "2012-08-28" "2013-04-24" "2012-10-28"
##  [9011] "2012-10-28" "2012-08-28" "2012-10-28" NA           NA          
##  [9016] NA           "2014-01-15" NA           "2014-01-15" NA          
##  [9021] NA           NA           NA           "2014-01-15" NA          
##  [9026] "2011-07-14" "2011-08-30" "2011-08-30" "2013-09-22" "2013-09-22"
##  [9031] "2011-08-30" "2013-09-22" "2013-10-27" "2011-07-14" "2013-10-27"
##  [9036] "2013-10-27" "2013-09-22" "2013-09-22" "2011-07-14" "2013-10-27"
##  [9041] "2013-10-27" "2013-01-27" NA           NA           "2013-01-27"
##  [9046] "2013-01-27" NA           "2013-01-27" "2013-01-27" "2012-05-14"
##  [9051] "2012-05-14" "2012-05-14" "2012-05-14" "2012-05-14" "2012-05-14"
##  [9056] "2013-08-28" "2011-02-13" "2013-08-28" "2011-02-13" "2011-09-22"
##  [9061] "2011-09-22" "2013-08-28" "2011-02-13" "2013-08-28" "2011-02-13"
##  [9066] "2013-08-28" "2011-09-22" NA           "2013-08-27" "2013-08-27"
##  [9071] NA           "2013-12-19" "2012-05-18" "2012-05-18" "2013-12-19"
##  [9076] NA           NA           "2013-01-26" NA           "2014-01-23"
##  [9081] "2014-01-23" "2013-01-26" NA           NA           NA          
##  [9086] "2012-03-24" "2012-03-24" NA           NA           "2013-10-18"
##  [9091] "2013-10-21" "2013-10-21" "2013-10-18" "2013-10-21" NA          
##  [9096] "2013-10-18" "2013-10-21" "2013-10-18" NA           NA          
##  [9101] NA           NA           "2011-04-13" "2012-11-30" "2012-11-30"
##  [9106] "2012-11-30" NA           "2011-04-13" NA           "2013-05-31"
##  [9111] "2013-05-31" "2013-05-31" "2013-10-27" "2013-05-31" "2013-10-27"
##  [9116] "2013-10-27" "2012-03-19" "2013-10-27" "2013-10-27" "2013-05-31"
##  [9121] "2013-05-31" "2012-03-19" NA           NA           NA          
##  [9126] NA           NA           "2012-09-19" "2012-09-19" "2012-09-19"
##  [9131] NA           "2012-09-19" "2012-09-19" NA           NA          
##  [9136] NA           NA           NA           NA           "2013-04-26"
##  [9141] "2011-02-24" "2011-02-24" NA           "2011-02-24" "2013-04-26"
##  [9146] "2011-02-24" "2011-02-24" "2011-02-24" NA           NA          
##  [9151] "2013-01-15" "2013-01-15" "2013-01-15" "2012-12-22" "2012-12-22"
##  [9156] NA           "2011-04-14" "2012-06-15" "2013-12-25" "2011-04-14"
##  [9161] "2012-06-15" "2012-04-19" "2012-04-19" "2012-06-15" "2013-12-25"
##  [9166] "2013-12-25" "2013-12-25" "2012-06-15" "2011-12-16" NA          
##  [9171] NA           NA           "2011-12-16" NA           NA          
##  [9176] "2012-07-17" "2012-11-27" "2012-07-17" "2012-11-27" "2011-08-25"
##  [9181] "2012-11-27" "2011-08-25" "2012-11-27" "2011-08-25" "2012-11-27"
##  [9186] "2012-07-17" "2011-08-25" "2011-08-25" "2011-09-25" "2011-09-25"
##  [9191] "2011-09-25" "2011-09-25" "2011-04-27" NA           NA          
##  [9196] NA           NA           "2011-04-27" "2011-04-27" "2011-09-25"
##  [9201] NA           "2011-04-27" NA           NA           NA          
##  [9206] NA           "2012-12-20" "2012-12-20" "2012-12-20" "2012-12-16"
##  [9211] NA           "2012-12-16" "2012-12-16" "2012-12-16" "2012-12-16"
##  [9216] NA           NA           NA           NA           NA          
##  [9221] NA           NA           "2011-06-18" "2011-06-18" "2011-06-18"
##  [9226] NA           NA           NA           NA           NA          
##  [9231] NA           NA           NA           NA           NA          
##  [9236] "2011-08-25" NA           "2013-05-24" NA           "2013-05-24"
##  [9241] "2013-05-24" "2013-05-24" "2011-08-25" "2011-08-25" "2013-05-24"
##  [9246] "2011-08-25" "2012-09-19" "2012-09-19" NA           "2013-09-28"
##  [9251] "2013-09-28" "2011-12-24" "2011-12-24" "2011-12-24" "2013-09-28"
##  [9256] "2011-12-24" NA           NA           NA           NA          
##  [9261] NA           "2012-03-16" NA           NA           "2012-03-16"
##  [9266] "2012-03-16" "2012-03-16" "2012-03-16" NA           NA          
##  [9271] "2011-12-16" NA           "2011-12-16" "2011-12-16" NA          
##  [9276] "2011-02-22" "2011-12-16" "2011-12-16" NA           NA          
##  [9281] NA           "2011-12-16" NA           NA           NA          
##  [9286] "2011-02-22" NA           NA           "2011-02-22" NA          
##  [9291] NA           NA           NA           "2013-02-13" "2011-11-22"
##  [9296] "2011-11-22" "2012-06-23" "2011-11-22" "2011-11-30" "2011-11-22"
##  [9301] "2013-02-13" "2011-11-22" "2011-11-30" "2012-06-23" "2013-02-13"
##  [9306] "2012-06-23" "2012-06-23" "2011-11-30" "2011-11-30" "2011-11-30"
##  [9311] "2012-06-23" "2012-06-23" "2012-08-20" "2013-09-21" "2012-08-20"
##  [9316] "2012-08-20" "2013-09-21" "2012-08-20" "2012-08-20" "2012-05-30"
##  [9321] "2012-05-30" "2012-05-30" "2012-05-30" "2012-05-30" "2013-09-21"
##  [9326] "2012-02-27" "2013-01-13" "2013-01-13" "2012-02-27" "2013-01-13"
##  [9331] "2013-01-13" "2013-01-13" NA           NA           NA          
##  [9336] NA           NA           NA           NA           NA          
##  [9341] NA           NA           "2012-03-21" "2012-03-21" "2012-03-15"
##  [9346] "2012-03-15" "2012-03-21" "2012-03-15" "2012-03-21" "2012-03-21"
##  [9351] "2012-03-15" "2012-03-15" "2013-02-15" "2013-02-15" "2013-02-15"
##  [9356] "2013-08-28" "2012-05-29" "2012-05-29" "2013-08-28" "2012-05-29"
##  [9361] "2013-09-26" "2013-09-26" "2013-09-26" "2012-04-23" "2012-04-23"
##  [9366] "2012-05-23" "2012-05-23" NA           "2011-04-28" "2012-05-23"
##  [9371] "2012-05-23" "2011-04-28" NA           "2011-10-18" "2011-10-18"
##  [9376] "2011-10-18" "2011-10-18" "2011-10-18" "2012-05-23" "2011-10-18"
##  [9381] "2012-05-23" "2013-06-17" "2013-06-17" "2013-06-17" "2013-06-17"
##  [9386] "2013-06-17" "2013-06-17" NA           NA           "2011-06-14"
##  [9391] "2011-06-14" NA           NA           "2011-06-14" NA          
##  [9396] "2011-06-14" NA           "2011-06-14" "2013-10-27" NA          
##  [9401] "2011-06-14" "2013-10-27" NA           "2011-06-15" "2013-02-14"
##  [9406] "2013-02-14" "2011-06-15" NA           "2012-03-14" NA          
##  [9411] NA           "2012-03-14" "2014-02-16" "2012-03-14" "2014-02-16"
##  [9416] "2012-03-14" "2014-02-16" NA           NA           "2012-03-14"
##  [9421] NA           "2012-08-27" NA           NA           "2012-08-27"
##  [9426] "2012-08-19" "2012-08-27" NA           NA           "2012-08-19"
##  [9431] NA           "2012-08-19" "2011-12-23" "2011-12-23" "2013-05-17"
##  [9436] "2011-10-23" "2013-05-17" "2013-05-17" NA           "2013-05-17"
##  [9441] "2013-05-17" "2011-10-23" "2013-05-16" "2013-08-13" "2013-05-16"
##  [9446] NA           "2013-05-16" "2013-08-13" "2013-05-16" "2013-05-16"
##  [9451] "2011-10-23" "2012-05-31" "2012-05-31" "2012-05-31" "2011-06-19"
##  [9456] "2011-08-16" "2012-05-31" "2012-05-31" "2011-06-19" "2011-08-17"
##  [9461] "2011-08-17" "2011-08-16" "2011-06-19" "2011-06-19" "2011-06-19"
##  [9466] "2013-08-25" "2013-08-25" "2013-08-25" "2013-01-19" "2013-01-19"
##  [9471] "2013-01-19" "2011-04-27" "2011-04-27" "2011-04-27" "2011-04-27"
##  [9476] NA           NA           "2011-04-27" NA           "2011-04-22"
##  [9481] "2011-04-22" "2012-10-16" "2011-04-22" "2011-04-22" "2011-04-22"
##  [9486] "2012-10-25" "2012-10-16" "2012-08-15" "2012-08-15" "2012-10-25"
##  [9491] "2012-08-15" "2011-04-22" "2012-10-25" "2012-10-16" "2012-03-18"
##  [9496] "2012-03-18" "2012-03-18" "2012-03-18" "2012-03-18" "2013-01-31"
##  [9501] "2013-02-16" "2013-01-31" "2013-02-16" "2013-02-16" "2013-01-31"
##  [9506] "2013-01-31" "2013-01-31" NA           NA           NA          
##  [9511] NA           NA           NA           NA           NA          
##  [9516] NA           NA           NA           "2013-08-31" NA          
##  [9521] NA           NA           NA           NA           NA          
##  [9526] "2013-08-31" NA           "2011-03-28" NA           NA          
##  [9531] NA           "2011-03-28" NA           NA           NA          
##  [9536] "2011-03-28" "2011-03-28" "2011-03-28" "2012-03-23" "2012-03-23"
##  [9541] "2012-03-23" "2012-03-23" "2012-03-23" "2011-04-22" "2011-04-22"
##  [9546] NA           "2013-10-13" "2013-10-13" "2011-04-22" NA          
##  [9551] "2013-10-13" NA           "2011-04-15" "2011-04-15" NA          
##  [9556] "2011-04-15" "2011-04-22" NA           "2011-04-15" "2013-06-27"
##  [9561] "2012-07-20" "2013-06-27" NA           "2012-07-20" NA          
##  [9566] NA           "2012-07-20" NA           NA           NA          
##  [9571] "2012-04-21" NA           "2012-04-21" "2012-06-14" "2012-04-21"
##  [9576] "2012-06-14" "2012-04-21" "2012-04-21" "2012-06-14" "2012-10-29"
##  [9581] NA           "2012-10-29" NA           "2012-10-29" "2012-10-29"
##  [9586] "2011-07-30" "2011-07-30" "2012-10-29" NA           "2013-08-21"
##  [9591] NA           NA           "2013-10-15" "2013-08-15" NA          
##  [9596] "2013-08-21" "2013-10-15" "2013-08-15" NA           "2013-03-23"
##  [9601] "2011-03-24" "2011-06-19" "2013-03-23" "2013-03-23" "2011-03-24"
##  [9606] "2011-03-24" "2011-03-24" "2013-03-23" "2013-03-23" "2011-06-19"
##  [9611] "2011-03-24" "2011-06-19" "2013-05-24" NA           NA          
##  [9616] "2013-05-24" NA           "2013-08-16" "2013-08-16" NA          
##  [9621] "2013-07-17" "2013-03-27" NA           "2013-03-27" "2013-07-17"
##  [9626] "2013-03-27" "2011-03-21" "2011-03-21" "2011-03-21" NA          
##  [9631] "2013-07-17" NA           NA           "2012-11-26" "2012-02-15"
##  [9636] "2012-02-15" "2013-08-27" "2012-02-15" "2012-02-15" "2012-11-26"
##  [9641] "2012-11-26" "2013-08-27" NA           "2013-08-27" "2012-02-15"
##  [9646] NA           NA           NA           NA           NA          
##  [9651] "2013-10-27" "2013-10-27" NA           "2013-05-31" "2013-05-31"
##  [9656] NA           "2013-05-31" NA           "2013-06-15" NA          
##  [9661] NA           "2013-06-15" NA           "2013-06-15" "2013-06-15"
##  [9666] NA           NA           NA           NA           NA          
##  [9671] NA           NA           NA           NA           NA          
##  [9676] "2012-01-31" "2012-01-31" NA           "2011-02-26" NA          
##  [9681] "2011-02-26" "2011-02-26" "2011-02-26" "2011-02-26" "2011-02-26"
##  [9686] "2012-01-17" "2012-10-13" "2012-01-17" "2012-01-17" "2012-01-17"
##  [9691] "2012-10-13" "2012-10-13" "2012-10-13" "2012-01-17" NA          
##  [9696] "2011-08-28" NA           NA           "2011-08-28" NA          
##  [9701] NA           "2011-08-28" NA           "2012-05-15" NA          
##  [9706] NA           "2012-05-15" NA           "2013-04-21" "2013-04-21"
##  [9711] NA           NA           NA           NA           "2013-04-21"
##  [9716] "2013-04-21" NA           NA           NA           NA          
##  [9721] "2012-06-26" "2011-08-16" NA           "2012-06-26" NA          
##  [9726] "2011-08-16" NA           NA           NA           NA          
##  [9731] "2012-06-26" "2013-07-28" "2013-07-28" "2013-07-28" NA          
##  [9736] "2012-06-26" "2012-06-26" "2011-08-16" "2011-08-16" "2011-08-16"
##  [9741] NA           NA           NA           NA           NA          
##  [9746] NA           NA           NA           NA           "2011-08-27"
##  [9751] "2013-04-18" "2013-04-18" "2013-04-18" "2011-08-27" "2013-04-18"
##  [9756] "2011-08-27" "2011-08-27" "2011-08-27" "2011-08-27" "2013-04-18"
##  [9761] "2011-07-23" NA           "2011-07-18" "2011-07-23" NA          
##  [9766] "2011-07-18" "2011-01-30" "2011-08-22" "2011-08-22" "2011-08-22"
##  [9771] "2011-01-30" "2012-05-23" "2011-01-30" "2012-05-23" "2012-05-23"
##  [9776] "2011-11-19" "2011-08-22" "2012-05-23" "2012-05-23" "2011-11-19"
##  [9781] "2011-08-22" "2011-08-22" "2011-01-30" "2011-01-30" "2012-05-28"
##  [9786] "2013-05-24" "2013-05-24" "2012-05-28" "2012-05-28" "2013-05-24"
##  [9791] "2012-05-28" "2012-05-28" "2013-05-24" "2012-05-28" "2013-05-24"
##  [9796] "2012-09-24" "2012-09-16" NA           NA           "2012-09-16"
##  [9801] "2012-09-24" "2013-09-17" "2013-09-17" "2012-09-17" "2013-09-17"
##  [9806] "2011-03-22" "2011-03-22" "2012-09-19" "2011-02-20" "2013-09-17"
##  [9811] "2012-09-19" "2012-09-17" "2013-09-17" "2012-09-17" "2011-02-20"
##  [9816] "2012-09-19" "2013-09-17" "2012-09-19" "2011-03-22" "2011-03-22"
##  [9821] "2011-12-31" NA           "2011-12-31" NA           NA          
##  [9826] "2011-12-31" NA           NA           "2012-11-16" NA          
##  [9831] "2013-07-28" NA           "2012-11-16" NA           "2013-07-28"
##  [9836] NA           NA           "2012-11-16" NA           NA          
##  [9841] NA           NA           NA           NA           "2012-11-16"
##  [9846] NA           "2012-12-22" "2012-12-31" "2012-12-22" "2012-12-31"
##  [9851] NA           "2012-12-22" "2012-12-31" "2012-12-31" "2012-12-22"
##  [9856] "2012-12-22" NA           "2012-12-31" NA           NA          
##  [9861] NA           NA           NA           NA           NA          
##  [9866] NA           "2012-08-28" NA           "2012-08-28" NA          
##  [9871] NA           NA           NA           "2011-04-30" NA          
##  [9876] NA           NA           "2011-04-30" "2011-04-30" NA          
##  [9881] NA           NA           "2012-03-14" "2012-03-14" NA          
##  [9886] NA           "2012-03-14" NA           "2012-04-22" "2012-04-22"
##  [9891] "2012-06-22" "2012-06-22" "2012-04-22" "2012-04-20" "2012-04-22"
##  [9896] "2013-05-25" "2012-06-22" "2012-04-20" "2012-04-20" "2013-07-26"
##  [9901] "2013-02-28" "2012-04-20" "2012-04-22" "2012-04-22" "2013-07-26"
##  [9906] "2013-05-25" "2013-05-25" "2012-04-22" "2013-02-28" "2012-04-20"
##  [9911] "2013-07-26" "2012-04-22" "2012-04-22" "2012-04-22" "2013-02-28"
##  [9916] "2012-06-22" "2013-05-25" "2013-05-25" "2012-06-22" "2013-07-26"
##  [9921] "2013-07-26" "2011-10-24" "2011-10-24" "2011-10-24" "2011-08-22"
##  [9926] "2011-08-22" "2013-11-17" "2011-08-22" "2011-10-24" NA          
##  [9931] NA           "2013-11-17" "2011-08-22" NA           "2013-11-17"
##  [9936] "2013-11-17" "2011-08-22" "2013-11-17" "2013-11-17" NA          
##  [9941] NA           NA           NA           NA           NA          
##  [9946] NA           NA           NA           NA           NA          
##  [9951] NA           "2011-08-24" NA           "2011-04-19" "2011-04-19"
##  [9956] "2011-08-24" NA           "2013-09-15" NA           "2011-08-24"
##  [9961] "2013-09-15" NA           NA           NA           "2011-08-24"
##  [9966] NA           "2011-08-24" NA           "2013-09-15" NA          
##  [9971] "2011-06-22" "2011-09-23" NA           "2011-09-23" "2011-06-22"
##  [9976] "2011-09-23" "2011-09-23" "2012-01-14" "2012-01-14" "2011-09-23"
##  [9981] NA           NA           "2012-01-14" NA           NA          
##  [9986] "2012-01-14" NA           "2012-01-14" NA           NA          
##  [9991] "2012-01-14" NA           NA           NA           NA          
##  [9996] "2013-12-15" NA           NA           NA           NA          
## [10001] NA           "2013-12-15" "2013-12-15" NA           NA          
## [10006] "2012-07-15" "2013-03-26" "2012-07-15" "2013-03-26" "2012-07-15"
## [10011] NA           NA           NA           "2012-08-25" NA          
## [10016] NA           NA           "2012-08-25" NA           NA          
## [10021] NA           "2012-11-15" "2012-11-15" "2012-11-15" NA          
## [10026] "2011-08-23" NA           NA           "2011-08-18" "2011-08-23"
## [10031] NA           "2011-08-18" NA           "2011-08-18" "2011-08-23"
## [10036] "2011-08-18" "2011-08-23" "2011-08-18" "2011-08-18" "2011-08-23"
## [10041] "2012-11-15" "2011-08-23" "2013-03-20" "2013-03-20" "2013-03-20"
## [10046] "2013-03-20" "2013-03-20" "2014-01-27" NA           "2014-01-27"
## [10051] "2014-01-27" "2013-11-29" NA           NA           NA          
## [10056] "2013-11-29" NA           NA           NA           NA          
## [10061] NA           NA           NA           "2011-07-30" "2011-07-30"
## [10066] "2011-07-30" NA           "2013-04-27" "2013-04-27" NA          
## [10071] "2011-08-28" "2013-08-27" "2011-08-28" "2013-08-27" NA          
## [10076] "2013-08-27" "2011-08-28" "2011-08-28" "2011-08-28" "2011-08-28"
## [10081] NA           NA           NA           NA           NA          
## [10086] "2011-02-21" NA           "2011-02-21" "2011-02-21" NA          
## [10091] "2012-08-21" "2011-01-30" "2011-01-30" NA           NA          
## [10096] NA           "2012-08-21" NA           "2012-08-21" "2011-08-30"
## [10101] "2011-08-30" NA           NA           NA           "2011-08-30"
## [10106] "2013-01-29" NA           "2013-01-29" "2013-01-29" NA          
## [10111] NA           "2013-10-20" NA           NA           NA          
## [10116] NA           "2013-10-20" "2013-10-18" NA           "2013-10-20"
## [10121] "2013-10-20" "2013-10-18" "2013-10-20" "2013-10-18" NA          
## [10126] NA           "2013-10-18" NA           "2013-10-18" NA          
## [10131] NA           NA           NA           NA           NA          
## [10136] NA           NA           NA           NA           NA          
## [10141] NA           NA           NA           NA           NA          
## [10146] NA           NA           NA           NA           NA          
## [10151] NA           NA           NA           NA           NA          
## [10156] "2013-10-14" "2013-10-14" "2013-10-14" "2012-01-30" "2012-08-19"
## [10161] "2012-08-19" "2013-09-22" "2013-10-14" "2013-09-22" "2012-01-30"
## [10166] "2012-01-30" NA           NA           "2013-03-27" "2013-07-20"
## [10171] NA           "2011-06-25" "2013-10-24" "2013-07-20" NA          
## [10176] "2013-10-24" "2012-10-29" "2013-03-27" "2012-10-29" "2013-07-20"
## [10181] "2013-10-24" "2011-06-25" "2011-06-25" "2011-06-25" "2012-10-29"
## [10186] NA           NA           "2011-11-25" "2011-11-25" "2011-11-25"
## [10191] "2012-03-24" "2012-03-24" "2012-03-24" "2013-08-18" "2013-08-18"
## [10196] "2013-08-18" "2013-08-18" "2013-08-18" "2013-08-18" "2011-06-20"
## [10201] "2011-06-20" NA           NA           "2011-06-25" "2013-12-30"
## [10206] NA           "2011-06-20" "2011-06-25" "2013-12-30" "2011-06-25"
## [10211] NA           NA           NA           NA           NA          
## [10216] NA           NA           NA           NA           NA          
## [10221] NA           NA           NA           NA           NA          
## [10226] NA           NA           NA           NA           NA          
## [10231] NA           "2011-06-19" NA           NA           NA          
## [10236] NA           "2011-06-19" "2011-06-19" "2011-06-19" NA          
## [10241] "2013-11-22" "2013-11-22" "2013-11-22" "2013-11-22" "2012-12-14"
## [10246] "2013-11-22" "2011-05-31" "2012-12-14" "2011-05-31" "2011-05-31"
## [10251] "2011-05-31" "2011-03-15" NA           NA           NA          
## [10256] "2011-03-15" NA           NA           "2012-06-15" "2011-03-15"
## [10261] NA           "2012-06-15" "2011-03-15" NA           "2011-03-15"
## [10266] "2011-03-15" NA           "2013-08-28" "2013-06-13" "2013-06-13"
## [10271] "2013-08-28" NA           NA           NA           "2013-08-28"
## [10276] NA           NA           NA           NA           NA          
## [10281] NA           NA           NA           NA           "2013-02-20"
## [10286] "2013-02-23" "2013-02-20" NA           "2013-02-20" NA          
## [10291] NA           "2013-02-23" "2013-02-20" NA           NA          
## [10296] "2013-02-23" NA           NA           "2013-02-23" "2013-02-23"
## [10301] "2013-02-20" "2011-08-19" "2011-08-19" "2011-08-19" NA          
## [10306] NA           NA           NA           NA           "2012-05-23"
## [10311] "2012-05-23" "2012-05-23" "2012-05-23" "2012-05-23" NA          
## [10316] "2013-09-25" NA           NA           NA           NA          
## [10321] NA           NA           "2013-09-25" NA           NA          
## [10326] "2011-02-25" "2013-09-24" "2011-02-25" "2013-09-24" "2013-09-24"
## [10331] "2013-09-24" "2013-09-24" "2013-09-24" "2012-07-28" NA          
## [10336] NA           "2013-06-19" "2012-07-28" "2013-06-19" "2013-06-19"
## [10341] "2013-06-19" "2013-06-19" NA           "2011-11-17" "2011-11-17"
## [10346] "2011-11-17" NA           NA           "2014-01-19" "2012-10-16"
## [10351] "2014-01-19" "2014-01-19" NA           "2014-01-19" "2012-10-16"
## [10356] NA           "2012-10-16" NA           "2014-01-19" "2012-10-16"
## [10361] NA           NA           NA           NA           NA          
## [10366] "2012-10-16" NA           NA           NA           NA          
## [10371] NA           "2012-03-15" "2013-02-24" "2012-03-15" "2012-03-15"
## [10376] NA           "2012-03-15" "2013-11-30" NA           NA          
## [10381] "2013-02-24" NA           "2013-11-30" "2013-02-24" NA          
## [10386] "2013-11-30" "2013-11-30" NA           "2012-03-15" "2012-03-28"
## [10391] "2012-03-28" "2014-01-19" "2012-08-13" NA           "2012-08-13"
## [10396] NA           "2014-01-19" "2012-08-13" NA           NA          
## [10401] "2014-01-19" "2012-08-13" "2012-08-13" NA           NA          
## [10406] "2011-11-20" "2012-02-15" "2011-11-20" "2011-11-20" "2012-02-15"
## [10411] "2013-05-19" "2013-05-19" "2013-05-19" "2013-05-19" "2013-05-19"
## [10416] "2011-08-29" "2011-08-29" "2012-09-23" "2012-02-20" "2011-08-29"
## [10421] "2012-02-20" "2012-09-23" "2012-02-20" NA           NA          
## [10426] "2011-04-13" "2011-04-13" "2011-04-13" "2014-02-19" "2012-12-13"
## [10431] "2012-12-13" "2014-02-19" "2014-02-19" "2014-02-19" "2014-02-19"
## [10436] "2013-03-17" "2013-03-17" "2012-12-13" NA           NA          
## [10441] NA           NA           NA           NA           NA          
## [10446] NA           NA           NA           NA           NA          
## [10451] NA           "2012-06-27" "2012-06-30" "2012-06-30" "2012-06-30"
## [10456] "2012-06-27" "2012-06-30" "2012-06-30" "2013-06-28" "2013-06-28"
## [10461] "2013-06-28" NA           NA           "2013-06-28" "2013-06-28"
## [10466] NA           "2011-08-16" "2011-08-16" "2012-10-29" NA          
## [10471] "2011-08-16" "2011-08-16" NA           "2012-10-29" NA          
## [10476] "2011-06-27" NA           "2011-06-19" "2013-02-23" "2011-06-19"
## [10481] "2011-06-27" "2011-06-27" "2013-02-23" "2013-02-23" "2011-06-19"
## [10486] "2011-06-19" "2011-06-19" "2011-06-27" "2011-06-27" "2011-02-16"
## [10491] "2011-02-16" NA           NA           NA           "2012-04-16"
## [10496] NA           "2012-04-16" NA           NA           NA          
## [10501] "2012-04-19" NA           "2012-04-19" NA           NA          
## [10506] NA           NA           NA           "2011-11-21" "2011-11-21"
## [10511] "2011-07-28" "2014-02-20" "2011-07-28" "2014-02-20" "2014-02-20"
## [10516] "2014-02-20" "2011-07-28" "2014-02-20" "2011-08-13" "2013-04-23"
## [10521] "2013-12-28" "2011-08-13" "2013-04-23" "2012-06-24" "2011-08-13"
## [10526] "2013-01-28" "2013-12-18" "2013-12-18" "2013-04-23" "2012-06-24"
## [10531] "2013-12-28" "2013-01-28" "2013-12-18" "2013-12-18" "2013-12-28"
## [10536] "2012-06-24" "2012-06-24" "2013-12-28" "2013-01-28" "2012-06-24"
## [10541] "2013-12-18" "2013-12-28" "2011-02-20" "2011-02-20" "2011-02-20"
## [10546] "2011-02-20" "2011-02-20" NA           NA           NA          
## [10551] NA           "2013-04-22" "2013-04-22" NA           "2013-04-18"
## [10556] NA           NA           "2013-03-18" "2013-04-22" "2013-03-18"
## [10561] NA           "2011-03-28" "2013-03-18" "2013-04-18" "2011-03-28"
## [10566] "2013-04-22" "2011-03-28" "2013-04-22" "2013-04-18" "2011-03-28"
## [10571] "2011-03-28" NA           NA           NA           NA          
## [10576] NA           NA           NA           NA           NA          
## [10581] NA           NA           NA           NA           NA          
## [10586] NA           NA           NA           NA           "2011-03-27"
## [10591] "2011-03-27" "2011-03-27" "2011-06-24" NA           NA          
## [10596] "2011-06-24" NA           NA           NA           "2011-06-24"
## [10601] NA           "2011-09-26" "2011-09-26" "2014-01-30" "2014-01-30"
## [10606] "2014-01-30" "2014-01-30" "2013-09-29" "2013-09-29" "2014-01-30"
## [10611] "2011-11-25" NA           "2011-11-25" "2012-02-28" NA          
## [10616] NA           "2012-02-28" "2012-02-28" "2012-02-28" NA          
## [10621] NA           "2012-02-28" "2011-03-17" "2011-10-23" "2012-12-13"
## [10626] "2011-09-22" "2011-03-17" "2011-10-23" "2012-12-14" "2011-10-23"
## [10631] "2011-03-17" "2012-12-14" "2011-09-22" "2012-12-13" "2011-02-15"
## [10636] "2011-02-15" "2011-02-15" NA           "2011-02-15" "2011-02-15"
## [10641] NA           NA           NA           NA           NA          
## [10646] NA           NA           "2012-10-23" "2012-10-23" "2012-11-13"
## [10651] "2012-11-13" "2012-10-23" "2012-10-23" "2012-11-13" "2012-11-13"
## [10656] "2012-10-23" "2011-07-14" NA           NA           NA          
## [10661] "2011-07-14" "2011-04-30" NA           "2011-07-14" NA          
## [10666] NA           "2011-07-14" NA           "2011-07-14" "2011-04-30"
## [10671] NA           NA           NA           NA           "2012-06-28"
## [10676] NA           NA           "2012-06-28" "2013-05-18" "2011-08-28"
## [10681] NA           NA           "2013-05-18" "2011-08-28" "2011-10-18"
## [10686] "2011-10-25" "2012-01-25" NA           "2012-01-25" NA          
## [10691] "2011-01-31" "2011-10-25" "2012-01-25" NA           "2011-10-18"
## [10696] "2011-01-31" "2011-01-31" NA           NA           "2013-07-28"
## [10701] "2013-07-28" "2013-07-26" "2013-07-28" NA           "2013-07-28"
## [10706] NA           "2013-07-28" "2013-07-28" "2013-07-26" "2013-07-26"
## [10711] NA           "2013-07-26" "2013-07-26" "2013-07-26" NA          
## [10716] NA           "2014-01-29" "2014-01-28" NA           "2014-01-29"
## [10721] NA           NA           NA           "2014-01-29" NA          
## [10726] NA           "2014-01-28" "2014-01-28" NA           NA          
## [10731] "2013-09-13" NA           NA           NA           "2013-09-13"
## [10736] "2013-09-13" "2013-09-13" "2013-09-13" "2013-09-13" "2013-07-28"
## [10741] "2012-05-27" "2013-07-28" "2012-05-27" "2012-05-27" "2012-05-27"
## [10746] "2012-05-27" "2013-07-28" "2012-05-27" NA           NA          
## [10751] NA           NA           NA           NA           NA          
## [10756] NA           NA           "2012-08-30" "2013-11-19" "2012-08-30"
## [10761] "2012-08-30" "2013-11-19" "2013-11-19" "2013-11-19" "2012-08-30"
## [10766] "2012-08-30" "2013-11-19" "2011-07-17" NA           NA          
## [10771] NA           "2011-07-17" "2013-05-13" "2011-02-18" "2013-05-13"
## [10776] "2011-07-17" NA           NA           NA           "2013-05-13"
## [10781] "2013-05-13" "2011-02-18" "2013-05-13" "2013-05-13" NA          
## [10786] "2013-01-18" "2013-01-18" NA           "2012-07-15" "2012-07-19"
## [10791] "2012-07-19" "2012-07-15" NA           "2012-07-19" "2011-08-31"
## [10796] "2012-07-19" "2011-08-31" "2012-07-15" NA           NA          
## [10801] "2013-04-20" NA           NA           NA           NA          
## [10806] "2013-04-20" "2013-04-20" "2013-04-20" "2012-03-19" "2012-03-19"
## [10811] "2012-03-19" "2012-03-19" "2012-03-19" "2013-09-24" "2013-09-24"
## [10816] "2013-09-25" "2013-09-25" NA           NA           "2013-09-24"
## [10821] NA           NA           NA           "2013-09-25" NA          
## [10826] "2013-09-25" "2013-09-24" "2013-09-25" "2013-09-24" "2012-03-29"
## [10831] "2013-05-15" "2013-05-15" "2013-05-15" "2012-03-29" "2012-03-29"
## [10836] NA           NA           NA           "2011-07-15" "2011-07-15"
## [10841] "2011-07-19" "2011-07-19" "2011-07-15" NA           NA          
## [10846] "2011-07-15" "2011-07-19" NA           "2011-07-19" "2011-07-19"
## [10851] NA           NA           NA           NA           NA          
## [10856] "2011-07-15" "2011-07-15" "2011-07-19" NA           NA          
## [10861] NA           NA           NA           "2013-08-20" "2013-09-25"
## [10866] "2013-08-20" "2013-09-25" "2013-09-25" "2013-09-25" "2013-08-20"
## [10871] "2012-11-23" "2012-07-21" "2012-11-23" "2012-07-21" "2012-07-21"
## [10876] "2011-09-22" "2012-07-17" "2011-09-22" "2012-07-17" NA          
## [10881] "2011-09-22" NA           "2012-07-17" "2011-09-22" NA          
## [10886] "2012-07-17" NA           "2012-07-17" NA           "2011-09-22"
## [10891] NA           "2012-07-17" NA           NA           NA          
## [10896] NA           NA           NA           NA           NA          
## [10901] NA           NA           NA           NA           NA          
## [10906] NA           NA           NA           "2011-05-30" "2011-05-30"
## [10911] NA           "2011-05-30" NA           "2012-12-13" "2012-12-13"
## [10916] NA           NA           NA           NA           "2011-10-23"
## [10921] "2011-10-23" "2011-10-23" NA           NA           NA          
## [10926] NA           NA           NA           NA           "2012-04-23"
## [10931] "2012-04-23" NA           NA           NA           "2011-11-24"
## [10936] NA           "2011-11-24" NA           "2013-02-15" "2014-01-26"
## [10941] NA           NA           "2014-01-26" "2014-01-26" NA          
## [10946] NA           "2013-02-15" "2013-02-15" NA           NA          
## [10951] "2012-08-27" "2013-01-29" "2012-08-27" "2013-01-29" "2013-01-29"
## [10956] "2012-08-27" NA           NA           NA           "2011-08-28"
## [10961] NA           NA           "2011-08-28" NA           "2013-01-16"
## [10966] NA           NA           "2013-01-16" "2013-01-16" NA          
## [10971] NA           NA           NA           "2013-01-16" NA          
## [10976] NA           NA           NA           NA           "2014-02-14"
## [10981] "2014-02-14" "2013-09-15" NA           "2013-09-15" NA          
## [10986] NA           NA           "2013-09-15" NA           NA          
## [10991] NA           NA           NA           NA           NA          
## [10996] NA           NA           NA           NA           NA          
## [11001] "2013-08-23" "2011-12-27" "2013-08-23" "2011-12-27" "2013-08-23"
## [11006] "2013-08-23" "2013-08-23" "2012-02-24" NA           NA          
## [11011] "2012-02-24" "2012-08-30" NA           "2012-08-23" NA          
## [11016] "2012-02-24" "2012-08-30" "2012-08-30" "2012-08-23" "2013-03-29"
## [11021] "2012-02-24" "2012-02-24" "2012-08-23" "2013-03-29" "2013-03-29"
## [11026] NA           NA           NA           NA           NA          
## [11031] "2013-06-28" "2013-06-28" NA           NA           "2013-06-28"
## [11036] NA           NA           "2014-02-15" "2014-02-15" "2014-02-15"
## [11041] "2012-06-13" "2013-07-18" "2012-06-13" "2011-09-18" NA          
## [11046] NA           "2012-06-13" "2011-09-18" "2013-07-18" NA          
## [11051] "2011-09-18" "2012-04-20" "2011-10-26" "2012-04-20" "2011-10-26"
## [11056] "2011-10-26" "2012-04-20" "2012-04-20" "2012-05-27" "2012-05-27"
## [11061] "2012-05-27" "2012-05-27" NA           NA           NA          
## [11066] "2012-03-14" "2013-11-16" NA           "2013-11-16" "2012-07-13"
## [11071] "2012-03-14" "2012-08-15" "2012-03-14" "2012-07-13" "2013-11-16"
## [11076] NA           "2012-07-13" "2012-02-19" "2012-02-19" "2012-03-14"
## [11081] "2012-08-15" "2013-11-16" "2012-07-19" NA           NA          
## [11086] "2012-07-19" "2012-02-19" "2012-07-19" NA           NA          
## [11091] "2013-03-21" "2013-03-21" "2013-06-15" "2013-06-15" NA          
## [11096] NA           "2013-06-15" "2013-06-15" "2013-06-15" "2012-08-23"
## [11101] "2012-08-14" "2013-04-30" "2012-03-26" "2012-08-23" "2012-08-14"
## [11106] "2013-04-30" "2012-03-26" "2012-03-26" "2013-04-29" "2013-04-29"
## [11111] NA           "2011-08-13" "2012-05-24" NA           NA          
## [11116] NA           "2012-05-24" NA           "2011-08-13" "2012-05-24"
## [11121] "2012-05-24" "2011-08-13" NA           "2011-07-26" "2012-05-15"
## [11126] "2011-07-26" "2012-05-15" NA           "2012-05-15" NA          
## [11131] NA           NA           "2013-06-15" "2013-06-15" "2012-01-19"
## [11136] "2012-01-19" NA           "2012-01-19" "2012-01-19" NA          
## [11141] NA           "2011-01-25" NA           "2013-11-19" "2011-01-25"
## [11146] NA           NA           "2011-01-25" "2011-01-25" "2013-11-19"
## [11151] "2013-11-19" "2011-01-25" NA           NA           NA          
## [11156] NA           NA           NA           "2013-12-26" "2013-02-24"
## [11161] "2013-12-26" "2013-12-26" "2013-12-26" "2013-02-24" "2012-04-23"
## [11166] "2012-04-23" "2012-04-23" "2011-06-13" "2011-06-13" "2011-06-13"
## [11171] "2012-02-15" "2012-02-15" NA           NA           "2012-02-15"
## [11176] NA           NA           "2011-11-21" NA           NA          
## [11181] NA           NA           "2011-11-21" "2013-08-30" "2013-08-30"
## [11186] NA           "2013-08-30" NA           NA           NA          
## [11191] "2014-01-21" NA           NA           "2014-01-21" NA          
## [11196] "2014-01-21" "2012-11-16" NA           "2012-11-16" NA          
## [11201] "2012-11-16" "2012-11-16" NA           "2012-11-16" "2012-11-17"
## [11206] NA           NA           "2012-03-13" "2012-11-17" "2012-05-30"
## [11211] "2012-11-17" "2012-03-13" NA           NA           NA          
## [11216] "2012-05-30" NA           NA           "2012-03-13" NA          
## [11221] "2012-03-13" NA           "2012-05-30" "2012-05-30" NA          
## [11226] "2012-03-13" NA           NA           NA           NA          
## [11231] NA           NA           "2012-03-25" NA           NA          
## [11236] "2012-03-25" NA           "2012-03-25" NA           NA          
## [11241] "2013-09-26" "2013-02-25" NA           "2013-09-26" "2013-09-26"
## [11246] "2013-02-25" "2013-09-26" NA           "2013-09-26" NA          
## [11251] NA           NA           "2013-02-25" "2013-09-26" NA          
## [11256] "2013-12-16" "2013-12-16" NA           "2011-02-15" NA          
## [11261] "2011-02-15" NA           NA           NA           NA          
## [11266] NA           NA           NA           NA           "2012-04-29"
## [11271] NA           "2012-04-29" "2012-04-29" NA           "2012-04-29"
## [11276] NA           "2011-06-25" NA           "2011-06-25" "2012-11-24"
## [11281] NA           NA           NA           NA           "2011-07-20"
## [11286] NA           "2011-07-20" NA           NA           "2012-11-24"
## [11291] "2013-02-16" "2013-02-16" NA           NA           "2011-04-17"
## [11296] "2011-04-17" "2011-04-17" "2011-04-17" "2011-04-17" "2012-08-18"
## [11301] NA           NA           "2012-08-13" NA           NA          
## [11306] NA           "2012-08-13" "2012-08-18" NA           NA          
## [11311] NA           NA           NA           NA           NA          
## [11316] NA           "2013-10-17" "2013-10-17" "2013-10-17" "2013-10-17"
## [11321] "2013-10-17" NA           NA           "2013-07-24" "2013-07-24"
## [11326] "2013-07-24" "2013-07-24" "2013-07-24" "2013-01-26" "2013-01-26"
## [11331] "2013-01-26" "2012-12-30" "2012-12-30" "2013-05-19" "2012-12-30"
## [11336] "2012-12-30" "2013-05-19" "2011-11-21" "2014-01-20" "2011-11-21"
## [11341] "2014-01-20" "2011-10-22" "2014-01-20" "2011-11-21" "2014-01-20"
## [11346] "2011-10-22" "2014-01-20" "2014-01-20" "2011-11-21" "2012-12-18"
## [11351] "2012-12-18" "2012-12-18" "2012-12-18" "2012-12-18" "2013-05-27"
## [11356] "2012-11-30" "2012-11-30" "2012-11-30" "2012-08-17" NA          
## [11361] "2012-08-17" "2012-08-17" NA           "2013-05-27" NA          
## [11366] NA           NA           "2013-05-22" "2013-05-22" "2013-05-22"
## [11371] "2013-09-14" "2013-09-14" "2013-05-22" "2013-05-22" "2013-09-14"
## [11376] NA           NA           NA           NA           NA          
## [11381] NA           NA           NA           NA           NA          
## [11386] NA           NA           NA           NA           NA          
## [11391] NA           NA           NA           NA           NA          
## [11396] NA           NA           "2013-01-15" "2013-01-15" NA          
## [11401] NA           "2013-01-15" NA           NA           NA          
## [11406] "2013-07-15" "2013-07-15" NA           "2013-01-23" "2013-01-23"
## [11411] NA           "2012-06-28" NA           NA           "2012-06-29"
## [11416] "2012-06-29" "2012-06-29" "2012-06-25" "2012-06-25" "2012-06-28"
## [11421] "2012-06-28" NA           "2012-06-25" NA           "2013-01-23"
## [11426] NA           "2012-12-21" "2012-12-21" NA           "2012-02-15"
## [11431] "2012-02-15" NA           "2013-11-21" NA           "2013-11-21"
## [11436] "2013-11-27" "2012-11-14" NA           "2013-11-21" "2013-11-21"
## [11441] "2012-04-25" "2013-11-30" "2013-11-30" "2012-11-14" "2013-11-27"
## [11446] NA           "2013-11-30" "2013-11-30" NA           "2013-11-21"
## [11451] NA           "2013-11-27" "2012-04-25" "2013-11-27" NA          
## [11456] "2013-11-27" "2012-04-25" "2013-11-30" "2011-04-18" "2011-09-29"
## [11461] "2011-09-29" "2011-09-29" "2011-09-29" "2011-04-18" "2011-04-18"
## [11466] "2011-04-25" "2011-04-25" "2011-04-25" NA           NA          
## [11471] NA           "2013-03-30" "2013-03-30" "2013-03-30" "2013-03-30"
## [11476] "2013-03-30" "2013-03-30" "2012-08-26" "2012-08-26" "2012-08-26"
## [11481] NA           NA           NA           "2013-04-28" "2013-04-28"
## [11486] "2013-08-28" "2013-04-28" "2013-04-28" "2013-08-28" "2013-04-28"
## [11491] NA           "2013-10-25" NA           NA           "2013-10-25"
## [11496] "2013-10-25" NA           "2013-10-25" NA           "2013-10-25"
## [11501] "2013-10-25" "2011-09-27" "2011-09-27" "2012-04-16" "2012-04-16"
## [11506] "2011-09-27" "2012-04-16" "2013-03-14" NA           NA          
## [11511] NA           "2013-03-14" NA           NA           NA          
## [11516] NA           "2013-03-14" NA           NA           NA          
## [11521] "2012-06-19" NA           "2012-06-19" NA           NA          
## [11526] NA           "2011-10-29" NA           "2011-10-29" "2011-08-20"
## [11531] "2011-02-28" "2011-02-28" "2012-08-25" "2011-08-20" "2011-02-28"
## [11536] "2011-02-28" "2011-08-20" "2011-08-20" "2012-08-25" "2011-02-28"
## [11541] "2011-08-20" "2011-06-27" "2013-06-21" NA           "2012-10-24"
## [11546] "2013-06-21" "2012-10-24" "2011-01-28" "2012-10-24" "2011-01-28"
## [11551] "2013-06-21" "2013-06-21" "2011-01-28" "2011-06-27" "2012-10-24"
## [11556] "2011-01-28" "2012-10-24" NA           "2012-10-24" NA          
## [11561] "2013-06-21" "2011-01-28" NA           NA           NA          
## [11566] "2011-06-27" "2011-01-28" NA           NA           NA          
## [11571] NA           NA           "2011-10-16" "2013-07-13" "2013-07-13"
## [11576] NA           "2011-10-16" "2013-07-13" NA           "2011-10-16"
## [11581] NA           NA           "2013-07-13" "2011-10-16" "2011-10-16"
## [11586] NA           "2013-07-13" NA           NA           "2012-08-31"
## [11591] NA           "2012-08-31" "2012-08-31" NA           "2012-08-31"
## [11596] "2012-08-31" NA           NA           NA           NA          
## [11601] NA           NA           NA           NA           NA          
## [11606] "2011-12-15" "2011-12-15" "2011-12-15" "2012-05-28" "2013-01-14"
## [11611] "2013-01-14" "2012-05-28" NA           "2013-01-14" "2012-05-28"
## [11616] NA           NA           "2013-01-14" "2013-01-14" NA          
## [11621] "2012-10-17" "2011-12-16" "2011-12-16" "2012-10-17" "2012-10-17"
## [11626] "2012-10-17" "2011-12-16" "2011-12-16" "2011-08-18" "2011-12-16"
## [11631] "2011-08-18" NA           "2012-03-28" "2012-03-28" NA          
## [11636] NA           NA           "2013-05-15" "2013-05-15" "2013-05-15"
## [11641] "2013-05-15" "2013-05-15" "2013-06-30" "2013-06-30" NA          
## [11646] NA           "2012-08-14" "2012-08-14" "2012-08-14" "2012-08-14"
## [11651] "2012-01-22" "2012-01-22" NA           "2011-11-27" NA          
## [11656] NA           NA           NA           NA           "2011-11-23"
## [11661] NA           "2011-11-23" NA           "2011-11-27" "2011-11-23"
## [11666] "2011-11-27" NA           NA           NA           "2011-12-26"
## [11671] "2011-12-26" NA           NA           NA           "2011-12-26"
## [11676] NA           "2011-04-18" "2013-02-20" "2013-02-20" NA          
## [11681] "2013-02-20" NA           "2013-02-20" NA           NA          
## [11686] NA           NA           "2013-02-20" NA           "2011-04-18"
## [11691] NA           NA           NA           NA           "2013-03-16"
## [11696] "2013-03-16" NA           "2013-03-16" NA           NA          
## [11701] NA           "2012-04-24" "2012-04-18" "2012-04-24" "2012-04-18"
## [11706] "2012-04-18" "2012-04-24" "2013-12-17" "2011-10-15" "2013-12-17"
## [11711] NA           NA           "2011-10-15" "2013-12-17" "2013-12-17"
## [11716] "2012-11-22" "2012-11-22" "2012-11-22" NA           NA          
## [11721] NA           NA           NA           NA           "2012-11-22"
## [11726] "2012-11-22" "2012-11-22" NA           NA           NA          
## [11731] NA           NA           NA           NA           NA          
## [11736] "2011-02-25" "2011-02-25" "2011-12-28" "2011-02-25" "2012-04-13"
## [11741] "2011-12-28" "2012-04-13" "2011-12-28" "2012-04-13" "2014-01-27"
## [11746] "2014-01-27" "2014-01-27" "2013-09-19" "2013-09-19" "2013-03-30"
## [11751] "2012-03-20" "2013-03-30" "2012-03-20" "2012-03-20" "2013-09-19"
## [11756] "2012-03-20" "2012-03-20" "2012-03-20" NA           NA          
## [11761] NA           "2013-02-17" "2013-02-17" "2013-01-26" "2013-01-26"
## [11766] "2011-08-24" "2012-12-17" "2013-01-26" "2013-01-26" "2013-01-26"
## [11771] "2012-12-17" "2012-12-17" "2011-04-24" "2011-08-24" "2011-04-24"
## [11776] "2011-08-24" "2012-12-17" "2012-12-17" NA           NA          
## [11781] "2012-03-26" "2012-03-26" NA           NA           NA          
## [11786] NA           NA           NA           NA           NA          
## [11791] "2012-04-18" NA           "2012-04-18" "2012-04-18" NA          
## [11796] NA           "2012-04-18" "2012-04-18" "2012-03-26" "2012-03-26"
## [11801] NA           "2012-03-26" NA           NA           NA          
## [11806] "2011-10-16" NA           "2011-10-16" NA           NA          
## [11811] NA           "2011-10-16" "2011-10-16" "2012-12-15" "2011-10-16"
## [11816] NA           "2013-12-30" NA           NA           "2012-12-15"
## [11821] "2012-12-15" NA           "2011-10-16" "2013-12-30" NA          
## [11826] "2013-11-16" "2013-11-16" NA           NA           "2012-07-29"
## [11831] "2013-11-21" NA           "2011-08-25" "2012-07-29" "2012-07-29"
## [11836] NA           NA           "2013-11-21" "2011-08-25" NA          
## [11841] NA           NA           NA           NA           NA          
## [11846] "2011-06-13" NA           "2011-06-13" "2011-06-13" "2013-02-17"
## [11851] "2013-02-15" "2013-02-15" "2013-02-17" "2013-02-15" "2013-02-15"
## [11856] "2013-02-17" NA           "2011-08-15" "2012-11-20" NA          
## [11861] "2011-08-15" "2012-11-20" NA           "2012-11-20" NA          
## [11866] NA           NA           NA           "2013-09-17" NA          
## [11871] NA           NA           NA           NA           NA          
## [11876] "2013-09-17" NA           NA           NA           NA          
## [11881] NA           NA           NA           NA           NA          
## [11886] NA           NA           NA           "2011-06-19" "2011-06-19"
## [11891] "2011-06-19" "2011-06-19" "2011-06-19" "2012-05-13" "2012-05-13"
## [11896] "2012-05-13" "2012-05-13" "2012-05-13" "2012-05-13" "2013-07-16"
## [11901] NA           "2013-07-16" "2013-07-16" NA           NA          
## [11906] "2013-07-16" "2013-07-16" NA           NA           NA          
## [11911] "2014-02-17" "2014-02-17" NA           NA           NA          
## [11916] NA           NA           NA           NA           NA          
## [11921] "2012-11-29" "2012-11-29" NA           "2012-07-19" "2012-07-19"
## [11926] "2013-01-31" "2013-01-31" NA           "2013-07-23" "2012-07-19"
## [11931] "2013-07-23" "2013-07-23" "2013-03-18" "2013-03-18" "2013-03-18"
## [11936] "2013-03-18" "2013-03-18" NA           NA           NA          
## [11941] "2011-03-16" "2011-03-21" "2011-10-23" "2011-03-16" "2011-10-23"
## [11946] "2011-10-23" "2011-03-21" NA           NA           NA          
## [11951] NA           NA           NA           NA           NA          
## [11956] NA           NA           NA           NA           NA          
## [11961] NA           NA           NA           "2013-10-15" "2012-07-15"
## [11966] "2012-07-15" "2012-07-15" "2012-07-15" "2013-10-15" "2012-07-15"
## [11971] "2013-10-15" "2012-04-17" "2012-07-26" "2012-04-17" "2012-04-17"
## [11976] "2012-04-17" "2012-07-26" "2011-03-15" "2012-04-17" "2012-07-26"
## [11981] "2011-03-15" "2012-07-26" "2012-04-17" "2012-07-26" "2011-08-22"
## [11986] "2011-08-22" "2012-04-14" "2012-04-18" "2012-04-18" "2012-04-14"
## [11991] "2012-04-14" "2012-04-14" "2012-04-18" "2012-04-14" "2012-04-18"
## [11996] "2012-04-18" "2012-04-14" "2013-06-15" "2013-06-14" "2013-06-14"
## [12001] "2013-06-15" "2013-11-30" "2013-06-14" "2013-06-14" "2013-06-15"
## [12006] "2013-11-30" "2013-11-30" "2013-06-15" NA           "2013-03-23"
## [12011] NA           "2013-03-23" NA           "2013-03-23" NA          
## [12016] NA           "2013-03-23" "2013-03-23" "2011-07-20" "2011-07-20"
## [12021] "2011-07-20" "2011-07-20" "2012-04-23" NA           "2012-04-23"
## [12026] NA           NA           "2013-07-30" "2013-07-30" "2012-04-23"
## [12031] NA           "2013-07-30" NA           NA           NA          
## [12036] NA           NA           NA           NA           NA          
## [12041] NA           NA           NA           NA           NA          
## [12046] NA           NA           NA           "2012-04-15" "2012-04-15"
## [12051] "2012-04-15" NA           NA           NA           "2012-04-15"
## [12056] NA           "2012-04-15" "2013-07-27" NA           "2013-07-27"
## [12061] "2013-07-27" "2013-01-21" "2013-01-21" NA           "2013-03-15"
## [12066] NA           "2012-06-25" "2013-03-15" NA           "2013-03-15"
## [12071] "2013-02-15" "2013-03-15" "2013-02-15" "2013-02-15" NA          
## [12076] "2012-06-25" "2013-03-15" "2012-10-19" "2012-10-19" "2012-10-19"
## [12081] "2012-10-19" "2012-10-19" "2012-05-20" "2012-05-20" "2012-05-20"
## [12086] NA           NA           NA           NA           NA          
## [12091] NA           "2013-04-30" "2013-04-30" "2013-04-30" "2013-04-30"
## [12096] NA           "2013-04-30" NA           NA           NA          
## [12101] NA           NA           NA           NA           NA          
## [12106] "2011-08-27" NA           "2011-08-27" "2011-08-27" NA          
## [12111] NA           NA           NA           NA           NA          
## [12116] NA           NA           NA           NA           NA          
## [12121] NA           NA           NA           NA           NA          
## [12126] "2013-02-15" "2013-02-15" NA           "2013-02-15" NA          
## [12131] "2013-02-15" "2013-02-15" NA           NA           NA          
## [12136] NA           NA           NA           NA           NA          
## [12141] NA           NA           "2012-06-24" "2012-06-24" "2012-06-24"
## [12146] NA           NA           "2011-02-22" "2011-02-22" "2011-02-22"
## [12151] NA           "2011-02-22" NA           NA           "2011-02-22"
## [12156] NA           NA           NA           NA           NA          
## [12161] NA           "2013-08-21" "2013-08-21" "2013-08-21" NA          
## [12166] NA           NA           NA           NA           NA          
## [12171] "2012-10-29" "2012-10-29" "2012-10-29" NA           NA          
## [12176] "2012-10-29" NA           NA           NA           NA          
## [12181] "2012-10-29" NA           NA           NA           "2012-11-17"
## [12186] "2012-11-17" "2012-11-17" "2013-01-19" "2013-01-19" "2013-01-19"
## [12191] "2013-03-20" "2013-03-20" NA           "2011-03-21" "2011-03-21"
## [12196] "2013-03-20" "2011-03-21" NA           NA           "2011-03-21"
## [12201] "2013-03-20" "2011-03-21" "2013-03-20" "2013-08-30" "2013-08-30"
## [12206] "2013-08-30" "2013-08-30" "2013-08-30" "2013-05-20" "2013-03-18"
## [12211] "2013-03-18" "2013-05-20" "2013-03-18" "2013-05-20" NA          
## [12216] NA           NA           NA           NA           NA          
## [12221] NA           NA           NA           NA           NA          
## [12226] NA           "2011-07-21" "2011-07-21" "2013-04-18" "2011-07-21"
## [12231] "2011-07-21" "2011-07-21" "2013-04-18" "2011-07-21" NA          
## [12236] NA           "2011-10-21" NA           "2011-10-21" "2011-10-21"
## [12241] "2011-10-21" "2011-10-21" "2011-06-28" NA           "2011-06-28"
## [12246] "2011-05-27" "2011-05-27" NA           NA           "2012-06-24"
## [12251] "2012-06-24" "2012-01-21" "2012-01-21" "2012-06-24" "2012-06-24"
## [12256] "2011-01-31" "2012-04-19" NA           NA           NA          
## [12261] "2011-01-31" "2012-04-19" NA           "2013-12-26" NA          
## [12266] "2013-12-26" NA           "2013-12-26" "2013-12-26" "2012-12-18"
## [12271] "2013-12-26" NA           "2012-12-18" "2012-12-18" "2011-08-18"
## [12276] "2012-05-23" NA           "2013-10-30" "2013-10-30" "2013-10-30"
## [12281] "2012-05-23" "2012-05-23" "2013-10-30" NA           "2013-10-30"
## [12286] NA           "2012-05-23" "2012-05-23" NA           "2011-08-18"
## [12291] NA           NA           NA           "2012-05-23" NA          
## [12296] "2013-06-18" "2013-06-18" NA           "2013-06-18" NA          
## [12301] NA           "2013-06-18" "2013-06-18" "2013-06-18" NA          
## [12306] NA           NA           NA           NA           NA          
## [12311] "2012-06-26" "2012-05-17" "2012-05-17" "2012-06-26" "2012-11-24"
## [12316] "2012-11-24" "2012-11-24" "2012-05-17" "2012-11-24" "2012-11-24"
## [12321] "2012-11-24" "2012-05-18" "2012-05-25" "2012-05-25" "2012-05-18"
## [12326] "2012-07-23" "2012-07-23" "2013-02-14" NA           NA          
## [12331] NA           NA           "2013-02-14" NA           NA          
## [12336] "2011-07-13" "2011-07-13" NA           NA           NA          
## [12341] "2014-02-19" "2014-02-19" "2012-06-15" NA           NA          
## [12346] "2013-01-23" "2012-09-24" "2012-09-24" "2012-09-24" "2012-06-15"
## [12351] "2012-09-24" "2012-09-24" NA           "2013-01-23" "2012-09-24"
## [12356] NA           NA           NA           NA           NA          
## [12361] "2013-10-16" NA           NA           NA           "2013-10-16"
## [12366] "2013-10-16" "2011-04-23" "2013-10-18" "2011-04-23" "2011-03-16"
## [12371] "2011-04-23" "2013-10-18" "2011-03-16" "2011-03-16" "2011-07-15"
## [12376] "2011-07-15" NA           NA           NA           NA          
## [12381] NA           NA           NA           NA           "2012-05-24"
## [12386] "2012-10-30" "2012-05-24" "2012-05-24" "2012-05-24" "2012-10-30"
## [12391] "2012-05-24" NA           NA           "2012-04-30" "2012-04-30"
## [12396] NA           NA           NA           NA           NA          
## [12401] "2012-07-29" NA           "2012-07-29" NA           NA          
## [12406] NA           NA           NA           "2012-04-21" NA          
## [12411] NA           "2012-04-21" "2012-04-21" NA           "2013-12-28"
## [12416] "2013-12-28" "2013-12-28" "2013-12-28" NA           NA          
## [12421] NA           "2012-01-15" "2012-12-25" "2012-12-25" "2012-12-25"
## [12426] "2012-01-15" "2012-12-25" "2012-12-25" "2011-12-27" "2011-12-27"
## [12431] "2013-12-26" "2011-11-25" "2011-11-25" "2011-11-25" "2011-11-25"
## [12436] "2013-12-26" "2011-11-25" "2011-11-25" "2011-04-27" "2011-04-27"
## [12441] "2011-04-27" "2011-04-27" "2011-04-27" NA           NA          
## [12446] NA           NA           NA           NA           "2012-11-30"
## [12451] "2011-06-14" "2011-06-14" "2012-11-30" "2013-03-28" NA          
## [12456] NA           "2011-06-14" "2011-06-14" NA           "2011-06-14"
## [12461] "2012-11-30" "2012-11-30" "2013-03-28" "2012-11-30" "2011-06-14"
## [12466] "2012-11-30" "2013-01-21" NA           "2013-09-22" NA          
## [12471] "2013-01-21" "2013-09-22" "2013-01-21" "2013-01-21" "2013-01-21"
## [12476] NA           NA           NA           NA           NA          
## [12481] NA           NA           NA           NA           NA          
## [12486] NA           NA           NA           NA           "2011-06-13"
## [12491] "2011-05-29" "2011-06-13" "2011-06-13" NA           NA          
## [12496] "2011-06-13" "2011-05-29" NA           NA           NA          
## [12501] "2011-06-13" "2014-02-14" "2014-02-14" "2013-05-23" "2014-02-14"
## [12506] "2013-05-23" "2012-04-19" "2012-04-19" NA           NA          
## [12511] NA           NA           NA           NA           NA          
## [12516] NA           NA           NA           NA           NA          
## [12521] NA           NA           "2011-09-19" NA           NA          
## [12526] NA           "2011-09-19" "2012-07-19" "2012-07-19" "2012-07-19"
## [12531] "2012-07-19" "2012-07-19" NA           NA           NA          
## [12536] "2011-04-22" "2011-04-22" "2011-04-22" NA           NA          
## [12541] NA           NA           "2012-01-17" NA           NA          
## [12546] NA           "2011-12-28" "2012-01-17" "2012-01-17" "2011-12-28"
## [12551] "2012-01-17" "2012-12-15" "2012-12-15" "2012-01-17" "2011-12-28"
## [12556] "2011-12-28" NA           NA           NA           NA          
## [12561] NA           "2013-07-19" "2013-07-19" "2013-07-19" "2013-07-19"
## [12566] "2013-07-19" NA           NA           NA           NA          
## [12571] NA           NA           NA           NA           NA          
## [12576] NA           NA           NA           NA           NA          
## [12581] NA           NA           NA           NA           NA          
## [12586] NA           NA           NA           NA           NA          
## [12591] "2013-09-29" "2013-09-29" "2011-04-29" "2011-04-29" "2011-09-19"
## [12596] "2012-10-19" "2011-09-19" "2011-04-29" "2013-10-28" "2012-10-19"
## [12601] "2012-10-19" "2012-10-19" "2012-10-19" "2012-10-19" "2013-10-28"
## [12606] "2011-09-19" NA           NA           NA           NA          
## [12611] "2011-09-16" "2011-09-16" "2012-12-16" NA           NA          
## [12616] "2011-09-16" "2012-12-16" NA           "2013-10-23" NA          
## [12621] "2013-10-23" "2013-10-23" NA           "2013-10-23" NA          
## [12626] NA           "2013-10-23" NA           "2013-06-21" NA          
## [12631] "2013-06-21" "2013-06-21" "2013-06-21" NA           NA          
## [12636] NA           "2013-06-21" "2013-09-25" NA           "2013-09-25"
## [12641] NA           NA           NA           NA           NA          
## [12646] NA           NA           NA           NA           NA          
## [12651] NA           NA           NA           "2013-04-28" "2013-04-28"
## [12656] NA           "2013-04-28" NA           "2012-10-17" "2012-10-17"
## [12661] NA           "2012-10-17" "2011-09-30" NA           NA          
## [12666] "2011-09-30" "2011-09-30" NA           "2011-09-30" "2011-09-30"
## [12671] NA           "2012-05-20" NA           "2014-01-24" "2012-05-20"
## [12676] "2011-07-30" "2012-05-20" "2012-05-20" NA           NA          
## [12681] "2014-01-24" "2014-01-24" NA           "2014-01-24" NA          
## [12686] NA           "2014-01-24" "2011-07-30" "2011-07-30" NA          
## [12691] "2013-03-15" "2012-02-22" "2013-03-15" "2013-03-15" "2012-02-22"
## [12696] NA           "2011-09-24" NA           "2011-09-24" "2011-09-24"
## [12701] "2012-12-16" "2011-09-24" "2012-12-16" "2012-12-16" "2012-12-16"
## [12706] "2011-09-24" "2013-07-21" "2013-07-21" NA           NA          
## [12711] "2012-12-30" "2012-09-13" NA           "2012-09-13" NA          
## [12716] NA           "2012-12-30" "2012-09-13" NA           NA          
## [12721] NA           NA           NA           NA           "2011-07-13"
## [12726] "2011-07-13" NA           NA           NA           NA          
## [12731] NA           NA           NA           NA           "2012-08-28"
## [12736] "2013-07-21" "2012-08-16" "2012-08-28" "2013-07-15" "2013-07-21"
## [12741] "2012-08-16" "2012-08-28" "2012-08-16" "2013-07-15" "2012-08-16"
## [12746] "2012-08-16" "2012-08-28" "2013-07-15" "2013-07-21" "2012-08-28"
## [12751] NA           NA           NA           NA           "2011-05-19"
## [12756] NA           "2011-05-19" "2011-10-20" "2011-05-19" "2011-10-20"
## [12761] "2013-08-14" "2013-03-31" "2013-03-31" "2013-08-14" "2013-08-14"
## [12766] "2013-08-14" "2013-08-14" "2013-03-31" "2013-03-31" NA          
## [12771] NA           NA           NA           "2011-05-15" "2011-05-15"
## [12776] NA           "2012-07-13" "2013-04-28" NA           NA          
## [12781] "2013-04-28" NA           "2013-04-28" "2013-04-28" "2013-04-28"
## [12786] "2012-05-21" "2012-07-13" NA           NA           "2012-07-21"
## [12791] "2012-07-21" "2012-05-21" "2012-07-21" "2012-07-13" "2013-12-15"
## [12796] "2012-05-18" "2012-05-18" "2012-05-18" "2012-01-24" "2012-01-24"
## [12801] "2012-01-24" "2013-12-15" "2012-01-24" "2012-01-24" "2012-05-18"
## [12806] "2012-05-18" "2012-05-18" "2012-07-26" "2012-07-21" "2012-07-26"
## [12811] "2012-07-21" "2012-07-21" "2012-07-21" "2012-07-26" "2012-07-26"
## [12816] "2011-02-16" "2011-02-16" NA           NA           "2011-02-16"
## [12821] NA           NA           NA           NA           "2011-08-17"
## [12826] NA           "2013-05-30" "2013-01-23" "2013-01-23" "2013-01-23"
## [12831] "2013-01-23" "2013-01-23" "2013-05-30" "2013-01-23" NA          
## [12836] "2011-08-17" NA           "2012-07-17" "2011-12-19" "2011-12-19"
## [12841] "2012-07-17" "2011-12-19" "2012-07-17" NA           NA          
## [12846] NA           NA           "2013-03-27" "2013-03-27" NA          
## [12851] "2013-03-27" "2012-09-28" "2013-03-27" NA           NA          
## [12856] "2013-03-27" "2012-09-28" "2011-03-14" "2012-11-26" NA          
## [12861] "2012-11-26" "2012-11-26" NA           NA           "2012-11-26"
## [12866] "2011-03-14" NA           "2012-11-26" NA           "2012-11-26"
## [12871] NA           NA           NA           NA           NA          
## [12876] NA           "2013-05-14" NA           NA           "2013-05-14"
## [12881] NA           "2013-05-14" NA           "2012-12-16" "2012-12-16"
## [12886] NA           NA           NA           NA           NA          
## [12891] NA           NA           NA           NA           NA          
## [12896] "2013-09-28" "2013-09-28" "2013-09-28" NA           NA          
## [12901] "2013-09-28" "2013-01-15" "2013-01-15" "2012-12-13" "2012-12-16"
## [12906] "2012-12-13" NA           "2011-10-30" "2012-12-13" "2011-10-30"
## [12911] "2012-12-16" NA           "2012-12-13" "2012-12-16" "2011-10-30"
## [12916] NA           "2012-12-16" "2011-05-25" "2011-05-25" "2011-08-18"
## [12921] "2011-08-18" NA           NA           NA           "2011-05-25"
## [12926] "2012-08-21" "2012-08-21" NA           NA           NA          
## [12931] NA           NA           NA           NA           NA          
## [12936] NA           "2012-04-17" "2012-04-17" NA           "2012-04-17"
## [12941] NA           "2011-10-17" "2011-10-17" "2014-01-18" "2013-06-24"
## [12946] "2014-01-18" "2011-05-29" "2014-01-18" "2013-06-24" "2014-01-18"
## [12951] "2013-06-24" NA           "2011-02-27" "2011-02-27" "2011-05-29"
## [12956] NA           "2011-05-29" "2013-06-28" "2014-01-18" NA          
## [12961] "2013-06-24" "2013-06-20" "2014-01-18" "2013-06-20" "2013-06-20"
## [12966] "2013-06-28" "2013-06-28" "2013-06-28" "2013-06-24" NA          
## [12971] "2013-06-20" "2013-06-28" "2013-06-20" NA           "2011-06-23"
## [12976] "2011-06-23" "2011-06-23" NA           NA           "2011-11-25"
## [12981] NA           NA           NA           NA           "2011-11-25"
## [12986] "2011-11-25" NA           NA           "2012-09-26" "2013-01-31"
## [12991] "2011-05-13" "2012-09-26" "2012-09-26" "2013-01-31" "2013-10-20"
## [12996] "2013-10-20" "2012-09-26" "2013-01-31" "2011-05-13" "2012-09-26"
## [13001] NA           NA           NA           "2012-08-21" "2012-08-21"
## [13006] "2012-08-21" "2011-05-28" "2012-08-21" "2011-05-28" "2012-08-21"
## [13011] "2011-05-28" "2012-04-18" "2012-08-30" "2014-02-20" "2012-04-25"
## [13016] "2014-02-20" "2012-04-25" "2012-08-30" "2014-02-20" "2014-02-20"
## [13021] "2012-04-18" "2012-08-30" "2014-02-20" "2014-02-20" "2012-08-30"
## [13026] "2012-08-30" NA           NA           NA           "2011-09-19"
## [13031] "2012-01-28" "2012-05-31" NA           NA           "2012-05-31"
## [13036] "2011-09-23" NA           NA           "2011-09-23" "2011-09-19"
## [13041] "2012-05-31" NA           "2012-01-28" "2012-05-31" "2013-12-13"
## [13046] "2013-12-13" NA           "2012-02-29" "2013-12-13" NA          
## [13051] "2013-12-13" "2012-02-29" "2013-05-21" "2012-02-29" "2012-02-29"
## [13056] "2013-12-13" "2012-02-29" "2013-05-21" "2012-06-20" "2012-06-20"
## [13061] "2011-12-20" "2011-12-20" NA           NA           NA          
## [13066] "2011-05-26" "2011-09-23" "2011-05-26" NA           "2012-05-31"
## [13071] NA           NA           NA           "2011-05-26" "2012-05-31"
## [13076] NA           "2011-09-23" "2011-05-26" NA           NA          
## [13081] "2011-05-26" NA           NA           NA           NA          
## [13086] "2012-07-31" "2011-11-27" "2013-09-19" NA           NA          
## [13091] "2011-11-27" NA           "2013-09-19" "2013-09-19" "2011-11-27"
## [13096] "2012-07-31" "2011-11-27" "2011-11-27" NA           "2013-03-15"
## [13101] NA           "2013-03-15" NA           NA           NA          
## [13106] NA           "2013-03-15" NA           NA           NA          
## [13111] "2013-03-15" "2013-03-15" NA           NA           "2012-09-23"
## [13116] "2012-09-23" NA           "2013-09-30" NA           "2013-09-30"
## [13121] "2011-08-16" "2011-10-21" "2011-08-16" "2011-10-21" "2011-08-16"
## [13126] "2011-08-16" "2011-10-21" NA           NA           NA          
## [13131] NA           NA           NA           NA           "2011-08-16"
## [13136] NA           NA           NA           "2013-09-28" "2013-09-28"
## [13141] "2013-09-28" NA           NA           "2013-06-18" NA          
## [13146] "2011-11-22" "2012-07-25" NA           "2012-07-23" "2011-11-23"
## [13151] "2013-06-19" "2011-11-23" NA           "2012-07-23" "2011-11-22"
## [13156] NA           "2012-07-25" "2012-07-23" "2012-10-27" "2013-06-19"
## [13161] "2013-06-18" "2012-10-27" NA           NA           "2012-12-25"
## [13166] "2012-12-25" "2014-01-21" "2012-12-25" "2012-12-25" "2014-01-21"
## [13171] "2012-12-25" "2012-08-14" "2012-08-14" "2012-08-14" "2012-02-15"
## [13176] "2012-02-15" "2012-08-14" "2012-08-14" "2012-04-19" "2012-02-15"
## [13181] "2012-04-19" "2012-04-19" "2012-02-15" "2012-02-15" NA          
## [13186] NA           NA           NA           NA           NA          
## [13191] NA           NA           NA           NA           NA          
## [13196] NA           "2012-07-17" "2013-07-29" NA           NA          
## [13201] "2013-07-29" NA           NA           NA           "2012-01-17"
## [13206] NA           "2012-06-30" "2012-06-30" NA           NA          
## [13211] "2013-07-29" "2013-07-29" "2012-07-17" "2012-07-17" NA          
## [13216] "2012-07-17" NA           "2013-07-29" "2012-07-17" "2012-01-17"
## [13221] NA           NA           "2012-01-17" NA           NA          
## [13226] NA           NA           NA           NA           NA          
## [13231] NA           NA           NA           NA           NA          
## [13236] NA           NA           NA           NA           NA          
## [13241] NA           NA           NA           NA           NA          
## [13246] NA           "2013-08-22" "2013-08-22" NA           "2013-08-22"
## [13251] "2013-07-16" "2013-07-16" "2013-08-22" NA           "2013-07-16"
## [13256] "2013-08-22" "2013-08-22" "2013-07-16" NA           "2013-07-16"
## [13261] NA           "2011-03-15" NA           NA           NA          
## [13266] "2012-03-14" "2012-03-14" "2012-11-17" "2011-03-26" "2012-11-17"
## [13271] "2012-03-14" "2011-03-26" "2011-03-15" "2011-03-15" "2012-11-17"
## [13276] NA           "2012-11-17" "2012-11-17" NA           "2012-11-17"
## [13281] "2013-07-17" "2013-07-17" NA           NA           "2013-07-17"
## [13286] NA           "2012-04-30" "2012-04-30" "2013-07-17" NA          
## [13291] NA           "2012-04-30" "2011-11-16" "2011-11-16" "2013-07-17"
## [13296] NA           NA           "2013-12-24" "2013-12-24" "2013-12-24"
## [13301] "2013-12-24" NA           NA           NA           NA          
## [13306] NA           NA           NA           NA           "2013-12-24"
## [13311] NA           "2011-06-16" "2013-05-22" "2011-06-14" "2011-06-16"
## [13316] NA           "2011-06-14" NA           "2013-05-22" NA          
## [13321] "2013-05-22" "2011-02-23" "2011-02-23" "2013-07-19" "2011-02-23"
## [13326] "2013-07-19" "2011-03-14" "2011-03-14" "2011-03-14" NA          
## [13331] "2011-01-29" NA           "2011-01-29" NA           NA          
## [13336] "2012-10-21" "2011-04-29" "2012-10-21" "2011-04-29" "2013-02-27"
## [13341] NA           "2013-02-28" "2014-01-29" NA           "2014-01-29"
## [13346] "2013-02-27" NA           "2013-02-28" "2014-01-29" "2013-10-22"
## [13351] "2013-03-17" "2013-10-22" "2013-10-22" "2013-03-17" "2013-03-17"
## [13356] NA           "2011-05-14" "2011-05-14" NA           NA          
## [13361] NA           NA           "2011-09-25" "2011-09-25" "2011-09-25"
## [13366] NA           NA           NA           "2013-03-16" "2013-03-16"
## [13371] "2013-03-16" "2013-03-16" "2011-09-28" "2011-09-28" "2011-10-23"
## [13376] "2011-10-23" "2011-09-28" "2013-12-18" "2013-06-29" "2013-12-18"
## [13381] "2012-05-15" "2013-06-29" "2012-05-15" "2012-05-15" "2013-06-29"
## [13386] "2013-12-18" NA           "2013-06-29" NA           "2012-05-15"
## [13391] "2013-06-29" "2012-05-15" "2013-06-29" NA           NA          
## [13396] NA           "2013-10-19" NA           NA           "2013-10-19"
## [13401] NA           "2013-10-19" "2013-10-19" "2013-10-19" "2013-10-19"
## [13406] NA           NA           NA           NA           NA          
## [13411] NA           NA           NA           "2011-10-16" "2011-10-18"
## [13416] "2011-10-16" NA           "2011-10-18" "2011-10-16" "2011-10-18"
## [13421] "2011-10-18" NA           NA           "2011-10-16" "2011-10-18"
## [13426] "2011-10-16" NA           NA           NA           NA          
## [13431] NA           "2012-08-20" "2012-08-20" NA           "2011-05-27"
## [13436] "2011-05-27" NA           NA           NA           NA          
## [13441] "2011-02-13" "2011-02-13" "2011-02-13" NA           "2011-02-13"
## [13446] "2011-02-13" NA           NA           "2011-02-13" NA          
## [13451] NA           NA           NA           NA           "2011-08-26"
## [13456] "2011-10-14" "2011-08-26" "2011-10-14" NA           "2011-10-14"
## [13461] NA           "2011-08-26" "2011-10-14" NA           "2011-08-26"
## [13466] "2011-08-26" NA           "2011-10-14" NA           "2011-10-14"
## [13471] NA           NA           "2013-04-25" "2013-04-25" "2013-04-25"
## [13476] "2011-12-27" NA           "2011-04-18" NA           NA          
## [13481] "2013-02-16" "2013-02-16" NA           "2011-04-18" NA          
## [13486] NA           "2011-02-19" "2011-12-27" "2011-04-18" NA          
## [13491] "2011-02-19" "2011-12-27" "2011-02-19" "2011-12-27" "2011-02-19"
## [13496] "2011-12-27" "2013-02-16" "2011-02-19" NA           "2011-02-19"
## [13501] NA           NA           NA           NA           "2012-04-20"
## [13506] "2012-09-29" "2013-11-20" "2013-11-25" "2013-11-20" "2013-11-25"
## [13511] "2013-11-20" "2012-04-20" "2013-11-20" "2013-11-25" "2013-11-25"
## [13516] "2012-09-29" "2013-11-25" "2012-04-20" "2012-04-20" "2012-04-20"
## [13521] "2013-11-20" NA           "2013-10-28" "2012-08-21" NA          
## [13526] "2013-10-28" NA           NA           NA           NA          
## [13531] "2012-08-21" NA           NA           NA           "2012-08-21"
## [13536] NA           NA           "2012-08-21" "2012-08-21" NA          
## [13541] "2013-10-28" NA           "2012-08-21" NA           NA          
## [13546] NA           NA           NA           NA           NA          
## [13551] NA           "2012-06-28" "2011-03-31" NA           "2012-06-28"
## [13556] "2011-03-31" NA           "2011-03-31" "2012-06-28" NA          
## [13561] "2012-07-28" NA           NA           "2012-07-28" NA          
## [13566] "2012-06-29" "2012-06-29" "2012-06-29" NA           "2012-06-29"
## [13571] NA           "2012-06-29" NA           "2012-06-29" NA          
## [13576] "2011-07-22" "2011-07-22" "2011-07-22" "2013-06-15" "2013-06-15"
## [13581] "2013-10-31" "2013-10-31" "2013-06-15" "2012-08-27" "2012-08-27"
## [13586] "2012-08-27" "2012-08-27" "2011-06-18" "2011-06-18" NA          
## [13591] NA           NA           NA           "2011-04-15" "2011-04-15"
## [13596] "2011-04-15" "2011-04-15" "2011-04-15" "2011-12-26" NA          
## [13601] "2011-12-26" NA           NA           NA           "2011-10-21"
## [13606] "2011-10-21" "2011-10-21" NA           NA           "2011-07-19"
## [13611] "2011-07-19" "2011-07-19" NA           NA           NA          
## [13616] NA           NA           NA           NA           NA          
## [13621] "2011-02-26" "2011-02-26" "2011-02-26" "2012-02-20" NA          
## [13626] NA           NA           "2012-02-20" "2012-02-20" NA          
## [13631] "2012-02-20" NA           NA           NA           NA          
## [13636] "2012-02-20" NA           "2012-02-20" "2012-05-21" "2012-05-21"
## [13641] "2012-05-21" "2012-05-21" "2012-05-21" NA           "2012-05-14"
## [13646] NA           NA           NA           "2012-05-14" "2012-05-14"
## [13651] NA           "2012-05-14" "2012-05-14" "2012-05-14" NA          
## [13656] "2014-01-17" "2014-01-17" NA           NA           NA          
## [13661] "2012-04-25" "2012-04-25" "2012-04-25" NA           NA          
## [13666] NA           NA           NA           NA           "2011-09-17"
## [13671] "2011-09-17" NA           NA           NA           "2011-07-29"
## [13676] "2011-09-23" "2011-09-23" "2011-07-29" "2014-02-20" "2012-09-16"
## [13681] "2011-09-23" "2014-02-20" "2012-09-22" "2012-09-22" "2011-09-23"
## [13686] "2014-02-20" "2014-02-20" "2011-07-29" "2014-02-20" "2012-09-16"
## [13691] "2011-03-18" "2011-03-18" "2013-06-23" NA           "2013-06-23"
## [13696] "2013-06-23" "2013-08-14" NA           "2013-08-14" "2013-06-23"
## [13701] "2013-06-23" "2013-06-23" "2013-08-14" "2011-06-17" "2011-10-28"
## [13706] "2012-03-20" "2011-06-17" "2011-06-17" "2012-03-20" "2012-03-20"
## [13711] "2011-10-28" "2012-10-18" "2012-10-18" "2012-10-18" "2013-10-24"
## [13716] "2013-10-24" NA           "2013-10-24" NA           "2013-10-24"
## [13721] NA           "2011-12-28" "2011-03-24" "2011-12-28" "2011-12-28"
## [13726] "2011-03-24" "2011-12-28" "2011-03-24" "2011-12-28" "2011-03-24"
## [13731] NA           NA           "2013-12-30" "2011-11-23" NA          
## [13736] "2011-11-23" "2011-11-23" "2013-12-30" NA           "2011-11-23"
## [13741] NA           "2013-12-30" "2011-11-23" "2011-11-23" NA          
## [13746] "2012-10-16" "2011-07-17" NA           "2011-07-17" "2011-07-17"
## [13751] NA           "2011-07-17" NA           "2012-10-16" "2011-07-17"
## [13756] "2011-07-17" NA           "2012-08-21" "2012-08-21" NA          
## [13761] NA           "2012-08-21" NA           NA           NA          
## [13766] NA           NA           NA           "2012-08-21" "2012-08-21"
## [13771] NA           NA           NA           NA           NA          
## [13776] NA           NA           NA           "2013-07-22" "2013-07-24"
## [13781] "2013-07-24" "2013-07-22" "2013-07-24" NA           "2013-07-22"
## [13786] NA           "2013-08-25" "2013-08-25" "2013-08-25" "2013-07-24"
## [13791] NA           "2013-07-22" NA           NA           NA          
## [13796] NA           NA           NA           NA           NA          
## [13801] NA           NA           "2011-07-21" "2011-07-21" "2011-07-21"
## [13806] NA           NA           "2011-07-21" NA           "2013-04-30"
## [13811] "2013-04-30" NA           NA           NA           "2013-04-30"
## [13816] NA           NA           NA           "2011-09-14" "2013-08-14"
## [13821] NA           NA           NA           NA           "2011-09-14"
## [13826] "2013-08-14" NA           NA           NA           NA          
## [13831] NA           "2013-08-14" NA           "2013-08-14" NA          
## [13836] "2013-01-17" "2012-02-20" "2013-01-17" "2012-02-20" "2013-01-17"
## [13841] "2012-02-20" "2012-09-24" "2012-12-25" NA           NA          
## [13846] "2012-09-24" "2012-12-25" NA           "2012-12-25" NA          
## [13851] NA           NA           NA           NA           "2013-05-27"
## [13856] "2012-09-17" "2012-09-17" "2013-05-24" NA           "2013-05-27"
## [13861] NA           "2012-09-17" NA           NA           NA          
## [13866] NA           NA           "2012-09-17" NA           "2013-05-27"
## [13871] "2012-09-17" NA           NA           "2013-05-24" NA          
## [13876] NA           "2013-05-24" "2012-04-22" NA           "2014-01-20"
## [13881] "2012-04-22" NA           "2014-01-20" "2014-01-20" "2012-04-22"
## [13886] "2014-01-20" "2014-01-20" NA           "2014-01-20" NA          
## [13891] NA           NA           NA           NA           "2013-03-22"
## [13896] "2013-03-22" "2013-03-22" "2012-11-19" "2012-11-19" "2013-03-22"
## [13901] "2013-03-22" "2012-11-19" "2012-11-19" "2011-05-29" "2011-05-29"
## [13906] "2011-05-29" NA           "2011-05-29" NA           "2011-05-29"
## [13911] NA           NA           NA           NA           NA          
## [13916] NA           NA           NA           NA           NA          
## [13921] "2012-02-13" "2012-07-28" "2012-11-16" NA           "2012-07-28"
## [13926] NA           "2012-02-13" NA           NA           "2012-02-13"
## [13931] "2012-07-28" "2012-02-13" NA           NA           "2012-02-13"
## [13936] "2012-07-28" NA           "2012-07-28" "2012-11-16" NA          
## [13941] "2012-11-16" "2012-07-28" NA           NA           NA          
## [13946] "2012-02-17" "2012-02-17" "2012-02-17" "2012-02-17" "2012-02-17"
## [13951] "2012-07-23" "2012-07-23" "2012-07-23" "2012-07-23" "2012-07-23"
## [13956] "2013-03-17" "2011-12-22" "2011-12-22" "2014-02-17" "2013-03-17"
## [13961] "2011-12-22" "2014-02-17" "2014-02-17" "2013-03-18" "2014-02-17"
## [13966] "2011-12-22" "2013-03-18" "2011-12-19" "2011-12-22" "2011-12-19"
## [13971] "2011-12-19" "2013-03-18" "2011-12-19" "2011-12-22" "2011-12-19"
## [13976] "2011-10-13" NA           "2013-09-27" "2013-09-27" "2011-10-13"
## [13981] NA           NA           NA           NA           NA          
## [13986] "2013-09-27" "2011-10-13" NA           NA           NA          
## [13991] NA           NA           "2013-04-14" "2013-04-14" "2013-04-14"
## [13996] "2013-04-14" "2012-10-25" "2012-10-25" "2013-04-14" "2012-10-25"
## [14001] "2012-03-27" NA           NA           "2012-03-27" "2012-09-18"
## [14006] "2012-09-18" NA           NA           NA           NA          
## [14011] NA           NA           NA           NA           "2012-07-25"
## [14016] "2012-07-25" NA           NA           NA           NA          
## [14021] NA           NA           "2013-06-16" "2013-06-16" "2013-06-16"
## [14026] "2013-06-16" NA           NA           NA           NA          
## [14031] NA           NA           "2011-04-26" "2011-04-26" NA          
## [14036] NA           "2013-05-30" "2011-04-26" "2013-05-30" NA          
## [14041] "2013-05-30" "2013-08-27" "2013-08-27" "2013-11-23" "2013-11-23"
## [14046] "2011-07-17" "2011-07-17" "2011-07-17" "2011-07-17" "2011-07-17"
## [14051] NA           NA           NA           NA           NA          
## [14056] NA           "2013-04-15" "2013-04-15" NA           NA          
## [14061] NA           "2011-09-13" "2011-09-13" "2014-02-19" "2014-02-19"
## [14066] "2014-02-19" "2011-09-13" "2012-08-15" "2011-09-13" "2012-08-15"
## [14071] "2012-08-15" "2011-09-13" "2014-02-19" "2012-08-15" "2012-08-15"
## [14076] "2011-03-22" "2011-03-22" "2011-03-22" NA           "2011-03-22"
## [14081] NA           NA           NA           "2011-03-22" NA          
## [14086] "2012-02-25" "2012-02-25" NA           NA           NA          
## [14091] NA           "2012-02-25" "2012-02-25" "2012-02-25" NA          
## [14096] NA           NA           NA           "2011-10-19" "2011-10-24"
## [14101] NA           "2011-10-24" NA           "2011-10-19" NA          
## [14106] "2013-10-15" "2013-10-15" "2013-10-15" NA           NA          
## [14111] "2011-05-26" "2014-01-28" "2014-01-28" "2014-01-28" "2011-05-26"
## [14116] NA           NA           NA           NA           NA          
## [14121] NA           "2013-01-20" "2013-01-20" "2013-01-20" NA          
## [14126] NA           NA           NA           NA           NA          
## [14131] NA           NA           NA           NA           NA          
## [14136] NA           NA           NA           NA           NA          
## [14141] "2013-09-20" "2013-09-20" "2013-09-20" "2013-09-20" "2011-11-26"
## [14146] "2011-11-26" "2013-07-30" "2013-09-20" "2013-07-30" "2013-07-30"
## [14151] NA           "2013-07-30" "2013-09-20" "2013-07-30" "2013-07-30"
## [14156] NA           "2011-12-27" "2011-12-20" "2011-12-27" "2011-12-20"
## [14161] "2011-12-27" "2011-12-20" NA           NA           "2012-04-27"
## [14166] "2012-04-27" NA           NA           NA           NA          
## [14171] NA           NA           "2011-09-26" "2011-09-26" NA          
## [14176] NA           NA           NA           NA           "2012-07-15"
## [14181] NA           "2011-10-14" "2011-10-14" "2012-07-15" NA          
## [14186] "2013-10-22" "2013-10-22" "2013-10-22" NA           "2012-04-21"
## [14191] NA           NA           NA           NA           NA          
## [14196] "2012-04-21" "2012-04-21" NA           NA           "2012-04-21"
## [14201] "2012-04-21" NA           NA           NA           "2011-02-17"
## [14206] "2011-02-17" "2011-02-17" NA           NA           "2013-03-15"
## [14211] NA           NA           NA           "2013-03-15" "2013-03-15"
## [14216] NA           "2012-02-22" NA           NA           "2012-02-22"
## [14221] NA           NA           NA           NA           NA          
## [14226] "2012-02-22" NA           NA           "2011-12-29" "2011-12-29"
## [14231] "2013-05-28" "2011-12-29" "2013-05-28" "2011-12-29" "2011-12-29"
## [14236] "2013-05-28" "2011-04-26" "2011-11-13" "2011-04-26" "2011-04-26"
## [14241] "2011-04-26" "2011-11-13" "2013-08-16" "2012-10-18" "2012-10-18"
## [14246] "2013-08-16" NA           "2013-12-22" NA           NA          
## [14251] NA           "2013-12-22" NA           NA           NA          
## [14256] NA           NA           "2012-08-17" "2012-08-22" "2012-08-22"
## [14261] "2012-08-22" "2012-08-22" "2012-08-17" NA           "2012-08-22"
## [14266] NA           NA           NA           NA           NA          
## [14271] "2012-08-17" "2012-08-17" "2012-08-17" NA           "2012-09-25"
## [14276] "2013-09-21" "2014-01-13" NA           NA           "2012-09-25"
## [14281] NA           NA           "2014-01-13" "2012-09-25" NA          
## [14286] "2013-09-21" NA           "2014-01-13" NA           NA          
## [14291] "2012-09-25" "2012-09-25" "2012-05-30" "2012-05-30" "2012-05-30"
## [14296] "2012-05-30" "2012-05-30" NA           NA           NA          
## [14301] NA           NA           "2014-02-20" "2014-02-20" "2014-02-20"
## [14306] "2014-02-20" "2014-02-20" "2011-07-18" "2011-10-14" "2013-03-15"
## [14311] "2011-07-13" "2013-03-18" "2011-07-13" "2011-10-16" "2013-03-15"
## [14316] "2011-10-14" "2011-07-18" NA           "2013-03-15" "2011-10-16"
## [14321] "2011-10-14" "2011-10-16" "2013-03-18" NA           "2011-10-14"
## [14326] "2013-03-18" "2013-03-18" "2011-10-16" "2011-10-14" "2013-03-15"
## [14331] "2013-03-15" "2011-07-18" NA           "2011-10-16" "2013-03-18"
## [14336] "2011-05-19" "2011-03-22" NA           NA           "2011-03-22"
## [14341] "2011-05-19" NA           "2013-12-26" NA           "2013-12-26"
## [14346] "2013-06-25" "2013-06-25" NA           NA           NA          
## [14351] NA           NA           NA           NA           NA          
## [14356] NA           NA           "2013-09-14" NA           NA          
## [14361] "2013-09-14" "2013-08-18" "2013-08-18" "2013-09-14" "2013-09-14"
## [14366] "2013-08-18" "2013-09-14" NA           NA           NA          
## [14371] "2013-10-27" NA           NA           "2013-10-27" NA          
## [14376] NA           "2013-10-27" "2012-07-28" "2011-11-28" "2012-07-28"
## [14381] "2013-10-27" "2011-11-28" "2012-07-28" "2012-07-28" "2011-11-28"
## [14386] NA           "2013-04-28" NA           NA           NA          
## [14391] "2013-09-15" "2013-04-28" "2013-09-15" NA           NA          
## [14396] NA           "2013-04-28" NA           NA           "2013-10-25"
## [14401] NA           NA           "2013-04-28" "2013-04-28" NA          
## [14406] NA           "2013-10-25" NA           "2012-06-28" "2012-06-28"
## [14411] "2012-06-28" "2012-06-28" "2012-06-28" "2012-11-24" NA          
## [14416] "2012-11-24" "2012-09-28" NA           "2012-09-28" "2013-03-28"
## [14421] NA           "2012-11-24" "2012-09-28" "2013-03-28" "2013-03-28"
## [14426] NA           NA           NA           NA           NA          
## [14431] "2011-09-18" "2011-09-18" "2011-09-18" NA           NA          
## [14436] NA           NA           "2012-12-13" NA           NA          
## [14441] NA           "2012-12-13" NA           "2012-12-13" "2012-12-13"
## [14446] "2012-12-13" NA           "2012-12-13" NA           NA          
## [14451] NA           NA           "2012-07-22" "2013-02-20" "2013-08-22"
## [14456] "2012-07-22" "2013-02-20" "2013-08-22" "2013-08-22" "2013-02-20"
## [14461] "2012-07-22" "2013-02-20" "2012-07-22" "2012-07-22" "2013-02-20"
## [14466] NA           "2013-04-22" "2013-07-13" "2013-04-21" "2013-04-21"
## [14471] "2013-04-22" NA           "2013-04-21" "2013-04-21" "2013-07-13"
## [14476] NA           "2013-07-13" "2013-04-22" "2013-07-13" "2013-04-22"
## [14481] "2013-07-13" NA           "2013-04-14" NA           "2013-04-14"
## [14486] "2011-06-25" NA           "2011-06-25" NA           "2013-04-14"
## [14491] NA           "2013-04-14" "2013-04-14" NA           "2011-06-25"
## [14496] NA           "2013-08-14" "2013-04-14" NA           "2013-08-14"
## [14501] NA           NA           NA           "2011-06-22" "2011-06-22"
## [14506] NA           "2011-06-22" "2011-06-22" "2011-06-22" NA          
## [14511] "2013-01-28" NA           NA           NA           NA          
## [14516] NA           NA           NA           NA           NA          
## [14521] "2013-01-28" NA           NA           NA           "2013-01-28"
## [14526] NA           "2012-11-25" "2012-11-25" NA           NA          
## [14531] NA           "2013-05-27" "2013-05-27" NA           NA          
## [14536] "2013-05-27" NA           "2011-08-26" "2013-05-27" "2012-06-29"
## [14541] "2012-06-29" NA           "2012-06-29" "2013-05-27" NA          
## [14546] "2011-08-26" "2013-05-27" "2011-08-26" "2012-07-15" "2012-07-15"
## [14551] NA           "2012-07-15" "2012-07-15" NA           NA          
## [14556] "2012-07-15" NA           NA           NA           "2012-08-30"
## [14561] NA           "2013-08-27" "2013-08-27" NA           NA          
## [14566] NA           "2013-08-27" "2012-08-30" "2012-08-30" NA          
## [14571] "2011-03-17" NA           "2011-03-17" NA           NA          
## [14576] "2012-11-25" NA           NA           NA           "2013-12-22"
## [14581] "2013-12-22" "2012-11-25" "2013-12-22" NA           "2013-12-22"
## [14586] NA           NA           NA           NA           NA          
## [14591] NA           "2013-12-22" NA           NA           NA          
## [14596] "2013-10-31" "2013-10-31" NA           NA           "2013-10-31"
## [14601] "2013-10-31" NA           NA           NA           NA          
## [14606] "2011-07-27" "2011-07-16" NA           NA           "2011-07-27"
## [14611] "2011-07-16" NA           "2011-07-27" "2011-07-13" NA          
## [14616] NA           "2012-08-30" "2012-05-27" "2012-08-30" "2012-05-27"
## [14621] "2012-05-27" "2011-07-13" "2011-07-13" "2012-05-27" "2012-05-27"
## [14626] "2012-09-17" "2012-09-17" NA           "2012-09-17" NA          
## [14631] NA           "2013-11-23" NA           NA           "2013-11-23"
## [14636] NA           "2011-10-13" "2011-07-20" "2011-07-20" "2011-07-20"
## [14641] NA           "2011-07-20" NA           "2011-10-13" "2011-10-13"
## [14646] "2011-03-19" "2011-10-13" "2011-07-20" "2011-10-13" "2011-10-16"
## [14651] "2011-03-19" NA           "2011-03-19" "2011-10-16" "2011-03-19"
## [14656] NA           "2011-03-19" "2011-10-16" "2012-05-26" "2012-05-26"
## [14661] NA           NA           "2012-02-23" "2012-10-19" "2012-10-19"
## [14666] "2012-02-23" "2012-02-23" "2012-02-23" "2012-10-19" "2012-10-19"
## [14671] "2012-02-23" "2012-10-19" "2013-12-18" "2011-12-24" "2013-12-18"
## [14676] "2013-12-18" "2011-12-24" "2011-12-16" "2012-05-24" "2011-12-16"
## [14681] "2012-05-24" "2012-05-24" "2012-05-24" "2012-05-24" "2011-04-13"
## [14686] NA           "2011-04-13" "2013-03-13" "2013-03-13" NA          
## [14691] NA           NA           "2011-04-13" NA           "2012-04-21"
## [14696] NA           "2012-04-27" NA           "2012-04-27" NA          
## [14701] NA           "2012-04-27" "2012-04-21" NA           NA          
## [14706] "2012-04-21" "2012-07-18" "2012-12-14" "2012-12-14" "2011-06-23"
## [14711] "2012-07-18" "2011-06-23" "2013-11-19" "2012-12-14" "2013-11-19"
## [14716] "2013-12-31" NA           NA           NA           "2013-12-31"
## [14721] "2013-12-31" NA           NA           "2013-12-31" NA          
## [14726] "2011-08-19" NA           "2011-08-19" "2011-07-14" "2011-07-14"
## [14731] NA           NA           NA           "2012-03-15" NA          
## [14736] "2011-07-14" NA           NA           "2011-07-14" NA          
## [14741] NA           NA           "2012-03-15" "2012-03-15" NA          
## [14746] "2012-03-15" "2012-03-15" NA           NA           NA          
## [14751] "2011-10-15" NA           "2011-10-15" "2011-07-27" "2013-03-13"
## [14756] "2011-07-27" "2013-08-21" "2014-01-28" "2013-08-21" "2013-08-21"
## [14761] "2013-08-21" "2011-07-21" "2013-03-13" "2011-07-21" "2014-01-28"
## [14766] "2014-01-28" NA           NA           NA           NA          
## [14771] NA           NA           NA           NA           "2013-06-14"
## [14776] "2013-06-21" NA           "2013-03-17" "2013-06-14" "2013-06-21"
## [14781] "2013-06-21" "2013-06-14" "2013-06-14" NA           NA          
## [14786] "2013-03-17" "2013-06-21" "2013-06-21" "2013-03-17" "2013-03-17"
## [14791] "2013-03-17" NA           "2013-06-14" NA           NA          
## [14796] "2013-03-29" "2013-03-29" NA           "2013-03-29" "2012-04-23"
## [14801] "2012-04-26" "2012-04-23" "2012-04-23" "2012-04-26" "2012-04-26"
## [14806] "2013-08-24" NA           "2013-08-24" "2013-08-24" NA          
## [14811] NA           NA           NA           NA           "2012-02-24"
## [14816] "2012-02-15" NA           NA           "2012-02-15" NA          
## [14821] "2012-02-15" NA           "2012-02-24" "2012-02-15" NA          
## [14826] "2012-02-24" "2012-02-24" NA           "2012-05-18" "2012-05-18"
## [14831] "2012-05-18" "2012-05-18" "2012-05-18" "2013-02-22" "2013-08-14"
## [14836] "2013-02-22" "2013-08-21" "2013-08-21" "2013-08-14" "2013-05-17"
## [14841] "2013-02-22" "2013-02-22" "2013-02-22" "2013-05-17" "2013-08-21"
## [14846] "2013-08-14" NA           NA           "2013-08-18" "2013-08-18"
## [14851] NA           NA           NA           NA           "2013-08-18"
## [14856] "2013-08-18" NA           NA           "2013-08-18" "2011-01-26"
## [14861] NA           NA           NA           "2011-01-26" "2011-01-26"
## [14866] NA           NA           "2013-12-24" "2011-10-24" "2011-07-26"
## [14871] "2011-07-26" "2013-12-24" "2011-07-26" "2011-07-26" "2012-01-29"
## [14876] "2011-07-17" "2011-10-24" "2012-01-29" "2011-07-17" "2011-07-17"
## [14881] "2011-07-17" "2013-12-24" "2012-02-20" "2012-02-20" NA          
## [14886] NA           NA           NA           NA           "2011-03-26"
## [14891] "2011-08-16" "2011-08-16" "2011-03-26" "2011-03-26" NA          
## [14896] "2011-08-16" "2011-08-16" NA           NA           NA          
## [14901] NA           "2011-08-16" NA           "2013-05-31" "2013-05-31"
## [14906] "2013-12-23" "2013-12-23" "2013-05-31" "2013-12-23" NA          
## [14911] "2012-06-24" "2012-10-15" "2012-10-15" "2012-10-15" "2012-06-24"
## [14916] NA           NA           "2012-12-21" NA           "2011-07-23"
## [14921] "2011-07-23" "2012-12-21" NA           NA           NA          
## [14926] "2012-12-21" NA           NA           NA           "2013-03-25"
## [14931] NA           NA           "2013-03-25" NA           "2013-03-25"
## [14936] NA           "2013-10-29" NA           "2013-10-29" "2013-10-29"
## [14941] "2013-10-29" NA           "2011-03-20" "2011-03-20" "2011-03-20"
## [14946] "2011-03-20" NA           "2011-03-20" NA           "2013-10-29"
## [14951] "2011-12-28" "2011-12-28" NA           NA           NA          
## [14956] NA           "2012-10-19" "2012-10-19" "2012-10-19" NA          
## [14961] NA           NA           NA           NA           "2013-12-26"
## [14966] NA           "2013-12-26" NA           NA           NA          
## [14971] NA           "2013-12-26" NA           NA           NA          
## [14976] NA           NA           "2013-12-26" NA           NA          
## [14981] NA           NA           NA           "2013-09-26" NA          
## [14986] NA           NA           "2013-09-26" NA           NA          
## [14991] NA           "2012-02-27" NA           "2012-02-27" "2011-08-26"
## [14996] "2011-08-26" "2011-08-26" "2012-07-25" "2011-08-26" "2012-07-25"
## [15001] NA           "2013-07-27" "2011-08-26" "2013-07-27" NA          
## [15006] NA           "2012-07-25" "2012-07-25" NA           "2012-07-25"
## [15011] NA           "2011-06-21" "2011-05-14" "2011-07-28" "2011-06-21"
## [15016] "2011-07-28" "2011-05-14" "2011-05-14" "2011-07-28" "2011-05-14"
## [15021] "2011-05-14" "2011-05-31" "2012-09-22" "2012-09-22" "2011-05-31"
## [15026] "2011-05-31" "2012-09-22" "2011-05-18" NA           NA          
## [15031] NA           "2011-05-18" NA           "2011-05-18" "2011-02-23"
## [15036] NA           "2011-02-23" "2013-05-13" NA           "2011-02-23"
## [15041] "2011-02-23" "2013-05-13" "2011-02-23" "2013-05-22" NA          
## [15046] "2013-05-22" "2011-02-23" "2013-03-27" NA           "2013-03-27"
## [15051] "2012-09-30" "2012-09-30" "2013-03-27" "2013-03-27" "2013-05-30"
## [15056] "2013-03-27" NA           NA           "2012-09-30" "2013-05-30"
## [15061] "2013-05-30" NA           "2012-08-13" NA           NA          
## [15066] "2012-08-13" "2012-08-13" "2012-08-13" "2013-10-27" "2013-10-27"
## [15071] NA           "2013-10-27" "2012-02-18" NA           "2012-02-18"
## [15076] "2012-02-21" NA           "2012-02-18" "2012-02-18" NA          
## [15081] "2012-02-21" NA           "2012-02-18" NA           "2012-02-21"
## [15086] "2012-02-21" "2012-02-21" NA           NA           NA          
## [15091] NA           NA           NA           NA           NA          
## [15096] NA           NA           "2011-06-20" "2012-03-17" "2013-10-22"
## [15101] NA           "2013-07-31" "2012-03-17" NA           "2012-03-17"
## [15106] "2012-03-17" "2011-06-20" "2013-07-31" "2012-03-17" NA          
## [15111] "2011-06-20" "2013-10-22" NA           "2011-06-20" "2011-06-20"
## [15116] "2011-12-15" NA           "2013-10-22" NA           "2011-12-15"
## [15121] "2011-06-16" "2011-06-16" NA           NA           NA          
## [15126] NA           NA           NA           "2012-04-24" "2011-05-17"
## [15131] "2012-04-24" "2011-05-17" "2012-04-24" NA           "2012-04-24"
## [15136] NA           "2011-05-17" "2011-05-17" "2011-05-17" "2012-04-24"
## [15141] NA           NA           NA           NA           "2014-01-18"
## [15146] "2014-01-18" NA           NA           "2014-01-18" NA          
## [15151] NA           NA           "2011-05-29" "2011-05-29" NA          
## [15156] NA           NA           "2011-03-26" NA           NA          
## [15161] "2011-03-26" "2011-03-26" NA           NA           NA          
## [15166] NA           NA           NA           NA           NA          
## [15171] NA           NA           NA           NA           NA          
## [15176] "2012-05-17" "2012-05-16" "2012-05-17" "2012-05-16" "2012-05-25"
## [15181] "2012-05-25" "2012-05-25" NA           NA           NA          
## [15186] NA           NA           NA           "2012-05-25" "2012-05-25"
## [15191] NA           "2013-10-17" NA           NA           "2013-10-17"
## [15196] "2013-10-17" NA           "2013-10-17" "2013-10-17" NA          
## [15201] NA           "2011-12-29" "2011-12-29" "2011-12-29" "2011-12-29"
## [15206] "2013-12-24" "2011-12-29" "2011-12-29" "2013-12-24" "2013-12-24"
## [15211] "2013-12-24" "2013-12-24" "2013-04-23" "2013-04-23" "2013-04-20"
## [15216] "2011-06-16" "2013-04-23" "2011-06-16" "2011-06-16" "2013-04-20"
## [15221] "2013-05-14" "2013-05-14" "2011-04-17" NA           "2013-06-21"
## [15226] "2013-05-14" "2013-06-21" "2011-04-17" "2011-04-17" NA          
## [15231] "2011-04-17" NA           "2011-04-17" "2013-06-21" "2012-12-31"
## [15236] "2012-11-27" "2011-04-16" "2012-11-27" "2012-11-27" "2012-11-27"
## [15241] "2012-12-31" "2011-04-16" "2012-11-27" "2011-04-16" "2013-08-31"
## [15246] "2013-08-31" "2013-05-13" "2013-05-13" NA           NA          
## [15251] "2013-05-13" NA           "2012-08-28" "2013-10-14" "2012-08-28"
## [15256] "2012-08-15" "2013-10-14" "2012-08-15" NA           NA          
## [15261] NA           NA           NA           NA           NA          
## [15266] "2013-06-23" NA           "2011-06-29" "2011-06-29" NA          
## [15271] "2013-06-23" "2013-06-23" "2011-06-29" NA           "2011-06-29"
## [15276] "2013-06-23" "2013-10-18" "2013-10-18" "2013-10-18" NA          
## [15281] "2011-09-15" NA           "2011-09-15" NA           "2011-09-20"
## [15286] NA           "2012-03-18" NA           "2012-03-18" "2011-09-20"
## [15291] "2012-05-27" "2012-05-29" NA           "2013-10-24" NA          
## [15296] "2012-05-29" NA           "2013-10-24" NA           NA          
## [15301] "2012-05-29" "2012-05-27" "2012-05-27" "2012-05-29" "2012-05-29"
## [15306] "2012-05-27" "2012-05-27" "2013-10-24" "2012-03-29" NA          
## [15311] "2012-03-29" NA           "2012-08-23" "2012-03-29" NA          
## [15316] NA           "2012-08-23" NA           NA           "2012-08-23"
## [15321] NA           NA           "2012-03-29" NA           NA          
## [15326] NA           NA           NA           NA           NA          
## [15331] NA           NA           NA           NA           NA          
## [15336] "2012-10-28" "2012-10-28" "2012-10-28" "2012-10-27" "2013-09-27"
## [15341] "2013-09-27" "2012-10-27" NA           NA           NA          
## [15346] "2013-09-27" NA           "2012-10-27" NA           NA          
## [15351] NA           NA           NA           "2012-09-18" NA          
## [15356] NA           NA           "2012-09-18" NA           "2012-09-18"
## [15361] NA           NA           NA           "2011-08-21" NA          
## [15366] "2011-08-21" NA           NA           "2013-07-13" NA          
## [15371] NA           NA           NA           NA           "2013-07-13"
## [15376] NA           NA           NA           NA           NA          
## [15381] NA           "2011-09-26" NA           "2011-09-26" NA          
## [15386] NA           "2011-09-26" NA           NA           NA          
## [15391] NA           NA           "2011-09-26" "2011-09-26" "2013-10-30"
## [15396] NA           "2013-10-21" "2013-08-21" "2013-08-21" "2013-03-18"
## [15401] "2013-10-21" "2013-03-18" "2013-08-21" "2013-03-18" "2013-10-30"
## [15406] "2013-08-21" "2013-08-21" NA           "2011-10-28" "2012-07-23"
## [15411] "2011-10-28" "2011-10-28" "2012-07-23" NA           NA          
## [15416] NA           NA           NA           "2012-08-20" NA          
## [15421] "2012-08-20" "2012-08-20" "2012-08-20" NA           "2012-08-20"
## [15426] "2013-10-18" "2013-10-18" "2013-10-18" "2011-02-13" NA          
## [15431] "2011-05-24" NA           "2011-05-24" "2011-05-24" "2011-05-24"
## [15436] "2011-02-13" "2012-08-14" NA           "2011-02-13" NA          
## [15441] "2012-08-14" "2011-05-24" "2012-08-14" "2011-02-13" "2013-09-24"
## [15446] "2013-09-24" "2013-09-24" "2013-09-24" "2013-10-17" NA          
## [15451] NA           NA           "2013-09-24" "2013-10-17" "2013-09-20"
## [15456] NA           NA           "2013-10-17" NA           "2013-09-20"
## [15461] NA           "2013-09-20" NA           NA           "2011-11-16"
## [15466] "2011-11-16" "2011-11-16" NA           NA           "2011-11-16"
## [15471] NA           "2011-11-16" "2013-06-29" "2013-06-29" NA          
## [15476] NA           NA           NA           "2013-02-18" "2013-02-18"
## [15481] "2013-11-26" "2013-02-18" "2013-11-26" NA           "2013-07-30"
## [15486] "2013-07-30" NA           NA           NA           "2013-07-30"
## [15491] NA           NA           "2013-07-30" NA           NA          
## [15496] NA           "2011-09-18" "2011-09-18" "2011-09-18" NA          
## [15501] "2013-04-29" NA           "2013-04-29" NA           "2013-04-29"
## [15506] "2012-07-23" "2012-07-23" "2012-07-23" "2012-07-23" "2012-07-23"
## [15511] NA           "2013-07-13" NA           "2013-07-13" "2013-07-14"
## [15516] "2013-07-14" "2013-07-13" "2013-07-13" NA           NA          
## [15521] "2013-07-14" "2013-07-13" NA           NA           NA          
## [15526] NA           "2013-07-14" "2012-02-23" NA           "2012-02-23"
## [15531] "2011-08-17" NA           "2012-02-23" NA           "2011-08-17"
## [15536] "2011-08-17" NA           "2011-12-31" NA           "2011-12-31"
## [15541] NA           NA           NA           NA           NA          
## [15546] NA           "2011-09-18" "2011-09-18" "2011-09-18" "2011-09-18"
## [15551] "2011-09-18" "2011-06-13" "2012-06-16" "2012-07-18" "2012-07-18"
## [15556] "2012-06-14" "2012-06-16" "2012-07-18" "2011-06-13" "2011-06-13"
## [15561] "2012-06-14" "2013-10-19" "2013-10-19" "2013-10-19" "2013-10-19"
## [15566] "2013-05-24" "2013-10-19" "2014-01-15" "2013-05-24" "2013-05-24"
## [15571] "2012-05-17" "2014-01-15" "2012-05-17" "2012-05-17" "2011-03-30"
## [15576] "2011-03-30" "2012-08-15" NA           "2013-07-14" "2012-08-15"
## [15581] "2013-07-14" "2011-03-30" "2013-07-14" NA           NA          
## [15586] NA           NA           NA           NA           NA          
## [15591] NA           NA           NA           NA           NA          
## [15596] "2012-01-23" "2012-01-23" "2012-01-21" "2012-01-21" "2012-01-23"
## [15601] "2012-01-21" "2012-01-21" "2013-11-15" "2012-01-23" "2012-01-23"
## [15606] "2013-11-15" "2013-11-15" "2012-01-21" "2013-12-30" "2013-12-30"
## [15611] "2013-12-30" "2011-03-16" "2011-03-16" "2011-03-16" NA          
## [15616] NA           NA           NA           NA           NA          
## [15621] NA           "2012-01-22" NA           "2012-01-22" "2012-01-22"
## [15626] "2012-11-28" "2012-01-22" NA           "2012-11-28" "2012-01-22"
## [15631] "2012-01-22" NA           NA           "2013-07-13" "2013-07-13"
## [15636] NA           "2013-07-13" "2013-01-15" "2013-01-15" "2013-01-15"
## [15641] "2013-01-15" NA           "2013-01-15" NA           "2011-12-24"
## [15646] "2011-12-24" "2013-10-31" "2012-01-14" "2012-01-14" "2011-12-24"
## [15651] "2012-01-14" "2013-10-31" NA           "2011-11-25" "2011-12-24"
## [15656] "2013-10-31" "2011-11-25" NA           "2011-12-24" "2011-11-25"
## [15661] "2013-10-31" "2013-10-31" "2011-11-25" NA           "2011-11-25"
## [15666] "2011-07-30" "2011-07-21" "2011-07-30" "2011-07-21" "2011-07-30"
## [15671] "2011-07-21" "2012-11-19" NA           "2012-11-19" "2012-11-19"
## [15676] NA           "2012-11-19" "2012-11-19" NA           NA          
## [15681] "2011-09-18" "2011-09-18" "2012-11-20" "2013-12-30" "2012-11-20"
## [15686] "2013-12-28" "2013-12-30" "2013-12-30" "2013-12-30" "2012-11-20"
## [15691] "2013-12-28" "2013-12-28" "2013-12-28" "2013-12-30" NA          
## [15696] "2012-11-20" "2013-12-28" "2012-11-20" NA           "2013-12-28"
## [15701] "2011-12-21" "2013-12-30" "2011-12-21" "2013-11-27" "2012-05-28"
## [15706] "2012-05-28" "2012-05-28" "2013-11-27" "2012-05-28" "2012-05-28"
## [15711] NA           "2012-03-29" NA           NA           "2012-03-29"
## [15716] "2013-07-30" "2013-07-30" "2011-11-21" "2011-07-26" "2011-07-26"
## [15721] "2011-07-26" "2011-11-21" "2012-11-19" "2011-07-26" "2011-07-26"
## [15726] "2011-11-21" "2011-11-21" "2012-11-19" "2011-07-26" "2011-11-21"
## [15731] "2012-08-25" "2011-10-13" "2011-10-13" "2012-08-25" "2012-08-19"
## [15736] "2012-08-25" "2013-11-21" "2012-08-25" "2012-08-19" "2012-08-19"
## [15741] "2012-08-19" "2012-08-25" "2013-11-21" "2012-08-19" "2013-07-29"
## [15746] "2013-07-29" NA           NA           NA           NA          
## [15751] NA           NA           NA           NA           NA          
## [15756] NA           NA           NA           NA           NA          
## [15761] NA           NA           NA           NA           NA          
## [15766] "2013-10-27" "2013-04-24" NA           NA           "2013-10-27"
## [15771] NA           NA           NA           "2013-04-24" "2013-04-24"
## [15776] NA           "2013-04-24" NA           "2013-10-27" "2012-05-16"
## [15781] "2011-03-16" NA           NA           "2011-07-15" NA          
## [15786] NA           "2012-05-16" "2011-03-16" NA           NA          
## [15791] "2012-05-16" "2012-05-16" "2011-07-15" NA           NA          
## [15796] "2011-03-16" "2012-05-16" NA           "2012-08-20" NA          
## [15801] "2012-08-20" NA           "2013-02-22" "2011-10-22" NA          
## [15806] "2011-10-22" NA           "2012-08-20" NA           "2013-02-22"
## [15811] "2011-10-22" "2011-10-22" "2011-10-22" "2011-10-22" NA          
## [15816] "2013-02-22" "2012-08-20" "2012-12-14" "2012-12-14" "2012-11-29"
## [15821] "2012-12-14" "2013-11-23" "2012-11-29" "2013-11-23" "2012-11-29"
## [15826] "2012-11-29" "2013-11-23" "2013-11-23" "2013-11-23" "2013-11-23"
## [15831] "2012-11-29" "2011-06-27" NA           "2012-06-16" NA          
## [15836] "2013-02-15" NA           "2013-02-15" "2012-06-16" NA          
## [15841] "2012-06-16" NA           "2012-06-16" "2011-06-27" "2012-06-16"
## [15846] NA           "2013-02-15" NA           "2013-02-15" NA          
## [15851] "2013-05-19" "2013-05-19" "2013-05-19" "2011-11-19" "2013-05-19"
## [15856] "2013-05-19" NA           "2011-11-19" NA           NA          
## [15861] "2012-01-26" "2012-01-26" NA           NA           "2012-01-26"
## [15866] NA           NA           NA           "2013-09-19" NA          
## [15871] "2013-09-19" "2013-09-19" "2013-09-19" NA           "2013-09-19"
## [15876] NA           NA           NA           NA           "2012-09-27"
## [15881] "2012-05-26" "2012-09-27" "2012-05-26" "2012-02-19" NA          
## [15886] NA           "2012-02-19" "2012-09-27" "2012-09-27" NA          
## [15891] "2012-02-19" "2012-02-19" "2012-05-26" NA           "2012-09-27"
## [15896] "2012-09-27" NA           NA           NA           NA          
## [15901] NA           NA           NA           "2011-10-30" "2011-10-30"
## [15906] NA           "2014-01-31" "2013-04-29" "2013-04-29" "2014-01-31"
## [15911] NA           "2014-01-31" "2013-04-29" "2013-04-29" "2013-04-29"
## [15916] "2013-04-29" NA           "2011-06-28" "2011-06-28" "2012-10-21"
## [15921] "2012-10-21" "2012-10-21" "2012-11-16" NA           "2012-06-22"
## [15926] "2013-06-26" "2013-06-26" NA           "2012-06-22" "2012-11-16"
## [15931] "2012-11-16" "2013-06-26" NA           NA           "2012-06-22"
## [15936] "2012-06-22" "2012-06-22" NA           NA           NA          
## [15941] NA           NA           NA           NA           NA          
## [15946] NA           NA           NA           NA           NA          
## [15951] NA           NA           NA           NA           NA          
## [15956] NA           NA           NA           NA           NA          
## [15961] NA           NA           NA           "2012-09-17" NA          
## [15966] "2012-09-17" "2012-09-17" "2012-09-17" NA           "2012-09-17"
## [15971] NA           NA           NA           "2011-07-13" "2011-07-13"
## [15976] NA           NA           "2011-07-13" NA           "2012-12-15"
## [15981] "2012-12-15" NA           NA           NA           NA          
## [15986] NA           NA           NA           NA           NA          
## [15991] NA           "2012-09-14" "2012-09-14" "2012-09-14" "2013-11-13"
## [15996] "2013-11-13" "2013-11-13" "2013-11-13" "2013-11-13" "2013-01-17"
## [16001] "2013-01-17" "2013-01-17" "2013-01-17" "2013-01-17" "2014-01-17"
## [16006] "2014-01-17" "2014-01-17" "2014-01-17" "2014-01-17" NA          
## [16011] NA           NA           NA           NA           "2011-04-24"
## [16016] "2011-04-24" "2011-04-24" "2011-04-24" "2011-04-24" "2011-04-24"
## [16021] NA           NA           NA           NA           NA          
## [16026] "2011-10-25" "2011-10-25" NA           NA           "2013-02-19"
## [16031] "2013-02-19" "2013-02-19" "2013-02-19" NA           "2013-02-26"
## [16036] NA           "2013-02-19" "2013-02-26" "2013-02-26" NA          
## [16041] "2012-01-19" "2013-02-26" "2012-01-19" "2013-02-26" "2011-07-23"
## [16046] "2011-07-23" "2013-12-24" "2011-07-23" "2011-07-23" "2013-12-24"
## [16051] NA           "2011-06-21" NA           NA           "2011-06-21"
## [16056] NA           NA           NA           NA           NA          
## [16061] NA           NA           NA           "2012-03-30" "2012-03-30"
## [16066] "2012-03-30" "2013-04-25" NA           "2014-01-14" "2013-04-24"
## [16071] "2013-04-24" NA           "2012-12-19" "2013-04-24" "2013-04-24"
## [16076] "2013-04-24" "2014-01-14" "2012-12-19" "2013-04-25" "2013-04-25"
## [16081] "2014-01-14" "2013-04-25" "2014-01-14" "2013-04-25" "2014-01-14"
## [16086] "2012-12-19" "2012-12-19" "2012-12-19" "2014-01-14" "2013-06-21"
## [16091] "2013-06-21" "2013-06-21" "2013-06-21" "2013-06-21" NA          
## [16096] NA           "2014-01-29" NA           NA           NA          
## [16101] "2014-01-29" NA           "2014-01-14" "2013-08-29" "2014-01-14"
## [16106] "2013-08-29" "2014-01-14" "2013-08-29" "2011-07-20" "2011-07-20"
## [16111] "2011-07-20" NA           NA           NA           NA          
## [16116] NA           NA           NA           NA           NA          
## [16121] NA           "2013-09-15" "2013-09-15" "2013-09-15" "2013-01-25"
## [16126] "2012-12-27" "2012-12-27" "2013-09-16" "2013-09-15" "2012-12-27"
## [16131] "2013-09-15" "2012-12-27" "2012-12-27" "2013-01-25" "2013-01-25"
## [16136] "2012-12-27" "2013-09-16" "2013-09-16" "2013-09-16" "2013-01-25"
## [16141] NA           "2013-09-16" "2013-09-16" "2013-09-15" NA          
## [16146] "2013-01-25" NA           NA           NA           NA          
## [16151] NA           NA           NA           NA           NA          
## [16156] "2011-07-13" "2011-07-13" NA           "2011-07-13" NA          
## [16161] NA           "2012-10-15" "2012-10-15" "2011-12-31" "2011-12-31"
## [16166] NA           NA           NA           "2011-12-31" "2012-10-15"
## [16171] NA           NA           NA           "2011-11-16" "2011-11-16"
## [16176] "2011-11-16" NA           NA           NA           NA          
## [16181] NA           "2013-08-16" "2013-08-16" NA           NA          
## [16186] "2013-08-16" NA           NA           NA           NA          
## [16191] "2013-06-17" "2013-06-18" "2013-06-18" "2012-04-30" "2013-06-17"
## [16196] "2013-06-17" "2013-06-18" "2012-04-30" "2012-04-30" "2012-04-30"
## [16201] "2012-06-30" NA           NA           NA           NA          
## [16206] "2012-06-23" NA           "2012-06-30" "2012-06-23" "2013-02-28"
## [16211] NA           "2013-02-28" NA           NA           "2013-02-28"
## [16216] NA           NA           "2011-03-26" "2011-03-26" "2011-03-26"
## [16221] "2011-03-26" "2011-03-26" NA           NA           NA          
## [16226] NA           NA           NA           NA           NA          
## [16231] NA           "2013-12-16" "2013-12-16" "2013-12-16" NA          
## [16236] "2013-12-16" "2013-12-16" NA           NA           NA          
## [16241] NA           NA           NA           NA           "2012-05-13"
## [16246] "2012-04-28" "2013-10-14" "2012-04-28" "2012-05-13" "2012-05-13"
## [16251] "2012-05-13" "2012-05-13" "2012-01-15" NA           "2013-10-14"
## [16256] "2013-10-14" "2012-01-15" NA           "2012-01-15" "2011-09-23"
## [16261] "2013-01-16" "2011-09-23" "2013-01-16" "2013-01-16" "2012-11-18"
## [16266] NA           NA           NA           NA           NA          
## [16271] "2012-11-18" NA           "2012-11-18" "2012-11-18" "2012-11-18"
## [16276] NA           NA           NA           NA           "2011-07-14"
## [16281] "2011-07-14" "2011-07-14" "2011-10-30" "2011-07-14" "2011-07-14"
## [16286] "2011-10-30" "2011-10-30" "2011-07-16" "2011-07-16" NA          
## [16291] "2011-07-16" NA           NA           NA           NA          
## [16296] "2012-12-30" NA           "2012-12-30" NA           NA          
## [16301] NA           NA           "2014-01-28" "2012-02-20" "2012-02-20"
## [16306] NA           NA           NA           "2014-01-28" NA          
## [16311] NA           NA           NA           NA           NA          
## [16316] "2013-02-27" NA           "2013-02-27" NA           "2012-08-20"
## [16321] "2012-08-20" "2012-08-20" "2012-08-20" "2012-08-20" "2013-06-23"
## [16326] "2013-06-23" "2011-07-14" "2011-07-14" NA           "2013-06-23"
## [16331] NA           NA           "2011-07-14" NA           NA          
## [16336] "2013-06-23" NA           "2013-06-23" NA           "2013-03-18"
## [16341] "2013-03-18" NA           "2013-03-13" "2013-03-18" NA          
## [16346] "2013-03-13" NA           "2014-01-29" "2014-01-29" "2013-03-13"
## [16351] NA           NA           NA           "2014-01-29" "2013-03-13"
## [16356] "2013-03-18" "2011-05-26" "2013-03-18" "2011-05-26" "2013-03-13"
## [16361] "2014-01-29" "2013-03-18" "2013-03-13" NA           NA          
## [16366] "2011-05-26" NA           NA           "2012-12-25" NA          
## [16371] "2012-12-25" "2012-12-25" "2012-12-25" "2012-12-25" NA          
## [16376] "2012-09-30" NA           "2012-09-30" "2013-05-27" "2013-05-27"
## [16381] NA           "2011-03-27" "2011-03-27" "2011-03-27" NA          
## [16386] NA           "2013-08-24" "2011-09-21" "2013-08-24" "2011-09-21"
## [16391] "2011-09-21" "2011-08-29" "2011-08-29" "2011-09-21" "2013-08-24"
## [16396] "2011-09-21" "2011-08-29" "2011-09-21" "2013-08-24" NA          
## [16401] "2013-12-20" "2013-06-24" "2013-09-13" "2013-12-20" "2013-06-24"
## [16406] NA           "2013-09-13" NA           "2013-03-25" "2013-03-25"
## [16411] "2013-03-25" NA           NA           NA           NA          
## [16416] "2013-03-17" NA           "2013-08-26" NA           "2013-03-17"
## [16421] "2013-08-26" "2013-03-17" "2013-03-17" NA           NA          
## [16426] NA           "2012-10-16" NA           "2012-10-20" NA          
## [16431] NA           NA           NA           "2012-10-20" "2012-10-16"
## [16436] NA           NA           NA           NA           NA          
## [16441] NA           NA           NA           NA           NA          
## [16446] NA           NA           "2011-02-17" NA           NA          
## [16451] "2011-09-26" "2011-09-26" NA           "2011-02-17" NA          
## [16456] NA           NA           NA           "2013-10-26" NA          
## [16461] NA           "2013-10-26" "2011-12-27" "2013-10-26" "2013-10-26"
## [16466] NA           NA           "2013-10-26" NA           "2013-10-26"
## [16471] NA           NA           NA           "2011-12-27" "2011-12-27"
## [16476] "2011-12-22" "2011-12-22" "2012-09-19" "2012-09-19" "2012-05-17"
## [16481] "2012-05-17" "2012-09-19" "2012-05-17" "2012-05-17" "2012-11-13"
## [16486] "2012-05-17" "2012-11-13" NA           NA           NA          
## [16491] NA           NA           NA           NA           NA          
## [16496] "2012-10-22" "2012-10-22" "2012-10-13" "2012-10-13" "2013-09-16"
## [16501] "2013-09-16" "2013-09-25" "2013-09-25" "2011-05-20" "2013-09-25"
## [16506] "2013-09-16" "2011-05-20" NA           "2012-08-23" "2012-08-23"
## [16511] NA           "2013-07-21" NA           "2013-07-21" "2013-07-21"
## [16516] "2013-07-21" "2013-07-21" "2013-07-21" "2014-01-15" "2014-01-15"
## [16521] "2012-11-15" "2012-11-15" "2012-01-26" "2012-01-26" "2012-11-25"
## [16526] "2014-01-15" "2012-01-26" "2012-01-26" "2012-11-15" "2012-02-21"
## [16531] "2012-11-25" "2012-01-26" "2012-11-25" "2012-02-21" "2012-02-21"
## [16536] "2012-11-25" "2012-02-21" "2012-11-25" "2012-11-15" "2012-02-21"
## [16541] "2012-11-15" "2012-02-21" NA           "2013-05-25" NA          
## [16546] NA           "2013-05-25" NA           "2012-07-27" NA          
## [16551] NA           NA           NA           NA           NA          
## [16556] "2013-03-23" "2013-03-23" "2012-07-27" NA           "2013-05-25"
## [16561] "2013-03-23" "2013-12-31" NA           NA           NA          
## [16566] NA           "2013-12-31" "2012-03-31" "2012-03-31" "2012-03-31"
## [16571] "2013-11-24" "2013-11-24" "2013-11-24" "2013-11-24" "2013-11-24"
## [16576] "2011-04-28" "2013-06-28" NA           NA           NA          
## [16581] "2011-04-28" "2011-04-28" "2013-06-28" "2014-01-24" "2011-10-13"
## [16586] "2011-10-13" "2011-10-13" "2011-10-13" "2011-10-19" "2011-10-13"
## [16591] "2011-10-19" "2011-10-19" "2014-01-24" "2011-10-19" "2011-10-19"
## [16596] "2011-10-19" "2012-02-27" "2011-10-19" "2011-10-19" "2011-10-19"
## [16601] "2012-02-27" "2012-02-27" NA           NA           "2011-03-15"
## [16606] "2011-03-15" "2011-03-15" "2011-03-15" "2011-03-15" "2011-03-15"
## [16611] NA           NA           NA           "2012-06-18" "2012-07-15"
## [16616] "2012-06-18" "2012-07-15" "2012-06-13" "2012-07-15" "2012-06-13"
## [16621] "2012-06-24" "2012-06-13" "2012-07-15" "2012-06-24" "2012-10-26"
## [16626] NA           "2012-10-26" "2012-10-26" "2011-02-21" "2012-10-26"
## [16631] "2011-02-21" NA           "2012-10-26" NA           "2013-03-31"
## [16636] "2013-03-31" "2013-03-31" "2013-03-31" NA           NA          
## [16641] NA           NA           NA           NA           NA          
## [16646] NA           NA           NA           "2012-10-13" "2012-10-13"
## [16651] "2012-07-26" "2012-10-13" "2012-07-26" "2012-08-20" "2012-08-20"
## [16656] "2012-07-26" NA           NA           NA           NA          
## [16661] NA           "2011-04-17" "2012-02-14" "2013-07-24" "2012-09-24"
## [16666] "2012-02-14" "2012-09-24" "2011-04-17" "2012-02-14" "2013-07-24"
## [16671] "2012-02-14" NA           "2014-01-24" NA           "2014-01-24"
## [16676] NA           NA           NA           NA           NA          
## [16681] NA           NA           "2013-12-15" "2013-12-15" "2013-12-15"
## [16686] "2013-12-15" "2013-12-15" "2013-07-31" "2013-07-31" "2013-07-31"
## [16691] "2011-01-28" "2011-12-19" "2011-12-19" "2011-01-28" "2011-12-19"
## [16696] "2011-03-20" "2011-03-20" NA           NA           NA          
## [16701] NA           NA           NA           NA           NA          
## [16706] NA           NA           NA           NA           NA          
## [16711] "2011-09-13" NA           "2011-09-30" "2011-09-13" NA          
## [16716] NA           "2011-09-30" NA           NA           NA          
## [16721] NA           NA           NA           NA           "2013-11-29"
## [16726] "2013-11-29" "2013-11-29" NA           "2012-07-24" NA          
## [16731] NA           NA           NA           NA           NA          
## [16736] "2012-07-24" NA           "2012-07-24" "2012-07-24" NA          
## [16741] "2012-07-24" NA           NA           NA           NA          
## [16746] "2013-05-21" "2013-04-26" NA           "2013-04-26" NA          
## [16751] "2013-04-26" "2013-04-26" "2013-05-21" NA           NA          
## [16756] NA           NA           "2013-05-21" NA           "2013-04-26"
## [16761] "2012-01-16" "2012-01-16" "2012-01-16" "2012-01-16" "2012-01-16"
## [16766] "2012-02-16" "2012-02-16" NA           NA           "2013-03-30"
## [16771] "2012-07-31" "2012-07-31" NA           NA           "2012-07-31"
## [16776] NA           "2013-03-30" "2011-06-21" "2013-08-30" "2012-07-21"
## [16781] NA           "2013-08-30" NA           "2012-07-21" "2013-06-28"
## [16786] "2013-06-28" "2013-06-28" "2011-06-21" "2013-08-30" "2011-06-21"
## [16791] "2011-06-21" NA           NA           "2013-06-28" "2013-06-28"
## [16796] NA           NA           NA           NA           NA          
## [16801] NA           NA           NA           NA           NA          
## [16806] NA           NA           NA           NA           NA          
## [16811] NA           NA           NA           "2012-10-16" NA          
## [16816] "2012-10-16" NA           NA           NA           "2012-08-27"
## [16821] "2012-08-27" "2012-09-23" "2012-09-23" "2012-08-27" "2013-02-17"
## [16826] "2013-02-17" "2012-08-18" "2012-08-18" "2011-11-14" "2012-08-18"
## [16831] "2012-08-18" NA           "2011-11-14" "2012-08-18" "2011-11-14"
## [16836] NA           NA           "2011-11-14" "2012-08-18" "2011-11-14"
## [16841] "2011-11-14" NA           NA           "2013-01-24" NA          
## [16846] NA           NA           "2013-01-24" NA           "2014-01-19"
## [16851] "2013-12-24" "2013-12-19" "2013-12-19" "2014-01-19" "2014-01-19"
## [16856] NA           NA           "2013-12-24" "2014-01-19" NA          
## [16861] NA           "2012-08-18" "2012-08-18" "2013-11-25" NA          
## [16866] NA           "2013-11-25" NA           "2012-08-18" NA          
## [16871] NA           NA           "2013-01-14" "2013-01-14" "2012-05-24"
## [16876] "2012-05-24" "2012-05-24" "2011-03-24" NA           NA          
## [16881] "2011-03-24" "2013-07-31" NA           NA           "2011-03-24"
## [16886] "2013-07-31" "2011-03-24" "2013-07-31" "2013-08-28" "2013-05-20"
## [16891] "2011-11-22" "2011-06-27" "2013-05-20" "2011-11-22" "2013-08-28"
## [16896] "2013-05-20" "2011-11-22" "2013-08-28" "2013-05-20" "2011-06-27"
## [16901] "2013-05-20" NA           NA           "2012-09-25" "2012-09-25"
## [16906] "2012-12-18" "2012-12-18" "2012-12-18" NA           NA          
## [16911] NA           NA           NA           NA           NA          
## [16916] NA           NA           NA           "2011-09-19" "2011-09-19"
## [16921] "2011-09-19" "2011-09-19" "2011-09-19" "2011-09-19" "2013-11-24"
## [16926] "2013-11-24" "2012-03-21" "2012-03-21" NA           "2013-11-24"
## [16931] NA           NA           NA           "2012-03-21" "2012-03-21"
## [16936] "2012-03-21" NA           NA           NA           NA          
## [16941] NA           NA           NA           NA           NA          
## [16946] NA           NA           NA           NA           NA          
## [16951] NA           "2011-09-25" "2011-09-25" "2011-09-25" NA          
## [16956] NA           NA           NA           NA           "2011-11-20"
## [16961] "2011-11-20" "2011-11-20" "2012-01-21" "2012-01-21" "2012-01-21"
## [16966] "2012-01-21" "2012-01-21" NA           NA           NA          
## [16971] NA           NA           NA           NA           NA          
## [16976] NA           "2013-01-20" "2011-09-17" "2011-09-17" "2011-09-17"
## [16981] "2012-06-21" "2012-06-21" "2011-09-17" "2013-01-20" "2013-01-20"
## [16986] "2011-07-18" "2011-07-18" "2013-01-20" "2013-01-20" "2012-06-15"
## [16991] "2013-10-31" "2011-07-18" "2013-10-31" "2011-07-18" "2011-07-18"
## [16996] "2012-06-15" "2012-02-22" "2012-02-22" "2012-02-22" "2012-02-22"
## [17001] "2012-02-22" "2013-07-25" "2013-07-25" NA           "2013-07-25"
## [17006] NA           NA           NA           "2013-07-25" NA          
## [17011] NA           NA           NA           "2013-05-17" NA          
## [17016] "2013-05-17" "2011-03-23" "2013-01-26" NA           NA          
## [17021] NA           NA           "2013-01-26" NA           "2011-03-23"
## [17026] "2013-05-17" "2011-03-23" "2014-01-16" "2014-01-16" NA          
## [17031] "2014-01-24" NA           NA           NA           "2014-01-24"
## [17036] NA           NA           NA           NA           NA          
## [17041] NA           "2011-01-29" NA           "2011-01-29" NA          
## [17046] "2011-01-29" "2011-01-29" NA           "2011-01-29" NA          
## [17051] "2011-01-29" NA           "2013-08-15" NA           "2013-08-15"
## [17056] "2012-07-18" "2012-07-18" "2013-10-21" "2012-07-18" NA          
## [17061] "2012-07-18" NA           "2012-07-18" "2013-12-28" "2011-12-29"
## [17066] "2011-12-29" NA           "2011-12-29" "2013-12-28" "2011-12-29"
## [17071] NA           "2013-10-21" "2011-12-29" "2013-12-28" NA          
## [17076] NA           NA           "2011-12-19" "2012-10-17" NA          
## [17081] NA           NA           NA           NA           NA          
## [17086] NA           NA           "2012-10-17" NA           "2011-12-19"
## [17091] "2011-12-19" "2012-10-17" NA           "2012-01-15" "2012-01-15"
## [17096] "2012-01-15" "2012-01-15" "2012-01-15" "2012-01-15" "2011-07-18"
## [17101] "2011-07-18" "2011-07-18" "2011-07-18" "2011-07-18" NA          
## [17106] NA           NA           NA           "2013-07-15" NA          
## [17111] NA           NA           "2013-07-15" NA           "2012-08-20"
## [17116] NA           "2012-08-20" NA           NA           NA          
## [17121] "2012-08-18" "2012-08-18" NA           NA           NA          
## [17126] NA           NA           "2013-12-17" NA           NA          
## [17131] "2013-12-17" NA           "2013-12-17" "2013-05-19" NA          
## [17136] "2013-05-19" NA           "2011-05-20" "2012-04-28" "2011-10-25"
## [17141] "2012-12-28" "2012-04-28" "2012-12-28" "2011-05-20" "2011-10-25"
## [17146] "2011-10-25" "2011-10-25" "2011-05-20" "2011-05-20" "2011-05-20"
## [17151] "2011-10-25" "2013-06-28" "2013-06-28" NA           NA          
## [17156] "2013-12-18" "2013-12-18" "2013-12-18" "2013-12-18" NA          
## [17161] NA           "2011-12-22" "2011-12-22" "2013-12-18" "2011-02-21"
## [17166] "2011-02-21" "2011-02-21" "2011-12-29" "2011-12-22" "2011-12-29"
## [17171] "2013-12-18" "2011-12-22" "2011-02-21" "2011-02-21" "2011-12-29"
## [17176] "2011-12-29" NA           NA           NA           NA          
## [17181] NA           NA           NA           NA           "2011-04-21"
## [17186] "2013-03-26" "2011-04-21" "2013-03-26" NA           "2011-04-21"
## [17191] NA           NA           "2011-01-31" "2011-01-31" NA          
## [17196] NA           NA           NA           NA           NA          
## [17201] NA           NA           NA           "2013-07-13" NA          
## [17206] NA           "2013-07-13" "2013-07-13" "2013-07-13" NA          
## [17211] NA           "2013-07-13" NA           "2012-01-16" NA          
## [17216] "2013-02-19" "2013-04-22" "2012-01-16" "2013-02-19" "2013-04-22"
## [17221] NA           NA           NA           NA           NA          
## [17226] NA           NA           NA           NA           NA          
## [17231] "2013-08-18" NA           "2013-08-18" NA           "2011-04-19"
## [17236] NA           "2011-04-19" "2011-04-19" NA           NA          
## [17241] "2011-04-19" NA           NA           NA           NA          
## [17246] NA           NA           NA           NA           NA          
## [17251] NA           NA           "2011-08-18" "2011-08-18" NA          
## [17256] "2013-11-28" "2013-11-28" "2011-08-18" "2011-08-18" "2011-08-18"
## [17261] NA           NA           NA           NA           NA          
## [17266] NA           NA           NA           NA           "2013-11-28"
## [17271] NA           NA           NA           "2012-11-13" NA          
## [17276] "2012-11-13" NA           "2012-11-13" "2012-11-13" NA          
## [17281] NA           NA           "2011-03-26" "2011-03-26" "2011-03-26"
## [17286] "2011-12-17" NA           "2011-12-17" "2011-12-17" NA          
## [17291] NA           "2013-05-16" "2011-08-15" "2011-08-15" "2011-08-15"
## [17296] "2013-05-16" "2011-08-15" "2011-08-15" "2013-01-23" "2013-01-19"
## [17301] NA           "2013-01-19" "2013-01-19" "2013-01-19" "2013-01-23"
## [17306] "2013-01-23" "2013-01-23" "2013-01-23" NA           "2013-01-19"
## [17311] "2012-10-27" "2012-10-27" "2012-10-24" "2012-10-17" "2012-10-27"
## [17316] "2012-10-24" "2012-10-17" NA           "2012-10-24" "2012-10-17"
## [17321] "2012-10-17" "2012-10-24" "2012-10-17" "2012-10-27" "2012-10-27"
## [17326] "2012-10-24" NA           "2011-01-25" "2011-01-25" NA          
## [17331] NA           NA           NA           NA           NA          
## [17336] NA           NA           NA           NA           NA          
## [17341] NA           NA           NA           NA           NA          
## [17346] NA           NA           NA           NA           "2013-07-29"
## [17351] NA           "2013-09-19" "2013-07-29" NA           NA          
## [17356] "2013-07-29" "2013-09-19" NA           "2013-09-19" "2013-06-30"
## [17361] NA           "2013-05-30" "2013-05-30" NA           "2013-06-30"
## [17366] "2013-07-29" "2013-07-29" "2013-05-30" "2011-04-26" "2011-05-30"
## [17371] "2011-04-26" "2011-05-30" "2011-05-30" "2012-04-26" "2011-05-30"
## [17376] "2011-04-26" "2011-04-26" "2011-05-30" "2011-04-26" "2012-04-26"
## [17381] NA           "2012-09-26" "2012-09-26" NA           NA          
## [17386] "2013-07-14" NA           "2013-07-14" "2013-07-14" "2013-07-14"
## [17391] NA           NA           "2013-07-14" "2013-07-14" NA          
## [17396] "2014-01-28" NA           NA           NA           NA          
## [17401] "2011-08-16" NA           "2011-08-16" "2014-01-28" "2014-01-28"
## [17406] NA           "2014-01-28" "2011-08-16" "2014-01-28" "2011-08-16"
## [17411] NA           "2011-08-16" "2011-08-16" "2011-09-19" "2013-06-29"
## [17416] "2011-09-14" "2013-06-29" "2011-09-14" "2011-09-19" "2011-09-19"
## [17421] "2011-09-14" "2011-09-19" "2011-09-14" "2013-03-26" "2013-03-26"
## [17426] "2012-06-27" "2013-03-26" "2012-06-27" "2013-12-24" "2012-02-17"
## [17431] "2012-02-17" NA           "2013-12-24" "2012-02-17" "2012-02-17"
## [17436] "2013-12-24" "2013-12-24" NA           "2013-12-24" NA          
## [17441] NA           NA           NA           NA           NA          
## [17446] NA           NA           NA           NA           "2012-04-17"
## [17451] "2012-04-17" "2012-04-17" "2011-06-13" NA           "2012-04-18"
## [17456] "2012-04-18" "2012-04-18" NA           "2011-06-13" "2012-04-18"
## [17461] "2012-04-17" NA           NA           NA           NA          
## [17466] "2011-12-22" "2011-12-22" "2011-11-27" "2011-11-27" "2011-11-27"
## [17471] "2013-08-26" "2011-08-30" "2011-08-30" "2013-08-26" "2013-08-26"
## [17476] "2013-04-25" "2011-10-30" "2011-08-30" "2011-10-30" "2013-04-25"
## [17481] "2011-10-30" "2013-04-25" "2011-10-30" NA           NA          
## [17486] NA           NA           NA           "2011-05-13" NA          
## [17491] "2011-05-13" NA           "2011-05-13" NA           NA          
## [17496] "2012-01-21" NA           "2012-01-21" NA           NA          
## [17501] NA           "2012-04-17" "2012-04-17" "2013-06-23" NA          
## [17506] "2012-02-20" "2013-06-23" "2013-06-28" NA           "2012-02-20"
## [17511] "2013-06-28" "2012-02-20" NA           NA           "2011-02-26"
## [17516] "2011-02-26" "2011-02-26" NA           "2011-02-26" NA          
## [17521] "2012-07-14" "2012-07-14" NA           "2011-02-26" NA          
## [17526] NA           NA           NA           NA           NA          
## [17531] NA           NA           NA           NA           NA          
## [17536] NA           NA           NA           "2013-11-13" "2013-11-13"
## [17541] "2013-11-13" "2013-11-13" NA           NA           NA          
## [17546] NA           NA           NA           "2013-07-24" "2013-07-24"
## [17551] "2013-07-24" NA           NA           NA           NA          
## [17556] NA           NA           NA           NA           NA          
## [17561] NA           NA           "2012-06-23" NA           NA          
## [17566] "2012-06-23" NA           "2012-02-17" "2012-02-17" "2011-11-27"
## [17571] "2011-11-27" "2012-10-15" NA           NA           "2011-07-17"
## [17576] "2012-10-15" "2012-02-17" NA           "2011-11-27" "2011-07-17"
## [17581] NA           "2011-11-27" "2011-11-27" NA           NA          
## [17586] "2012-10-15" "2011-07-17" NA           NA           "2012-06-25"
## [17591] NA           NA           NA           NA           NA          
## [17596] NA           NA           "2012-06-25" NA           NA          
## [17601] NA           NA           NA           "2011-02-21" "2011-10-30"
## [17606] "2011-10-30" "2011-02-21" "2011-10-30" "2011-10-30" "2011-10-30"
## [17611] NA           "2011-03-20" "2011-03-20" "2011-03-20" "2011-03-20"
## [17616] "2011-03-14" "2011-03-14" "2011-03-14" "2011-03-14" NA          
## [17621] "2011-03-14" "2011-03-20" NA           NA           NA          
## [17626] NA           "2012-11-19" NA           NA           NA          
## [17631] "2012-11-19" NA           "2012-11-19" "2012-06-28" "2013-08-29"
## [17636] "2012-06-28" "2012-06-28" "2013-08-29" "2013-08-29" "2012-06-28"
## [17641] "2011-05-30" "2011-05-30" "2011-05-30" "2013-08-23" "2013-08-23"
## [17646] "2013-08-23" "2013-10-20" "2013-10-20" "2013-10-20" "2013-04-22"
## [17651] "2011-07-23" "2013-04-22" "2011-07-23" "2013-10-20" "2011-07-23"
## [17656] "2013-10-20" NA           NA           NA           NA          
## [17661] NA           NA           NA           NA           NA          
## [17666] "2011-02-24" "2011-02-24" "2011-02-24" "2011-02-24" "2011-02-24"
## [17671] "2011-02-24" NA           "2013-11-25" NA           NA          
## [17676] "2013-11-25" "2013-05-21" "2013-05-21" "2013-05-21" "2011-09-24"
## [17681] NA           "2013-05-21" "2011-09-24" NA           NA          
## [17686] "2011-09-24" NA           NA           NA           NA          
## [17691] NA           NA           NA           NA           NA          
## [17696] "2013-10-19" "2013-10-19" "2011-06-29" "2013-10-19" "2011-06-29"
## [17701] NA           NA           NA           NA           NA          
## [17706] NA           NA           NA           NA           NA          
## [17711] NA           NA           "2011-07-28" "2011-07-28" NA          
## [17716] NA           NA           NA           NA           NA          
## [17721] "2012-10-13" "2012-10-13" "2011-04-25" "2012-10-13" NA          
## [17726] NA           NA           "2011-04-25" NA           "2011-04-25"
## [17731] "2011-04-25" "2011-04-25" "2012-10-13" NA           NA          
## [17736] "2013-09-26" "2013-09-26" "2013-09-26" NA           "2013-09-26"
## [17741] "2013-09-26" NA           NA           "2013-09-26" "2011-06-30"
## [17746] NA           "2011-06-30" "2012-06-29" "2012-06-29" "2013-07-19"
## [17751] "2013-07-19" "2013-07-19" "2012-11-16" "2012-11-16" "2012-11-16"
## [17756] "2012-11-16" "2012-11-16" "2012-03-15" "2012-11-16" "2012-03-15"
## [17761] "2014-01-28" "2014-01-28" "2014-01-28" "2012-07-16" "2012-07-21"
## [17766] "2012-07-16" "2012-07-21" "2012-07-21" "2012-07-16" "2012-07-16"
## [17771] "2011-08-22" "2012-07-16" "2011-08-22" "2011-08-22" "2014-02-16"
## [17776] "2011-08-22" "2011-08-22" "2012-07-21" "2012-07-21" "2014-02-16"
## [17781] "2011-08-22" NA           NA           NA           NA          
## [17786] NA           NA           NA           NA           NA          
## [17791] NA           NA           NA           "2012-11-17" "2012-11-17"
## [17796] "2012-11-17" "2012-11-17" NA           NA           "2012-11-17"
## [17801] "2012-11-17" NA           "2011-02-18" "2013-02-16" "2011-02-18"
## [17806] "2011-02-18" "2013-02-16" "2013-02-16" "2013-02-16" "2011-02-18"
## [17811] "2011-02-18" "2013-02-16" "2011-02-18" "2013-04-29" "2013-04-29"
## [17816] "2013-10-31" "2013-10-31" "2013-10-31" NA           NA          
## [17821] NA           "2013-04-29" NA           NA           "2013-08-13"
## [17826] "2012-08-21" "2012-08-21" NA           "2011-03-16" "2012-08-21"
## [17831] "2012-08-21" "2011-03-16" "2011-03-16" "2013-08-13" "2011-03-16"
## [17836] "2012-08-21" NA           NA           "2012-08-21" "2011-03-16"
## [17841] NA           "2011-03-16" NA           NA           NA          
## [17846] NA           "2011-12-22" NA           "2011-12-22" "2011-08-28"
## [17851] NA           "2013-07-14" NA           "2011-08-28" "2011-08-28"
## [17856] NA           "2011-12-22" "2013-07-14" "2011-12-22" "2011-08-28"
## [17861] NA           NA           "2011-08-28" "2011-12-22" "2012-11-14"
## [17866] "2012-11-15" "2012-11-15" NA           "2012-11-14" NA          
## [17871] NA           "2011-11-27" NA           "2011-11-27" "2011-11-27"
## [17876] "2011-11-27" NA           NA           "2011-11-27" "2011-11-27"
## [17881] "2011-11-27" NA           NA           NA           "2013-12-17"
## [17886] "2013-12-17" NA           "2013-12-17" "2013-12-17" "2013-12-17"
## [17891] NA           NA           NA           NA           "2012-06-13"
## [17896] "2012-06-13" "2013-10-27" "2013-10-27" "2012-06-13" NA          
## [17901] NA           NA           "2012-03-31" "2012-03-31" "2012-03-31"
## [17906] "2012-03-31" "2012-03-31" NA           NA           NA          
## [17911] "2011-08-21" "2012-03-15" "2012-07-18" "2012-03-15" "2011-08-21"
## [17916] "2012-07-18" "2011-08-21" "2012-03-15" "2012-07-18" "2012-07-18"
## [17921] "2012-06-24" "2012-06-24" "2012-06-24" "2011-11-28" "2011-11-28"
## [17926] "2012-06-24" "2011-07-19" "2011-07-19" "2013-08-23" "2013-08-23"
## [17931] "2013-08-23" "2011-11-28" "2012-06-24" "2013-08-23" "2011-11-28"
## [17936] "2013-08-23" "2012-12-16" "2012-12-16" NA           "2013-08-27"
## [17941] "2013-08-27" "2012-12-16" "2012-12-16" "2013-08-27" NA          
## [17946] NA           NA           NA           NA           NA          
## [17951] "2012-12-16" NA           NA           "2013-08-27" NA          
## [17956] "2013-08-27" NA           NA           NA           NA          
## [17961] NA           NA           NA           NA           "2012-05-28"
## [17966] NA           "2012-08-14" NA           "2012-05-28" "2012-08-14"
## [17971] NA           NA           "2012-05-28" NA           "2012-05-28"
## [17976] NA           NA           "2012-05-28" "2012-03-27" "2012-12-20"
## [17981] "2012-12-20" NA           "2012-03-27" NA           "2012-03-27"
## [17986] "2012-03-27" "2012-03-27" NA           "2012-03-27" NA          
## [17991] "2011-10-29" "2011-10-29" NA           "2011-05-28" NA          
## [17996] "2011-05-28" "2011-02-17" "2011-02-17" "2011-10-29" NA          
## [18001] NA           "2011-10-29" NA           NA           "2011-02-17"
## [18006] NA           "2011-10-29" "2011-10-29" NA           NA          
## [18011] NA           NA           NA           NA           NA          
## [18016] "2013-06-17" "2013-06-17" "2013-06-17" NA           "2011-03-22"
## [18021] "2011-03-22" NA           "2011-03-24" "2011-03-23" "2011-03-24"
## [18026] NA           "2011-03-23" NA           "2013-03-22" "2014-02-16"
## [18031] "2014-02-16" "2013-03-22" "2013-03-22" "2013-03-22" NA          
## [18036] NA           "2013-03-22" NA           NA           NA          
## [18041] NA           "2012-08-22" "2012-08-22" "2012-08-22" "2012-08-22"
## [18046] "2012-08-22" NA           "2013-02-16" NA           "2013-02-16"
## [18051] "2013-02-16" NA           NA           NA           NA          
## [18056] NA           "2013-02-16" "2013-02-16" NA           NA          
## [18061] NA           NA           "2011-02-25" "2011-02-25" "2012-11-14"
## [18066] "2011-02-25" "2012-11-14" "2013-08-30" "2013-08-30" "2011-02-25"
## [18071] "2012-11-14" "2012-08-24" "2012-08-24" "2012-08-24" "2012-08-24"
## [18076] "2012-07-25" "2012-07-25" NA           NA           NA          
## [18081] NA           NA           NA           NA           NA          
## [18086] NA           NA           NA           NA           NA          
## [18091] NA           NA           NA           NA           NA          
## [18096] NA           NA           NA           NA           NA          
## [18101] "2011-06-25" NA           NA           "2011-06-25" NA          
## [18106] NA           "2011-06-25" NA           "2014-01-16" "2013-09-22"
## [18111] NA           NA           "2013-09-22" NA           "2013-09-22"
## [18116] "2013-09-22" "2014-01-16" "2013-07-28" "2013-07-28" "2013-07-28"
## [18121] "2013-07-28" "2012-09-13" "2013-07-28" "2012-09-13" "2013-12-14"
## [18126] NA           NA           "2013-12-14" "2013-12-24" "2013-12-14"
## [18131] "2013-12-24" NA           "2013-12-21" "2013-12-21" "2013-12-21"
## [18136] "2013-12-24" NA           NA           "2012-12-20" "2012-12-20"
## [18141] "2011-08-28" "2012-06-30" "2012-06-30" "2012-12-20" "2012-12-20"
## [18146] "2011-08-28" "2012-06-30" "2012-06-30" "2012-06-30" "2012-12-20"
## [18151] "2011-09-24" "2011-09-24" "2011-12-21" "2011-12-21" "2011-07-15"
## [18156] "2011-07-24" "2011-07-15" "2011-07-24" "2011-07-15" "2011-07-24"
## [18161] "2011-07-24" "2011-07-24" "2011-02-25" "2011-07-15" "2011-07-15"
## [18166] "2011-02-25" NA           "2012-09-14" "2012-09-14" NA          
## [18171] NA           "2012-09-14" NA           NA           NA          
## [18176] NA           NA           NA           NA           NA          
## [18181] NA           NA           NA           NA           NA          
## [18186] NA           NA           "2011-02-25" "2011-02-25" "2011-02-25"
## [18191] "2011-02-25" "2012-07-15" "2012-07-15" "2011-02-25" NA          
## [18196] "2012-07-15" "2012-07-15" "2012-07-15" NA           NA          
## [18201] "2011-10-26" NA           "2013-07-24" "2013-07-24" NA          
## [18206] NA           "2013-07-24" "2011-10-26" "2012-12-22" "2012-12-22"
## [18211] "2012-12-22" "2011-07-26" "2011-07-25" "2011-07-25" "2012-12-22"
## [18216] "2011-07-26" "2012-01-18" NA           "2012-01-20" NA          
## [18221] NA           "2012-01-18" "2012-01-20" "2012-12-26" "2012-01-18"
## [18226] "2012-12-26" NA           "2012-12-26" "2012-01-20" NA          
## [18231] "2013-05-16" "2013-05-16" "2013-05-16" NA           "2011-09-30"
## [18236] "2011-09-30" "2011-09-30" "2013-05-16" NA           NA          
## [18241] "2011-09-30" "2011-09-30" NA           NA           NA          
## [18246] NA           NA           "2011-08-20" NA           "2011-08-20"
## [18251] NA           "2011-08-20" "2012-05-24" NA           NA          
## [18256] "2011-02-18" "2011-02-18" NA           NA           "2013-02-16"
## [18261] NA           "2012-05-24" "2012-05-24" NA           "2011-02-18"
## [18266] "2013-02-16" "2011-09-20" "2011-09-20" "2011-12-30" "2011-12-30"
## [18271] "2011-12-30" "2011-12-30" "2011-09-20" NA           "2011-03-29"
## [18276] "2011-12-13" NA           "2011-03-29" NA           NA          
## [18281] NA           NA           NA           "2011-12-14" NA          
## [18286] "2011-03-29" "2011-12-13" "2011-12-14" "2011-12-14" NA          
## [18291] NA           "2011-12-13" NA           "2011-08-28" "2011-08-28"
## [18296] NA           NA           NA           NA           "2011-04-21"
## [18301] "2011-04-21" NA           NA           "2011-04-21" "2012-12-30"
## [18306] "2012-12-30" "2012-12-30" "2012-12-30" "2012-12-30" NA          
## [18311] "2013-05-30" "2013-05-30" NA           "2014-02-13" "2014-02-13"
## [18316] NA           NA           "2012-09-14" "2013-11-14" "2013-11-14"
## [18321] "2013-11-14" "2013-11-14" "2013-11-14" "2012-09-14" NA          
## [18326] NA           "2012-04-20" NA           NA           "2012-04-20"
## [18331] "2012-04-20" NA           NA           NA           NA          
## [18336] NA           "2012-04-20" "2013-04-19" "2012-04-20" "2013-04-19"
## [18341] NA           NA           NA           "2012-01-31" NA          
## [18346] NA           "2012-01-31" NA           "2013-09-17" "2013-09-17"
## [18351] "2011-07-14" NA           NA           "2011-07-14" "2011-07-14"
## [18356] "2011-07-14" "2011-07-14" "2012-12-16" "2012-12-16" "2012-12-16"
## [18361] "2012-12-16" "2012-12-16" "2012-12-16" "2013-08-31" "2014-01-19"
## [18366] "2013-08-31" "2013-08-31" "2013-08-31" "2014-01-19" "2014-01-19"
## [18371] "2013-08-31" NA           NA           NA           "2012-09-27"
## [18376] NA           NA           "2012-09-27" "2012-10-22" "2012-10-22"
## [18381] "2012-09-27" NA           NA           NA           NA          
## [18386] NA           NA           NA           NA           "2012-01-27"
## [18391] "2011-05-24" "2011-05-24" "2011-10-19" "2012-01-27" "2012-01-27"
## [18396] "2011-05-24" "2011-05-24" "2011-10-19" "2011-10-19" "2011-05-24"
## [18401] NA           NA           "2011-09-14" NA           "2011-09-14"
## [18406] "2011-09-14" NA           "2011-09-14" "2011-09-14" NA          
## [18411] NA           NA           NA           NA           NA          
## [18416] NA           NA           NA           NA           NA          
## [18421] NA           NA           NA           NA           NA          
## [18426] "2012-12-22" "2012-12-22" "2012-12-22" "2012-12-22" "2012-12-22"
## [18431] "2012-12-22" NA           "2014-01-29" "2012-08-20" "2014-01-29"
## [18436] "2012-01-30" "2012-08-20" "2012-01-30" "2012-08-20" "2013-03-27"
## [18441] "2012-01-30" NA           "2012-08-20" "2014-01-29" "2013-03-27"
## [18446] "2012-08-20" "2013-03-27" NA           "2013-12-22" "2013-12-22"
## [18451] "2012-05-14" "2013-12-22" "2013-12-22" "2013-12-22" "2012-05-14"
## [18456] NA           "2013-12-22" "2012-05-14" "2012-05-14" NA          
## [18461] "2012-11-14" "2011-02-13" "2012-11-14" NA           NA          
## [18466] NA           "2012-11-14" NA           NA           NA          
## [18471] NA           "2012-07-30" "2012-11-14" NA           NA          
## [18476] "2011-02-13" "2012-07-30" "2011-02-13" NA           NA          
## [18481] "2012-07-30" "2012-07-30" NA           NA           NA          
## [18486] NA           NA           "2011-07-24" "2011-07-24" "2011-07-24"
## [18491] "2011-07-24" NA           NA           NA           NA          
## [18496] NA           NA           "2011-02-28" "2013-06-15" "2013-06-15"
## [18501] "2011-02-28" "2013-06-15" "2011-02-19" "2011-02-28" "2011-02-28"
## [18506] "2013-06-15" "2011-02-19" "2013-06-15" "2011-02-19" "2011-02-19"
## [18511] "2011-09-24" "2011-09-24" "2011-09-24" "2011-12-30" "2011-12-30"
## [18516] "2011-12-30" NA           NA           NA           NA          
## [18521] NA           "2011-12-30" NA           NA           "2011-12-30"
## [18526] NA           NA           NA           NA           NA          
## [18531] NA           NA           NA           NA           NA          
## [18536] "2012-08-23" "2012-08-23" "2012-08-23" "2012-08-23" "2012-08-23"
## [18541] "2012-08-21" "2012-08-21" "2013-02-22" "2012-08-21" "2013-02-22"
## [18546] "2013-02-22" "2013-02-22" "2012-08-21" "2012-08-21" "2013-02-22"
## [18551] "2013-01-13" "2013-01-13" "2013-06-22" "2013-06-22" "2013-01-13"
## [18556] "2013-06-22" "2013-06-22" "2013-06-22" NA           NA          
## [18561] NA           NA           NA           NA           NA          
## [18566] NA           NA           "2013-02-20" "2013-02-20" "2012-09-17"
## [18571] "2012-09-17" NA           "2012-09-17" "2013-02-20" NA          
## [18576] NA           "2012-09-17" "2013-02-20" NA           "2013-02-20"
## [18581] NA           NA           NA           NA           "2012-11-26"
## [18586] "2013-11-15" "2013-11-15" NA           NA           "2013-11-15"
## [18591] NA           "2013-11-15" "2012-11-26" "2012-11-26" "2013-11-15"
## [18596] "2013-10-30" "2012-09-28" "2013-10-30" "2012-09-28" "2012-09-28"
## [18601] "2014-02-13" "2014-02-13" "2012-07-21" NA           NA          
## [18606] "2012-07-21" NA           "2012-07-21" "2013-08-17" "2012-12-14"
## [18611] "2012-12-14" "2013-08-17" "2013-08-17" "2012-12-14" "2012-07-21"
## [18616] "2012-07-21" "2013-08-17" NA           "2013-08-17" "2014-01-19"
## [18621] "2014-01-14" "2014-01-14" "2014-01-14" "2014-01-19" "2014-01-19"
## [18626] NA           "2013-09-24" NA           NA           NA          
## [18631] "2013-09-24" "2013-09-24" "2013-09-24" "2013-09-24" NA          
## [18636] "2011-08-31" "2011-08-31" NA           "2011-02-15" NA          
## [18641] "2011-08-31" "2011-02-15" "2011-08-31" "2011-02-15" "2011-08-31"
## [18646] "2013-06-29" NA           "2013-06-29" "2013-06-29" NA          
## [18651] "2011-03-13" "2011-03-13" "2013-06-29" "2013-06-29" "2013-06-29"
## [18656] "2013-05-13" "2013-05-13" "2013-05-13" "2013-05-13" "2013-05-13"
## [18661] "2011-06-22" "2011-06-22" "2011-06-22" "2012-11-27" "2012-11-17"
## [18666] "2012-11-17" "2012-11-17" "2012-11-27" "2012-11-27" "2012-01-17"
## [18671] "2012-01-17" NA           NA           "2012-01-17" "2012-01-17"
## [18676] "2012-01-17" NA           "2013-04-30" "2013-04-30" "2013-04-18"
## [18681] "2013-04-30" "2013-04-30" "2013-04-18" "2013-04-18" "2012-12-20"
## [18686] "2012-12-20" "2012-12-20" "2012-12-20" "2012-12-20" "2013-06-19"
## [18691] "2013-06-19" "2013-06-19" "2012-06-28" "2012-06-28" "2013-06-26"
## [18696] "2013-06-26" "2011-10-30" "2011-10-30" "2011-10-30" "2013-06-26"
## [18701] "2013-06-26" "2011-10-30" "2011-10-30" "2013-09-22" "2013-09-22"
## [18706] "2012-07-22" NA           NA           "2012-07-22" "2012-07-22"
## [18711] NA           NA           "2012-07-22" NA           NA          
## [18716] "2012-07-22" NA           NA           NA           NA          
## [18721] NA           NA           "2011-03-26" NA           "2011-03-26"
## [18726] "2011-03-26" NA           "2011-03-26" "2011-03-26" NA          
## [18731] "2012-10-19" NA           NA           NA           NA          
## [18736] "2012-10-19" "2012-10-19" "2012-10-19" NA           "2012-10-19"
## [18741] NA           NA           NA           "2012-11-16" NA          
## [18746] "2012-11-16" NA           "2013-12-21" "2013-12-21" "2013-12-21"
## [18751] "2013-12-21" NA           "2013-12-21" NA           "2012-11-16"
## [18756] "2012-11-16" "2012-11-16" NA           "2012-07-22" "2012-07-22"
## [18761] "2012-07-24" "2012-05-18" "2012-07-24" "2012-07-24" "2012-07-22"
## [18766] "2012-05-18" "2012-07-22" "2012-07-24" NA           "2012-07-24"
## [18771] "2014-01-30" "2014-01-30" NA           "2012-07-22" "2011-06-27"
## [18776] "2011-06-27" "2014-02-16" "2014-02-16" NA           "2011-05-19"
## [18781] NA           NA           NA           "2011-05-19" NA          
## [18786] NA           NA           NA           "2011-12-15" "2011-05-19"
## [18791] "2011-12-15" NA           NA           NA           NA          
## [18796] "2011-02-22" NA           NA           "2011-02-16" NA          
## [18801] NA           "2011-02-22" "2011-02-16" "2011-02-28" "2011-02-19"
## [18806] "2011-02-19" "2011-02-19" "2013-04-21" "2011-02-28" "2011-02-28"
## [18811] "2011-02-19" "2011-02-28" "2011-02-19" "2013-04-21" "2011-02-28"
## [18816] "2013-04-21" NA           NA           NA           NA          
## [18821] NA           NA           NA           NA           NA          
## [18826] "2012-10-19" "2012-10-19" "2012-10-19" "2011-10-27" "2012-10-19"
## [18831] "2012-10-19" "2011-10-27" "2012-08-17" NA           NA          
## [18836] "2012-08-17" "2012-08-17" "2012-08-17" "2012-08-17" NA          
## [18841] NA           NA           NA           NA           NA          
## [18846] NA           NA           "2013-03-20" "2013-03-20" "2013-03-20"
## [18851] NA           "2011-12-18" NA           NA           "2011-12-18"
## [18856] "2011-12-18" NA           NA           NA           NA          
## [18861] "2011-12-17" NA           "2011-12-17" "2011-12-17" "2012-10-19"
## [18866] "2012-10-16" "2012-10-16" "2012-10-16" "2012-10-19" "2012-10-19"
## [18871] "2012-11-20" NA           NA           "2012-11-20" "2013-01-15"
## [18876] "2013-08-14" "2013-08-14" "2013-08-14" "2013-01-15" "2013-01-15"
## [18881] NA           NA           "2013-08-14" "2013-08-14" "2013-01-15"
## [18886] "2013-01-15" "2011-06-26" NA           NA           "2011-06-26"
## [18891] "2011-06-26" NA           "2013-08-21" NA           NA          
## [18896] "2013-08-21" "2011-06-26" "2011-06-26" "2012-07-31" "2012-07-31"
## [18901] NA           NA           NA           NA           NA          
## [18906] NA           NA           NA           NA           NA          
## [18911] NA           NA           NA           NA           NA          
## [18916] NA           "2011-08-16" "2011-08-16" NA           NA          
## [18921] "2012-10-19" "2012-10-19" "2012-10-28" "2012-10-19" "2012-10-19"
## [18926] "2012-10-19" "2012-10-28" "2012-10-28" "2012-10-28" "2012-10-28"
## [18931] "2012-10-19" "2012-10-28" "2013-04-25" "2013-04-25" "2013-04-25"
## [18936] "2013-04-25" "2013-05-14" "2013-04-25" "2013-05-14" "2013-05-14"
## [18941] "2012-07-23" "2012-07-23" "2012-07-24" "2012-07-24" "2012-07-24"
## [18946] "2012-07-24" NA           NA           "2012-07-23" "2012-07-24"
## [18951] "2011-09-24" NA           "2011-09-24" NA           NA          
## [18956] NA           "2012-11-28" "2012-11-28" NA           "2012-11-28"
## [18961] "2012-11-28" "2013-07-16" "2012-11-28" NA           "2013-07-16"
## [18966] "2011-11-22" "2012-10-20" "2012-10-21" "2011-11-22" "2012-10-21"
## [18971] "2012-10-21" "2011-11-22" NA           "2012-10-20" "2012-10-21"
## [18976] NA           "2011-11-22" NA           "2012-05-30" "2012-05-30"
## [18981] "2012-05-30" "2011-09-13" "2013-12-20" NA           NA          
## [18986] "2012-05-30" NA           NA           NA           "2013-12-20"
## [18991] NA           "2013-12-20" "2013-12-20" "2011-09-13" NA          
## [18996] NA           "2011-11-13" NA           "2011-11-13" "2013-12-20"
## [19001] "2012-04-28" NA           "2011-12-16" "2012-04-28" "2011-12-16"
## [19006] NA           "2011-12-29" NA           NA           "2011-12-29"
## [19011] "2011-11-17" "2011-11-17" "2011-11-17" "2011-11-17" "2011-11-17"
## [19016] NA           NA           NA           NA           NA          
## [19021] NA           NA           NA           NA           NA          
## [19026] "2011-05-25" NA           "2011-05-25" NA           NA          
## [19031] NA           NA           NA           NA           "2011-05-25"
## [19036] "2011-11-22" "2011-03-21" "2011-03-21" "2011-11-22" "2011-11-22"
## [19041] "2011-11-22" "2011-11-22" "2011-09-22" "2011-09-22" "2011-09-22"
## [19046] "2011-06-13" NA           "2012-04-13" NA           NA          
## [19051] "2012-04-13" "2012-04-13" NA           "2011-06-13" NA          
## [19056] "2012-04-13" NA           NA           NA           NA          
## [19061] NA           NA           NA           NA           NA          
## [19066] "2011-06-13" "2011-06-13" "2012-04-13" "2011-06-13" NA          
## [19071] "2012-10-13" "2013-02-16" "2012-10-13" NA           "2013-02-16"
## [19076] NA           "2013-02-16" "2014-01-26" NA           "2012-09-29"
## [19081] "2013-07-29" NA           "2014-01-26" NA           NA          
## [19086] NA           "2012-09-19" "2014-01-26" "2014-01-26" "2012-09-29"
## [19091] "2012-09-19" "2012-09-29" "2013-07-29" "2014-01-26" "2013-07-29"
## [19096] "2012-09-19" NA           "2013-09-16" "2011-12-13" "2013-09-16"
## [19101] "2013-09-16" "2013-09-16" "2014-02-28" "2014-02-28" "2013-09-16"
## [19106] "2011-12-13" "2011-12-13" "2014-02-20" "2014-02-28" "2011-12-13"
## [19111] "2014-02-20" "2014-02-20" NA           NA           NA          
## [19116] NA           "2013-08-29" NA           NA           "2013-08-29"
## [19121] "2012-01-22" NA           "2012-01-22" "2012-01-22" "2013-06-15"
## [19126] NA           NA           "2013-06-15" "2013-06-15" NA          
## [19131] "2013-08-30" NA           NA           NA           "2013-08-30"
## [19136] NA           "2012-06-14" "2012-06-14" NA           NA          
## [19141] NA           NA           NA           "2013-08-30" "2012-06-14"
## [19146] NA           NA           NA           NA           NA          
## [19151] NA           NA           NA           "2012-07-26" NA          
## [19156] NA           NA           "2012-07-26" NA           "2012-07-26"
## [19161] "2012-07-26" NA           "2012-07-26" NA           "2012-07-27"
## [19166] "2012-07-27" "2013-10-31" "2012-10-18" "2013-10-31" "2012-10-18"
## [19171] "2012-04-18" NA           "2012-04-18" "2012-04-18" "2012-04-18"
## [19176] NA           "2012-04-18" NA           NA           NA          
## [19181] NA           NA           "2014-01-13" NA           NA          
## [19186] "2014-01-13" "2014-01-13" NA           "2011-11-13" "2011-11-13"
## [19191] "2012-10-26" "2012-10-26" NA           "2011-10-19" NA          
## [19196] "2011-10-19" NA           NA           "2013-01-23" "2013-01-23"
## [19201] "2013-01-23" "2013-01-23" NA           NA           NA          
## [19206] "2013-01-23" "2013-03-24" "2013-02-19" "2013-02-19" "2013-02-19"
## [19211] "2013-03-24" NA           "2013-04-29" NA           "2013-02-19"
## [19216] NA           "2013-04-29" "2013-03-24" NA           NA          
## [19221] NA           "2013-02-19" "2013-03-24" "2013-10-27" "2013-10-28"
## [19226] "2013-10-27" "2013-10-27" "2011-01-30" "2011-01-30" "2011-01-30"
## [19231] "2013-10-28" "2012-06-16" "2012-08-26" "2012-08-26" "2011-01-30"
## [19236] "2013-10-28" "2012-06-16" "2012-08-26" "2011-01-30" "2013-12-27"
## [19241] "2012-08-23" "2012-08-23" "2012-08-23" "2013-12-27" "2013-12-27"
## [19246] "2012-08-23" "2011-02-18" "2011-08-16" "2011-02-18" "2011-08-16"
## [19251] NA           NA           NA           "2014-02-27" "2014-02-20"
## [19256] "2014-02-27" NA           NA           NA           "2014-02-20"
## [19261] "2013-06-25" "2014-02-27" "2014-02-27" "2014-02-27" "2011-02-17"
## [19266] "2014-02-27" "2014-02-20" "2014-02-20" "2013-10-26" "2013-06-25"
## [19271] "2011-02-17" "2014-02-20" "2014-02-20" "2013-06-25" "2013-10-26"
## [19276] "2013-10-26" "2013-03-22" "2013-11-18" NA           NA          
## [19281] "2013-03-22" "2013-03-22" "2013-03-22" "2013-11-18" "2013-11-18"
## [19286] "2013-11-18" NA           "2013-11-18" NA           "2013-03-22"
## [19291] NA           NA           NA           "2013-07-20" "2013-07-20"
## [19296] "2013-11-18" NA           NA           NA           "2011-10-25"
## [19301] "2013-04-29" "2012-07-23" "2013-04-29" "2011-10-25" "2011-10-25"
## [19306] "2012-07-23" "2013-08-23" NA           NA           "2013-08-23"
## [19311] "2011-07-19" "2011-07-19" "2011-07-19" NA           NA          
## [19316] "2011-03-20" "2011-01-25" "2011-01-25" "2011-03-20" "2012-11-18"
## [19321] "2011-01-25" "2011-01-25" "2012-11-18" "2011-01-25" "2011-03-20"
## [19326] "2012-11-18" "2012-01-22" "2012-10-16" "2011-05-30" "2011-05-30"
## [19331] "2012-01-22" "2012-10-16" NA           "2012-10-16" "2012-01-22"
## [19336] "2012-01-22" "2011-05-30" "2012-10-16" "2012-01-22" NA          
## [19341] NA           "2011-07-24" "2012-11-15" "2012-11-15" "2012-11-15"
## [19346] "2011-07-24" "2011-07-24" "2011-07-24" "2012-11-15" "2011-07-24"
## [19351] "2012-11-15" "2011-07-24" "2011-12-28" "2012-06-24" "2012-06-24"
## [19356] "2011-12-28" "2011-08-20" "2014-01-26" "2014-01-26" "2011-08-20"
## [19361] "2014-01-18" "2014-01-18" NA           NA           NA          
## [19366] "2014-01-24" "2014-01-24" NA           NA           "2011-11-19"
## [19371] "2011-03-17" "2013-10-15" "2011-03-17" NA           NA          
## [19376] "2013-10-15" "2013-10-15" NA           NA           NA          
## [19381] "2011-11-19" NA           "2011-11-19" NA           NA          
## [19386] NA           NA           NA           NA           "2011-07-27"
## [19391] "2011-09-30" "2012-03-23" NA           "2013-06-26" "2012-03-23"
## [19396] "2011-09-30" NA           "2013-09-14" "2013-09-14" "2013-06-26"
## [19401] "2011-07-27" NA           NA           NA           "2012-03-23"
## [19406] "2012-03-23" NA           "2012-03-23" "2011-07-27" "2011-07-27"
## [19411] "2012-03-23" "2011-07-27" NA           "2011-11-18" "2013-12-27"
## [19416] NA           NA           "2013-12-27" NA           NA          
## [19421] "2011-11-18" NA           NA           "2013-12-27" "2011-08-24"
## [19426] "2012-08-30" "2011-08-24" "2011-10-25" NA           "2012-08-30"
## [19431] "2011-08-30" "2011-10-25" "2011-08-30" NA           "2011-10-25"
## [19436] "2012-10-14" "2012-10-14" "2012-10-14" "2012-10-14" "2012-10-14"
## [19441] NA           NA           "2012-10-14" "2012-12-16" NA          
## [19446] "2012-12-16" NA           NA           NA           "2012-12-16"
## [19451] NA           NA           "2014-01-20" "2012-02-13" "2012-02-13"
## [19456] "2012-02-13" NA           NA           NA           NA          
## [19461] "2012-02-13" "2012-02-13" NA           "2014-01-20" "2014-01-20"
## [19466] "2012-07-14" "2012-07-14" "2012-07-14" "2012-07-14" "2012-07-14"
## [19471] NA           NA           NA           "2013-04-30" "2013-04-30"
## [19476] "2012-06-21" NA           "2013-04-30" "2013-04-30" NA          
## [19481] "2012-06-21" NA           "2013-04-30" NA           "2013-12-23"
## [19486] "2013-12-23" "2012-08-27" "2012-08-27" "2013-12-23" NA          
## [19491] "2011-06-30" "2011-06-30" "2013-02-25" NA           NA          
## [19496] "2011-06-30" NA           "2013-02-20" NA           NA          
## [19501] "2013-02-20" "2013-02-25" "2013-02-25" "2011-07-27" "2011-07-27"
## [19506] "2011-07-27" "2011-07-31" "2011-07-31" "2011-07-31" NA          
## [19511] NA           "2012-06-26" "2012-06-26" NA           NA          
## [19516] "2013-07-16" NA           "2013-07-16" NA           NA          
## [19521] "2013-07-16" "2013-07-16" "2013-01-13" "2013-01-13" NA          
## [19526] NA           "2013-01-13" "2013-01-13" "2011-09-18" "2013-01-13"
## [19531] "2013-03-14" "2012-09-17" NA           "2012-09-17" "2011-09-18"
## [19536] NA           "2013-03-14" NA           "2012-09-17" "2011-09-18"
## [19541] "2013-04-20" "2013-04-21" NA           "2013-04-20" "2013-04-21"
## [19546] "2013-01-29" NA           "2013-01-29" "2011-11-17" NA          
## [19551] NA           "2011-11-28" "2011-11-28" "2011-11-17" "2011-11-28"
## [19556] "2011-11-28" NA           "2011-11-28" "2012-02-22" "2012-02-22"
## [19561] NA           "2013-11-25" NA           NA           "2013-11-25"
## [19566] "2013-11-25" NA           "2013-11-25" NA           "2013-11-25"
## [19571] NA           "2013-11-25" NA           NA           "2013-09-26"
## [19576] "2012-03-14" "2012-03-14" "2012-03-14" "2013-09-26" "2012-03-14"
## [19581] "2012-03-14" "2012-03-14" "2013-09-26" NA           NA          
## [19586] NA           NA           NA           "2011-08-28" "2011-08-28"
## [19591] NA           "2011-08-28" "2013-03-22" NA           "2011-10-14"
## [19596] "2011-10-14" "2013-03-22" NA           "2013-03-22" "2013-03-22"
## [19601] "2011-10-14" NA           "2011-10-14" "2011-11-14" NA          
## [19606] "2011-10-14" "2011-11-14" "2011-11-29" "2011-06-15" NA          
## [19611] NA           "2011-11-29" "2011-11-29" "2011-06-15" NA          
## [19616] "2014-01-13" NA           NA           "2014-01-13" "2014-01-13"
## [19621] NA           NA           "2013-12-27" "2013-12-27" "2013-04-19"
## [19626] "2013-12-24" "2013-04-19" "2013-12-24" "2013-12-24" "2013-04-19"
## [19631] "2013-12-27" "2013-04-19" "2013-05-18" "2013-05-18" "2013-05-18"
## [19636] "2013-05-18" NA           "2012-09-18" NA           NA          
## [19641] NA           NA           "2012-09-18" NA           "2012-03-25"
## [19646] NA           "2012-03-26" "2011-07-26" "2011-07-26" "2012-03-26"
## [19651] "2011-07-26" NA           NA           "2012-03-25" "2012-03-25"
## [19656] "2011-07-26" "2011-07-26" "2012-03-26" "2012-10-21" "2012-10-21"
## [19661] "2012-10-21" "2012-10-21" "2012-10-21" "2011-10-26" NA          
## [19666] "2011-10-26" NA           "2011-10-26" "2012-02-21" "2012-02-21"
## [19671] "2011-10-26" "2011-10-26" "2012-02-28" "2012-02-28" "2012-02-28"
## [19676] NA           "2012-02-21" "2013-09-15" "2011-04-17" "2011-04-17"
## [19681] "2013-09-21" "2011-03-31" "2013-09-15" "2011-03-31" NA          
## [19686] "2011-04-17" "2011-03-31" "2013-09-15" "2013-09-15" "2013-09-15"
## [19691] NA           NA           "2013-09-21" "2011-03-31" NA          
## [19696] "2013-09-21" NA           "2013-09-21" NA           "2013-09-21"
## [19701] "2011-03-31" NA           "2012-01-19" "2012-11-29" "2012-11-29"
## [19706] "2012-04-27" "2012-08-22" "2012-01-19" "2012-11-29" "2013-07-21"
## [19711] "2013-07-21" "2012-08-22" "2012-11-29" "2012-01-19" "2013-07-21"
## [19716] "2012-08-22" "2012-01-19" "2012-04-27" "2012-01-19" "2012-04-27"
## [19721] "2012-11-29" "2013-07-21" "2013-10-27" "2013-12-21" "2012-04-13"
## [19726] "2013-10-27" "2012-04-13" "2013-12-21" "2013-10-27" "2013-10-27"
## [19731] "2013-12-21" "2013-10-27" "2012-09-14" "2011-11-26" "2011-11-26"
## [19736] "2012-09-14" "2012-09-14" "2012-09-14" "2012-09-14" "2012-01-18"
## [19741] "2012-01-18" "2013-07-30" "2013-07-30" "2012-02-29" "2013-07-30"
## [19746] "2013-10-28" "2012-02-29" "2013-10-28" "2013-07-29" "2013-07-30"
## [19751] "2013-07-29" "2013-07-30" "2013-12-19" "2013-12-19" "2013-05-25"
## [19756] "2013-12-19" "2013-05-25" "2011-09-19" "2011-09-25" "2011-09-19"
## [19761] NA           "2011-09-25" NA           "2011-09-19" NA          
## [19766] NA           "2011-09-19" NA           "2011-09-25" NA          
## [19771] "2012-07-15" "2011-09-25" NA           NA           NA          
## [19776] "2012-07-15" "2013-03-21" "2013-03-21" "2013-03-13" "2013-03-13"
## [19781] "2013-03-21" "2013-03-21" "2013-03-13" "2013-03-13" "2013-03-13"
## [19786] "2013-03-21" "2013-11-26" NA           NA           NA          
## [19791] NA           "2013-11-26" "2013-11-26" "2013-11-26" NA          
## [19796] NA           "2013-11-26" "2013-11-26" NA           NA          
## [19801] NA           NA           NA           NA           NA          
## [19806] NA           NA           NA           NA           NA          
## [19811] NA           NA           NA           NA           NA          
## [19816] NA           NA           NA           "2012-03-22" NA          
## [19821] "2012-03-22" NA           NA           NA           NA          
## [19826] NA           NA           NA           "2014-01-20" "2012-08-25"
## [19831] "2012-08-25" "2014-01-20" "2012-08-25" "2012-08-25" "2014-01-20"
## [19836] "2012-08-25" NA           NA           NA           NA          
## [19841] NA           NA           "2011-06-26" "2011-06-26" NA          
## [19846] NA           NA           NA           NA           NA          
## [19851] NA           "2012-05-22" NA           "2012-02-21" "2012-05-22"
## [19856] "2012-02-21" "2013-05-29" NA           NA           NA          
## [19861] NA           NA           "2013-05-29" "2013-05-29" NA          
## [19866] NA           NA           NA           "2013-05-19" "2013-05-19"
## [19871] NA           NA           NA           NA           NA          
## [19876] NA           NA           "2013-01-20" NA           NA          
## [19881] NA           NA           "2013-01-20" NA           NA          
## [19886] NA           NA           NA           "2012-11-30" "2012-11-30"
## [19891] NA           NA           NA           NA           NA          
## [19896] "2011-04-14" "2011-04-14" "2011-04-14" "2011-04-14" "2011-04-19"
## [19901] "2011-04-14" "2011-04-19" "2011-04-19" "2011-08-28" "2011-04-19"
## [19906] "2011-08-28" "2011-08-28" "2011-08-28" "2011-04-19" "2011-08-24"
## [19911] NA           "2011-08-24" "2013-11-13" NA           NA          
## [19916] "2011-08-24" NA           NA           NA           NA          
## [19921] "2013-11-13" NA           NA           "2013-11-13" NA          
## [19926] "2011-08-24" NA           "2013-01-26" "2011-08-24" NA          
## [19931] "2013-01-26" "2013-11-13" "2011-04-15" "2013-01-26" NA          
## [19936] "2013-01-26" "2013-01-26" "2011-04-15" "2013-11-13" "2013-11-13"
## [19941] NA           NA           "2011-01-27" "2011-01-27" NA          
## [19946] "2011-01-27" NA           "2011-01-27" "2011-01-27" "2011-01-27"
## [19951] NA           "2011-11-22" "2011-11-22" "2011-07-26" "2011-07-26"
## [19956] "2013-04-15" NA           NA           "2011-12-31" "2011-12-31"
## [19961] "2013-04-15" NA           NA           NA           NA          
## [19966] NA           NA           NA           NA           NA          
## [19971] "2012-06-28" "2011-08-30" NA           NA           "2014-01-18"
## [19976] "2014-01-18" NA           "2014-01-18" "2011-08-30" NA          
## [19981] NA           "2012-06-28" "2014-01-18" "2011-08-30" NA          
## [19986] "2014-01-18" "2012-11-22" "2012-11-22" "2012-11-22" "2012-04-14"
## [19991] "2012-04-14" "2012-04-14" "2012-04-14" "2012-04-14" "2012-04-14"
## [19996] "2012-04-14" "2012-04-14" "2012-04-14" "2012-04-14" "2012-03-30"
## [20001] "2012-03-30" "2012-03-30" "2011-07-29" NA           "2013-08-14"
## [20006] NA           "2011-07-29" "2013-08-14" "2013-08-14" "2011-07-29"
## [20011] NA           "2012-08-30" "2012-08-25" "2012-08-30" NA          
## [20016] NA           "2012-08-25" NA           NA           "2012-08-31"
## [20021] "2012-10-18" "2012-10-18" "2013-05-27" "2012-08-31" "2013-05-27"
## [20026] "2013-05-27" "2012-08-31" "2012-10-18" "2013-05-27" "2013-05-27"
## [20031] "2013-01-30" "2013-01-30" "2013-01-30" "2013-01-27" "2012-02-21"
## [20036] "2013-01-30" "2013-01-27" "2013-01-22" "2012-02-21" "2013-01-22"
## [20041] "2013-01-22" "2013-01-30" "2012-08-27" "2012-08-27" "2012-08-27"
## [20046] "2012-08-27" "2012-08-27" "2012-08-27" NA           NA          
## [20051] "2012-03-27" "2012-03-27" "2012-03-27" "2012-03-30" "2012-03-27"
## [20056] "2012-03-30" "2012-03-27" "2012-03-30" "2012-03-30" "2012-03-30"
## [20061] "2012-03-30" "2012-03-27" "2012-12-31" "2012-12-31" "2012-12-31"
## [20066] "2011-04-21" NA           "2011-04-21" NA           "2011-04-21"
## [20071] "2011-04-21" "2011-04-21" NA           NA           NA          
## [20076] "2012-06-27" "2012-06-27" "2013-04-16" "2013-04-16" "2013-04-16"
## [20081] "2012-09-16" "2012-09-16" "2013-09-26" "2012-09-16" "2012-09-16"
## [20086] "2012-04-14" NA           "2012-04-14" "2013-09-26" NA          
## [20091] "2012-09-16" "2013-09-26" "2012-01-14" "2012-01-14" "2014-01-31"
## [20096] "2012-06-29" "2014-01-30" "2012-06-29" "2012-06-29" "2014-01-30"
## [20101] "2014-01-31" "2014-01-30" "2014-01-31" "2012-05-21" "2011-05-16"
## [20106] "2012-05-17" "2012-05-17" "2012-05-21" "2011-05-16" "2011-05-16"
## [20111] "2011-05-13" "2012-05-17" "2011-05-16" "2011-05-13" "2012-05-21"
## [20116] "2012-05-24" "2012-05-24" "2011-05-16" NA           NA          
## [20121] NA           NA           NA           NA           "2011-12-16"
## [20126] NA           "2013-08-28" NA           "2011-12-16" "2011-12-16"
## [20131] "2013-06-29" "2011-12-16" "2013-06-29" "2013-08-28" NA          
## [20136] "2011-12-16" "2013-01-23" "2013-01-23" "2013-01-23" "2013-03-27"
## [20141] "2013-03-27" "2013-03-27" "2013-03-27" "2013-03-27" NA          
## [20146] NA           "2012-06-13" "2012-02-17" NA           "2012-01-23"
## [20151] "2013-05-17" "2012-06-13" "2012-02-17" NA           "2013-05-17"
## [20156] "2012-01-23" "2012-02-17" "2012-01-23" "2013-12-23" "2012-12-18"
## [20161] NA           "2013-12-23" NA           NA           NA          
## [20166] "2012-12-18" NA           NA           "2011-05-18" NA          
## [20171] NA           NA           "2011-05-18" "2012-12-28" "2013-12-23"
## [20176] "2012-12-28" NA           "2012-06-13" NA           "2012-06-13"
## [20181] NA           NA           "2012-06-13" NA           "2012-06-13"
## [20186] NA           NA           NA           NA           NA          
## [20191] NA           "2012-04-18" NA           "2011-01-29" NA          
## [20196] NA           NA           NA           NA           "2011-01-29"
## [20201] NA           "2012-04-18" "2012-04-18" NA           NA          
## [20206] NA           NA           NA           "2011-05-14" NA          
## [20211] NA           "2011-05-14" NA           "2013-07-16" "2013-10-23"
## [20216] "2013-10-18" "2013-07-16" "2013-10-18" "2013-10-23" "2011-01-26"
## [20221] "2013-10-23" "2013-10-23" "2013-10-18" "2013-10-23" "2011-01-26"
## [20226] "2013-06-18" "2013-10-18" "2011-01-26" "2013-07-16" "2013-10-18"
## [20231] "2013-06-18" "2011-01-26" "2011-01-26" "2013-07-24" "2013-07-24"
## [20236] "2013-07-24" "2013-07-24" "2013-07-24" NA           NA          
## [20241] "2012-12-13" "2012-12-13" "2012-12-13" "2013-11-18" "2013-09-26"
## [20246] "2013-11-18" "2013-09-26" "2013-09-26" "2013-09-26" "2013-11-18"
## [20251] "2013-11-18" "2013-09-26" "2013-11-18" "2012-06-17" "2012-06-17"
## [20256] NA           NA           NA           "2012-06-17" "2013-08-28"
## [20261] "2012-10-27" "2013-08-28" NA           "2012-10-27" "2013-08-28"
## [20266] NA           "2012-10-27" "2012-10-27" "2013-08-28" "2013-08-28"
## [20271] NA           "2012-10-27" "2012-10-28" "2012-10-28" "2012-01-17"
## [20276] "2012-01-17" "2012-10-28" "2012-10-28" "2012-10-28" "2012-10-28"
## [20281] NA           NA           "2013-09-14" NA           NA          
## [20286] "2013-09-14" "2012-02-27" "2012-02-27" "2012-02-27" NA          
## [20291] NA           NA           NA           NA           "2012-02-27"
## [20296] "2012-02-27" "2011-05-28" NA           "2011-05-28" "2013-11-29"
## [20301] NA           "2011-05-28" "2013-09-20" "2013-11-29" NA          
## [20306] "2013-09-20" "2013-11-29" "2011-02-26" "2011-03-28" "2011-03-28"
## [20311] "2011-02-26" "2011-02-26" "2011-02-26" "2011-03-28" NA          
## [20316] "2013-08-26" "2013-08-26" "2012-10-31" NA           NA          
## [20321] "2012-09-25" "2012-10-31" "2012-10-31" "2013-08-26" NA          
## [20326] NA           "2012-10-31" "2012-09-25" "2012-09-25" "2012-10-31"
## [20331] "2011-10-29" "2011-10-29" "2011-09-25" "2011-09-25" "2011-09-20"
## [20336] "2011-09-20" "2013-03-22" "2013-03-22" NA           NA          
## [20341] NA           NA           "2013-03-22" NA           "2013-03-22"
## [20346] NA           NA           "2013-05-17" NA           "2013-05-17"
## [20351] "2013-05-17" NA           NA           NA           "2013-03-22"
## [20356] NA           NA           "2012-10-27" NA           NA          
## [20361] NA           NA           "2012-10-27" "2011-06-18" "2013-01-27"
## [20366] "2013-01-27" "2013-03-31" "2013-01-27" "2011-06-18" NA          
## [20371] "2013-01-27" "2013-01-27" NA           "2013-03-31" "2013-03-31"
## [20376] "2012-11-20" "2013-09-23" "2013-09-23" NA           "2013-09-23"
## [20381] NA           "2012-11-20" NA           NA           "2011-10-17"
## [20386] "2011-10-17" "2013-07-21" NA           "2011-10-17" NA          
## [20391] NA           "2013-07-21" "2013-03-24" NA           "2011-10-17"
## [20396] "2013-03-24" "2013-03-24" "2013-03-24" "2013-03-24" "2013-03-24"
## [20401] "2011-10-17" "2014-01-31" "2014-01-31" "2011-02-18" "2011-02-18"
## [20406] "2011-12-30" "2011-12-30" "2011-12-30" "2011-12-30" NA          
## [20411] NA           NA           NA           NA           NA          
## [20416] "2011-12-30" NA           NA           NA           NA          
## [20421] NA           NA           NA           NA           NA          
## [20426] NA           NA           NA           NA           NA          
## [20431] NA           "2013-02-15" NA           "2011-03-31" "2011-03-31"
## [20436] "2011-03-31" NA           NA           "2012-05-18" "2013-02-15"
## [20441] NA           "2013-02-15" "2012-05-18" "2013-02-15" "2013-02-15"
## [20446] "2013-07-26" "2013-07-26" "2013-07-26" "2012-06-24" "2012-06-24"
## [20451] NA           "2012-11-14" "2012-11-14" "2012-11-14" "2012-06-24"
## [20456] "2012-06-24" "2012-06-24" NA           "2012-05-23" "2011-03-24"
## [20461] "2011-03-24" "2011-04-26" "2012-05-23" "2012-05-23" "2011-04-26"
## [20466] "2012-05-23" "2011-03-24" "2011-03-24" "2011-03-24" "2012-02-19"
## [20471] "2012-02-19" "2011-03-24" "2011-12-24" "2013-05-29" "2013-05-29"
## [20476] "2011-12-24" "2011-12-24" "2013-05-29" "2013-05-29" "2013-05-29"
## [20481] "2013-05-29" NA           "2012-02-29" NA           NA          
## [20486] "2012-02-29" NA           "2012-02-29" NA           "2011-04-23"
## [20491] NA           "2011-04-23" "2011-04-23" NA           NA          
## [20496] NA           NA           NA           NA           NA          
## [20501] NA           NA           NA           NA           NA          
## [20506] NA           NA           NA           "2012-03-28" NA          
## [20511] "2012-03-28" "2012-03-28" "2011-04-25" "2011-04-25" NA          
## [20516] NA           NA           NA           "2013-01-28" "2013-01-28"
## [20521] NA           "2013-01-28" "2012-11-28" "2012-11-28" NA          
## [20526] NA           NA           "2011-01-30" "2011-01-30" NA          
## [20531] NA           "2012-05-23" "2012-05-23" "2013-06-16" "2013-06-16"
## [20536] "2012-05-23" "2012-05-23" "2013-04-24" "2013-06-16" "2012-05-23"
## [20541] "2013-04-24" "2012-05-23" NA           NA           "2013-12-20"
## [20546] NA           "2013-12-20" NA           "2013-12-20" NA          
## [20551] "2013-12-20" NA           NA           "2013-12-13" "2013-12-13"
## [20556] "2013-12-20" NA           NA           "2013-12-13" NA          
## [20561] "2013-12-13" "2013-12-13" "2012-06-13" "2012-06-13" "2012-06-13"
## [20566] "2012-06-13" "2012-06-13" "2012-04-20" "2012-06-13" "2012-04-20"
## [20571] "2012-06-19" "2012-06-19" "2012-06-19" "2012-06-19" "2012-06-19"
## [20576] "2012-06-19" NA           NA           NA           "2012-02-24"
## [20581] "2011-04-15" "2012-02-24" NA           NA           "2011-04-15"
## [20586] NA           NA           "2011-04-15" NA           NA          
## [20591] NA           "2011-04-15" NA           NA           NA          
## [20596] NA           NA           "2011-04-15" "2013-11-14" "2013-11-14"
## [20601] "2011-11-18" "2013-10-21" "2011-11-18" NA           NA          
## [20606] "2011-11-18" "2011-11-18" "2013-10-21" NA           "2013-10-21"
## [20611] NA           NA           "2011-11-18" "2013-06-15" NA          
## [20616] "2013-11-14" NA           "2013-11-14" NA           "2013-06-15"
## [20621] "2013-06-15" NA           NA           "2012-06-15" "2012-06-15"
## [20626] "2013-12-26" "2013-05-16" "2013-05-16" "2013-12-26" "2013-05-16"
## [20631] "2013-12-26" "2013-05-16" "2013-05-16" NA           "2011-02-17"
## [20636] NA           "2011-02-17" "2011-02-17" "2012-04-30" NA          
## [20641] NA           "2012-04-30" NA           NA           NA          
## [20646] NA           NA           NA           NA           NA          
## [20651] "2012-04-20" "2012-04-20" "2011-06-29" "2011-06-29" "2011-06-29"
## [20656] "2011-06-29" "2011-06-29" NA           "2012-06-26" NA          
## [20661] "2011-03-30" "2011-03-30" "2012-06-26" "2012-06-26" "2012-06-26"
## [20666] NA           "2012-06-26" "2012-06-26" "2012-06-22" "2014-02-14"
## [20671] NA           "2014-02-14" "2012-06-22" "2012-06-22" NA          
## [20676] "2014-02-14" NA           NA           NA           NA          
## [20681] NA           NA           NA           NA           NA          
## [20686] "2013-12-23" "2013-12-23" "2013-12-23" NA           NA          
## [20691] NA           NA           NA           "2012-10-14" NA          
## [20696] "2012-10-14" "2011-10-25" "2011-12-25" "2011-12-25" "2011-10-25"
## [20701] "2011-10-25" "2011-12-25" NA           "2011-10-25" NA          
## [20706] NA           "2011-10-25" NA           "2011-12-25" "2011-12-25"
## [20711] NA           NA           "2011-10-25" "2011-07-17" "2011-07-17"
## [20716] "2012-01-29" NA           NA           "2011-07-17" "2012-01-29"
## [20721] NA           "2014-01-30" "2014-01-30" "2014-01-30" "2013-02-14"
## [20726] "2013-02-14" "2012-08-26" "2011-07-18" "2011-02-21" NA          
## [20731] "2012-08-26" NA           "2012-08-26" "2012-08-26" "2012-08-26"
## [20736] "2011-02-21" "2011-07-18" NA           "2013-08-23" "2013-08-23"
## [20741] "2013-08-23" NA           NA           NA           "2011-06-14"
## [20746] "2011-06-14" "2011-06-14" "2011-06-14" "2011-06-14" "2012-04-20"
## [20751] "2012-04-20" NA           NA           "2012-04-20" NA          
## [20756] "2012-04-14" "2012-04-14" "2012-04-20" NA           "2012-04-14"
## [20761] "2012-04-14" NA           NA           "2013-01-18" "2013-01-18"
## [20766] NA           NA           "2013-01-18" NA           NA          
## [20771] NA           NA           NA           "2011-09-13" "2011-09-13"
## [20776] "2013-01-27" NA           "2011-09-13" "2013-01-27" NA          
## [20781] NA           "2012-04-29" NA           NA           NA          
## [20786] NA           "2012-04-29" "2012-04-29" "2012-04-29" "2012-04-29"
## [20791] "2013-10-20" "2013-10-16" "2013-10-16" "2013-10-20" NA          
## [20796] "2013-10-16" NA           NA           NA           NA          
## [20801] NA           "2013-08-23" NA           "2013-10-20" "2013-08-23"
## [20806] "2013-06-19" "2013-06-19" NA           NA           "2013-06-19"
## [20811] NA           NA           "2012-12-18" "2012-12-18" "2012-12-18"
## [20816] "2012-08-28" "2012-08-28" "2012-08-28" "2012-08-28" "2011-10-30"
## [20821] "2011-10-30" "2011-10-30" "2011-10-30" "2011-10-30" "2013-08-26"
## [20826] "2011-07-30" NA           "2012-08-25" "2011-07-30" "2013-08-26"
## [20831] "2013-08-26" "2012-08-25" "2013-08-26" "2012-12-25" "2011-07-30"
## [20836] "2012-12-25" "2012-08-25" NA           "2011-07-30" "2012-12-25"
## [20841] "2012-08-25" "2011-07-30" "2011-07-30" "2012-10-21" "2012-10-21"
## [20846] NA           "2012-10-21" NA           NA           "2012-10-21"
## [20851] "2013-12-22" "2013-12-22" "2013-12-22" "2013-12-22" "2013-12-22"
## [20856] NA           NA           NA           "2012-08-23" "2012-08-23"
## [20861] "2014-01-20" "2014-01-20" "2012-08-23" "2012-08-23" "2012-08-23"
## [20866] "2014-01-20" "2012-08-23" NA           NA           "2012-06-26"
## [20871] "2012-06-26" "2012-06-26" "2012-06-26" NA           "2013-09-14"
## [20876] NA           NA           "2013-09-14" NA           "2013-09-14"
## [20881] "2013-03-16" "2011-03-18" "2011-03-18" "2011-03-18" "2013-03-16"
## [20886] "2011-03-18" NA           "2013-03-16" "2011-03-18" NA          
## [20891] NA           NA           "2011-03-18" NA           NA          
## [20896] NA           "2012-12-23" "2012-10-13" "2012-10-13" "2012-10-13"
## [20901] "2012-12-23" "2012-10-13" "2012-10-25" NA           "2012-12-23"
## [20906] "2012-10-25" "2012-10-25" "2012-10-25" "2012-10-25" NA          
## [20911] NA           "2013-12-29" NA           NA           "2013-12-29"
## [20916] NA           "2013-12-29" "2013-12-29" NA           "2013-12-29"
## [20921] "2013-12-29" "2013-07-22" NA           "2012-07-31" NA          
## [20926] "2013-07-22" NA           "2012-07-31" NA           "2012-07-31"
## [20931] "2012-11-24" "2012-11-24" "2012-11-24" "2012-11-24" NA          
## [20936] "2012-11-24" NA           "2014-01-31" "2014-01-31" "2013-09-30"
## [20941] "2013-09-30" "2013-09-30" NA           NA           NA          
## [20946] NA           "2011-09-20" "2011-09-20" "2011-09-20" "2012-02-13"
## [20951] "2012-02-13" "2012-02-13" "2012-02-13" "2012-02-13" "2013-06-17"
## [20956] "2013-06-26" NA           "2013-06-26" "2013-06-26" "2013-06-26"
## [20961] "2013-06-17" "2013-06-17" NA           "2013-06-17" "2013-06-17"
## [20966] NA           "2013-06-26" "2013-06-26" "2013-06-17" "2013-10-31"
## [20971] "2011-12-18" "2012-07-29" "2012-07-29" "2011-12-18" "2011-12-18"
## [20976] "2012-07-29" "2012-07-29" "2011-12-18" "2011-12-18" "2012-07-29"
## [20981] "2013-10-31" "2013-10-31" "2011-12-18" "2012-07-29" NA          
## [20986] NA           "2013-03-30" NA           "2012-07-31" NA          
## [20991] "2012-07-31" "2012-07-31" "2012-07-31" "2012-07-31" "2013-03-30"
## [20996] NA           NA           NA           NA           NA          
## [21001] "2013-04-19" "2013-04-19" "2011-03-16" NA           NA          
## [21006] NA           "2011-03-16" NA           NA           "2011-05-15"
## [21011] "2012-11-20" "2012-11-20" "2012-11-20" "2011-05-15" "2011-05-15"
## [21016] "2012-11-20" NA           NA           "2012-11-20" "2012-11-20"
## [21021] NA           NA           NA           NA           NA          
## [21026] "2012-08-26" "2011-12-28" "2013-08-14" "2011-12-28" "2013-08-14"
## [21031] "2013-08-14" "2013-02-23" "2013-02-23" "2012-08-26" "2013-02-23"
## [21036] "2013-03-14" "2013-03-14" "2011-08-18" "2011-08-18" "2011-08-18"
## [21041] "2011-08-18" "2011-08-18" "2012-03-17" "2012-03-17" "2012-11-17"
## [21046] NA           NA           NA           NA           NA          
## [21051] NA           "2012-11-17" NA           NA           NA          
## [21056] NA           "2013-06-26" "2011-11-22" "2013-06-26" "2013-10-31"
## [21061] "2013-06-26" NA           "2011-11-22" "2013-10-31" NA          
## [21066] "2013-06-26" "2013-06-26" "2011-11-22" "2011-11-22" NA          
## [21071] NA           "2011-11-22" "2011-11-22" NA           "2011-09-20"
## [21076] NA           NA           NA           NA           "2014-01-26"
## [21081] "2011-09-20" "2014-01-26" "2014-01-26" NA           "2014-01-26"
## [21086] NA           NA           NA           "2014-01-26" NA          
## [21091] NA           NA           "2011-12-30" NA           "2011-12-30"
## [21096] NA           NA           NA           "2011-02-20" NA          
## [21101] NA           "2011-02-22" "2011-02-20" NA           "2011-02-22"
## [21106] "2011-02-20" NA           "2011-02-22" NA           "2013-12-30"
## [21111] "2013-12-30" "2013-12-30" NA           "2013-11-22" "2011-06-13"
## [21116] NA           "2013-11-22" "2013-11-22" "2013-11-13" NA          
## [21121] "2011-06-13" "2011-06-13" "2013-05-20" "2013-11-13" "2013-11-22"
## [21126] "2013-05-20" "2013-11-22" "2013-11-13" "2013-11-22" NA          
## [21131] NA           "2014-01-17" "2012-06-30" "2012-06-22" "2012-06-30"
## [21136] "2012-06-22" "2014-01-17" "2014-01-17" NA           NA          
## [21141] "2012-04-30" "2013-06-15" "2012-12-19" "2013-06-16" "2013-06-16"
## [21146] NA           "2012-12-19" "2012-04-30" "2012-04-30" "2013-06-15"
## [21151] "2012-12-19" NA           "2012-03-25" "2012-03-25" NA          
## [21156] NA           NA           NA           "2011-04-18" "2011-04-18"
## [21161] "2011-11-30" "2012-09-14" "2011-08-16" "2011-08-16" "2011-04-18"
## [21166] "2011-04-18" "2011-11-30" "2013-07-27" "2011-11-30" "2011-04-18"
## [21171] "2011-11-30" "2011-11-30" "2013-07-27" "2012-09-14" "2011-04-18"
## [21176] NA           NA           NA           "2012-05-27" "2012-03-19"
## [21181] NA           NA           NA           "2012-05-27" "2012-03-19"
## [21186] NA           NA           "2012-04-23" "2012-03-19" "2012-04-23"
## [21191] "2012-04-23" NA           NA           "2013-05-25" "2013-05-25"
## [21196] NA           NA           NA           NA           NA          
## [21201] NA           NA           NA           NA           NA          
## [21206] "2013-08-27" NA           NA           "2013-08-27" NA          
## [21211] "2012-07-22" "2012-07-22" "2011-08-15" NA           "2012-07-22"
## [21216] "2011-08-15" "2012-07-22" "2011-04-26" NA           NA          
## [21221] NA           NA           NA           "2011-04-26" NA          
## [21226] NA           NA           NA           NA           "2011-08-25"
## [21231] NA           NA           "2011-08-25" NA           "2011-08-21"
## [21236] "2011-08-25" "2011-08-21" NA           "2011-08-21" NA          
## [21241] "2011-08-26" "2011-08-26" NA           "2012-11-27" "2014-01-19"
## [21246] "2014-01-19" NA           "2012-09-29" "2012-09-29" "2012-11-27"
## [21251] "2012-11-27" "2012-09-29" NA           NA           NA          
## [21256] NA           NA           NA           "2012-09-29" NA          
## [21261] NA           "2012-09-29" NA           "2012-11-18" "2012-11-18"
## [21266] "2012-11-18" NA           "2013-10-24" "2013-10-24" NA          
## [21271] "2012-10-25" "2012-10-25" NA           NA           NA          
## [21276] "2012-10-25" "2012-01-25" "2012-09-15" "2012-01-25" "2012-01-25"
## [21281] "2012-01-25" "2012-01-25" "2012-09-15" "2012-01-25" "2013-10-17"
## [21286] "2013-11-17" "2013-11-15" "2013-10-17" "2013-11-15" "2013-11-15"
## [21291] "2013-10-17" "2013-11-17" "2013-11-17" "2012-06-20" "2012-06-20"
## [21296] "2012-06-20" NA           NA           NA           "2012-11-14"
## [21301] "2012-11-14" "2011-12-18" "2011-12-18" "2011-12-18" "2011-12-18"
## [21306] NA           NA           NA           NA           NA          
## [21311] NA           NA           NA           NA           NA          
## [21316] NA           NA           NA           NA           "2011-07-28"
## [21321] "2011-07-28" "2011-07-28" "2011-07-28" "2011-07-28" "2012-04-25"
## [21326] "2012-04-25" "2012-04-25" "2011-02-21" "2011-02-21" "2011-02-21"
## [21331] "2011-12-31" "2011-12-31" "2011-11-23" "2014-01-18" "2011-11-23"
## [21336] "2014-01-18" "2014-01-18" "2011-09-24" "2011-09-24" "2014-01-18"
## [21341] "2014-01-18" "2011-09-24" "2011-09-24" "2011-11-23" "2011-11-23"
## [21346] "2011-11-23" "2014-01-18" "2011-11-23" "2011-09-24" NA          
## [21351] NA           NA           NA           NA           "2013-05-27"
## [21356] "2013-05-27" "2011-02-23" "2013-05-27" "2013-05-27" "2013-05-27"
## [21361] "2011-02-23" "2011-02-23" "2013-11-14" "2013-11-14" "2013-05-23"
## [21366] "2012-06-18" "2011-09-28" "2011-09-18" "2011-09-28" "2013-05-23"
## [21371] "2013-05-14" "2012-06-18" "2011-09-18" "2012-06-18" "2013-05-14"
## [21376] "2013-03-13" "2012-04-14" NA           "2012-04-14" "2012-11-22"
## [21381] "2013-03-22" NA           "2012-11-22" NA           NA          
## [21386] "2013-03-13" NA           "2012-11-22" "2013-03-22" "2011-12-18"
## [21391] NA           NA           "2011-04-16" NA           "2011-12-18"
## [21396] "2011-04-16" NA           NA           "2012-06-21" NA          
## [21401] "2011-02-18" "2011-02-18" "2012-06-21" "2012-06-21" NA          
## [21406] "2012-08-28" NA           "2012-08-28" "2012-08-28" NA          
## [21411] "2012-08-28" NA           "2012-08-28" "2011-04-17" NA          
## [21416] NA           NA           "2011-09-18" NA           NA          
## [21421] NA           NA           "2011-04-17" "2011-04-17" NA          
## [21426] "2011-09-18" "2011-04-17" "2011-04-17" NA           NA          
## [21431] "2013-08-27" NA           NA           "2012-11-20" "2013-05-13"
## [21436] NA           NA           "2013-08-27" NA           NA          
## [21441] "2012-11-20" "2013-05-13" NA           "2013-08-27" NA          
## [21446] "2012-11-20" "2012-11-20" "2013-07-28" "2013-07-28" "2012-03-14"
## [21451] NA           "2012-03-14" "2011-01-30" NA           NA          
## [21456] "2011-01-30" "2011-01-30" NA           "2011-01-30" "2011-01-30"
## [21461] NA           NA           NA           "2013-01-24" "2013-01-24"
## [21466] "2013-01-24" NA           "2013-03-19" "2013-03-19" "2013-03-16"
## [21471] "2013-03-16" NA           NA           NA           NA          
## [21476] NA           "2012-11-14" "2013-08-20" NA           "2013-08-20"
## [21481] NA           "2012-11-14" NA           NA           NA          
## [21486] "2012-09-20" "2012-09-20" "2012-09-20" "2012-08-17" "2012-07-25"
## [21491] "2012-08-17" "2012-07-25" "2012-08-17" "2012-08-17" "2012-08-17"
## [21496] "2011-10-25" "2012-07-25" "2012-07-25" "2012-07-25" "2011-10-25"
## [21501] "2011-10-25" "2011-10-25" "2012-07-25" "2011-10-25" "2012-01-20"
## [21506] NA           "2012-01-20" NA           NA           "2012-08-17"
## [21511] NA           "2012-08-17" NA           "2012-08-17" "2012-04-27"
## [21516] "2012-04-27" "2012-04-27" "2012-04-27" "2012-04-27" "2013-10-16"
## [21521] "2011-10-14" "2011-10-14" "2013-10-16" "2011-05-24" "2011-05-24"
## [21526] "2011-01-29" "2011-01-29" "2011-05-24" "2011-07-22" "2012-10-15"
## [21531] "2011-01-29" "2013-07-14" "2013-07-14" "2011-01-29" "2011-07-22"
## [21536] "2013-02-21" "2012-10-15" "2011-07-22" "2013-10-23" "2011-01-29"
## [21541] "2011-05-24" "2012-10-15" "2011-07-22" "2013-02-21" "2011-07-22"
## [21546] "2011-07-22" "2013-10-23" "2013-10-23" "2011-05-24" NA          
## [21551] NA           "2012-04-25" NA           NA           "2012-04-25"
## [21556] NA           NA           "2012-04-25" "2011-10-15" "2011-10-15"
## [21561] "2011-03-21" NA           "2011-03-21" "2011-03-21" "2011-03-21"
## [21566] NA           NA           NA           NA           "2011-03-21"
## [21571] "2013-10-20" "2013-10-20" "2013-10-29" "2013-10-29" NA          
## [21576] "2013-10-20" "2013-10-29" NA           "2011-05-26" "2011-05-26"
## [21581] "2011-05-26" "2011-05-26" "2011-05-26" "2011-12-20" "2011-12-20"
## [21586] "2011-12-20" "2014-01-23" "2011-12-20" "2014-01-23" "2011-08-15"
## [21591] "2011-08-15" "2012-07-14" "2012-07-14" "2012-07-14" "2012-07-14"
## [21596] "2012-07-14" NA           "2011-04-18" "2012-02-16" "2011-04-18"
## [21601] NA           "2012-02-16" NA           "2012-02-16" NA          
## [21606] "2011-03-26" "2012-12-30" NA           "2012-12-30" "2012-12-30"
## [21611] "2011-03-26" "2011-03-26" "2012-12-30" NA           "2011-03-26"
## [21616] "2011-03-26" "2011-03-26" "2012-12-30" "2013-11-20" NA          
## [21621] "2013-11-20" "2013-11-20" "2013-11-20" "2013-11-20" "2013-11-21"
## [21626] NA           NA           NA           NA           "2013-11-20"
## [21631] NA           NA           "2013-11-21" "2012-09-20" "2012-09-13"
## [21636] NA           "2012-05-19" "2012-09-20" NA           "2012-09-13"
## [21641] NA           "2012-05-19" "2012-09-13" "2012-05-19" "2012-05-19"
## [21646] "2012-05-19" "2012-09-20" "2012-05-19" "2011-12-24" "2011-08-17"
## [21651] "2011-08-17" "2011-08-21" "2011-08-21" "2011-08-17" "2011-01-31"
## [21656] "2011-08-21" "2011-01-31" "2011-12-24" NA           NA          
## [21661] NA           "2012-03-22" NA           NA           "2012-03-22"
## [21666] NA           NA           NA           NA           "2013-09-23"
## [21671] "2013-09-23" "2012-03-22" "2013-09-23" NA           "2013-09-23"
## [21676] NA           "2013-09-23" "2011-04-15" NA           NA          
## [21681] NA           "2011-04-15" NA           NA           NA          
## [21686] NA           NA           NA           "2011-11-16" NA          
## [21691] "2011-11-16" NA           NA           "2011-11-16" NA          
## [21696] "2011-11-16" NA           "2011-11-16" NA           NA          
## [21701] NA           NA           "2014-01-15" "2014-01-15" NA          
## [21706] "2013-10-19" "2013-10-19" NA           NA           "2013-10-19"
## [21711] NA           NA           NA           NA           NA          
## [21716] NA           NA           NA           NA           NA          
## [21721] NA           NA           NA           "2014-01-15" NA          
## [21726] NA           NA           "2011-05-13" "2011-05-13" "2013-10-29"
## [21731] "2013-10-29" "2011-05-13" "2013-10-29" "2013-10-29" "2013-10-29"
## [21736] "2012-12-18" NA           "2012-12-18" "2011-05-13" "2011-05-13"
## [21741] "2011-05-13" "2011-05-13" NA           NA           "2012-12-18"
## [21746] "2011-05-13" NA           NA           "2013-08-16" "2013-08-16"
## [21751] "2013-08-16" NA           NA           "2011-12-13" "2013-04-17"
## [21756] "2013-04-17" "2011-12-13" "2014-02-19" "2011-12-13" "2011-07-22"
## [21761] "2011-07-22" "2014-02-19" "2011-12-13" "2014-02-19" "2013-04-17"
## [21766] "2013-04-17" "2011-07-22" "2011-07-22" "2011-12-13" "2011-07-22"
## [21771] "2013-04-17" NA           NA           "2012-01-23" "2012-01-23"
## [21776] "2012-01-23" NA           NA           NA           NA          
## [21781] NA           NA           NA           NA           NA          
## [21786] NA           NA           NA           NA           NA          
## [21791] NA           NA           "2011-07-19" "2011-07-19" NA          
## [21796] NA           NA           NA           NA           NA          
## [21801] NA           NA           "2013-07-17" "2011-07-21" "2011-08-13"
## [21806] "2011-07-21" NA           NA           NA           NA          
## [21811] "2013-07-17" NA           "2011-08-13" "2011-08-13" NA          
## [21816] NA           "2013-11-28" NA           "2013-11-28" NA          
## [21821] NA           "2013-11-28" "2013-11-28" "2013-11-28" NA          
## [21826] "2011-03-21" "2011-03-21" "2011-03-21" "2011-03-21" NA          
## [21831] "2011-03-21" "2011-03-21" "2012-08-18" "2012-08-18" NA          
## [21836] "2012-02-15" "2012-02-15" NA           NA           NA          
## [21841] "2012-02-15" "2012-11-28" NA           "2012-11-28" "2012-11-28"
## [21846] "2012-11-28" NA           NA           NA           NA          
## [21851] NA           NA           "2012-11-28" "2012-11-28" NA          
## [21856] NA           NA           NA           NA           NA          
## [21861] "2012-09-18" NA           "2012-09-18" "2012-09-18" NA          
## [21866] "2012-09-18" NA           NA           NA           "2012-09-18"
## [21871] "2013-07-25" NA           "2013-10-20" "2013-07-25" NA          
## [21876] NA           "2013-10-20" "2013-10-20" "2013-10-20" "2013-07-25"
## [21881] NA           "2013-10-20" "2013-07-25" NA           NA          
## [21886] "2013-11-22" "2011-07-17" NA           NA           NA          
## [21891] "2011-07-17" "2013-11-22" "2013-11-22" NA           "2013-11-22"
## [21896] NA           "2011-07-17" "2013-11-22" "2011-07-17" "2011-07-17"
## [21901] "2012-07-19" "2012-07-19" "2011-10-25" "2012-07-19" "2012-07-19"
## [21906] "2011-10-25" "2011-10-25" NA           "2012-07-19" NA          
## [21911] "2012-07-19" "2011-04-24" "2013-01-13" NA           "2013-01-13"
## [21916] NA           "2013-01-13" NA           "2011-04-24" NA          
## [21921] "2013-01-28" "2013-01-28" "2013-01-28" "2013-01-28" "2012-08-13"
## [21926] "2012-08-13" "2012-06-20" NA           NA           "2012-06-20"
## [21931] NA           NA           "2013-06-13" NA           NA          
## [21936] NA           "2011-12-14" "2013-06-13" NA           "2011-12-14"
## [21941] NA           NA           "2011-12-14" "2011-12-14" NA          
## [21946] "2011-12-14" NA           "2012-08-25" "2012-08-25" NA          
## [21951] NA           NA           NA           "2011-02-20" "2011-02-20"
## [21956] "2011-02-20" "2011-02-20" "2011-02-24" "2011-02-24" "2011-02-24"
## [21961] "2011-02-24" "2012-11-23" "2011-09-23" "2011-10-18" "2013-02-28"
## [21966] "2012-11-23" "2012-11-23" "2011-10-18" NA           "2011-09-23"
## [21971] "2011-10-18" "2012-11-23" "2011-10-18" "2011-09-23" "2013-02-28"
## [21976] "2012-11-23" "2013-02-28" "2013-02-28" "2012-11-23" NA          
## [21981] NA           NA           NA           NA           NA          
## [21986] NA           NA           "2013-11-26" "2013-11-26" "2013-11-26"
## [21991] NA           NA           "2014-01-31" NA           NA          
## [21996] NA           NA           NA           "2014-01-31" "2012-10-26"
## [22001] NA           NA           NA           NA           NA          
## [22006] "2012-10-26" NA           NA           NA           "2011-04-30"
## [22011] NA           "2011-04-30" "2011-04-30" NA           NA          
## [22016] NA           "2011-06-20" NA           "2013-11-25" "2013-11-25"
## [22021] "2013-11-25" NA           "2011-06-20" NA           "2013-03-31"
## [22026] "2011-04-30" NA           "2013-03-31" NA           NA          
## [22031] NA           NA           NA           NA           NA          
## [22036] NA           "2011-12-23" "2011-12-23" NA           "2011-12-19"
## [22041] NA           "2011-12-19" NA           NA           NA          
## [22046] "2011-03-23" "2011-03-23" NA           NA           NA          
## [22051] "2011-03-23" NA           NA           "2011-03-23" "2011-03-23"
## [22056] "2011-03-23" NA           "2013-11-20" "2013-11-30" "2013-11-30"
## [22061] "2013-11-30" "2013-11-30" NA           NA           "2013-11-20"
## [22066] NA           "2011-07-19" NA           "2013-11-20" "2013-11-20"
## [22071] "2013-11-30" "2013-11-20" NA           "2011-07-19" "2011-07-19"
## [22076] "2013-11-30" "2013-11-20" NA           "2012-11-30" "2012-11-22"
## [22081] "2012-11-22" "2012-11-30" NA           NA           NA          
## [22086] NA           "2012-12-26" "2012-12-26" NA           NA          
## [22091] NA           NA           NA           NA           NA          
## [22096] NA           NA           NA           NA           NA          
## [22101] NA           NA           NA           NA           NA          
## [22106] NA           NA           NA           NA           NA          
## [22111] NA           NA           NA           NA           NA          
## [22116] NA           NA           NA           NA           NA          
## [22121] "2014-01-17" NA           NA           NA           NA          
## [22126] "2014-01-17" "2013-09-14" "2014-01-17" "2013-09-14" "2014-01-17"
## [22131] NA           NA           NA           "2012-01-28" NA          
## [22136] "2012-01-28" "2012-01-28" NA           NA           "2012-01-28"
## [22141] "2012-01-28" "2012-01-28" "2012-04-28" "2012-04-28" NA          
## [22146] NA           NA           NA           NA           NA          
## [22151] NA           NA           NA           "2013-04-15" "2013-08-15"
## [22156] "2013-08-20" "2011-06-25" "2013-04-15" "2013-08-20" "2011-06-25"
## [22161] "2011-06-25" "2013-08-20" "2013-08-15" "2013-08-15" NA          
## [22166] "2013-04-13" NA           "2013-04-13" NA           NA          
## [22171] NA           NA           "2013-08-17" "2012-11-25" "2012-11-25"
## [22176] "2012-11-25" "2013-08-17" "2013-04-23" "2013-04-18" NA          
## [22181] "2013-04-23" "2011-09-29" "2011-09-29" "2011-09-29" NA          
## [22186] "2013-04-23" NA           "2013-04-18" "2013-04-18" "2012-08-22"
## [22191] NA           "2012-08-22" "2012-08-22" "2012-08-22" "2012-08-22"
## [22196] NA           NA           "2012-11-28" NA           NA          
## [22201] NA           NA           "2011-05-20" NA           "2011-05-20"
## [22206] "2012-11-28" "2011-05-20" NA           NA           NA          
## [22211] NA           NA           NA           NA           NA          
## [22216] NA           "2011-08-20" "2011-08-20" NA           NA          
## [22221] NA           NA           "2013-05-27" "2013-05-27" "2013-05-27"
## [22226] "2013-05-24" "2013-05-24" "2013-05-24" "2012-02-18" "2012-02-18"
## [22231] NA           NA           "2012-02-18" "2012-02-18" NA          
## [22236] NA           "2012-02-18" NA           NA           "2012-06-27"
## [22241] "2012-06-27" "2012-06-22" "2012-06-22" "2012-06-22" NA          
## [22246] NA           NA           NA           NA           NA          
## [22251] NA           NA           NA           "2013-08-26" NA          
## [22256] NA           NA           NA           NA           NA          
## [22261] "2013-08-26" NA           "2013-08-26" NA           "2011-07-16"
## [22266] NA           NA           "2011-07-16" NA           "2011-09-27"
## [22271] "2011-09-27" NA           "2011-07-16" "2011-07-16" NA          
## [22276] "2011-09-27" "2011-09-27" "2011-09-27" "2013-09-25" "2013-09-25"
## [22281] "2013-09-25" NA           NA           "2013-12-20" "2013-12-20"
## [22286] NA           "2013-12-20" "2012-11-29" "2013-12-20" "2013-12-20"
## [22291] "2013-12-20" "2012-11-29" "2014-01-25" "2014-01-25" "2012-11-29"
## [22296] NA           NA           "2013-05-23" "2013-05-23" "2013-05-23"
## [22301] NA           NA           NA           NA           "2013-05-23"
## [22306] NA           NA           NA           "2013-05-23" NA          
## [22311] NA           NA           NA           NA           "2013-10-16"
## [22316] "2013-10-16" "2013-10-16" NA           NA           "2011-09-21"
## [22321] "2011-07-25" "2011-07-25" "2011-09-21" "2011-09-21" "2011-09-21"
## [22326] NA           "2011-09-21" NA           "2011-09-21" NA          
## [22331] "2011-10-25" "2013-07-26" NA           "2014-01-31" "2011-10-25"
## [22336] "2012-02-27" "2013-07-26" "2014-01-31" "2014-01-31" "2013-07-26"
## [22341] "2012-02-27" "2012-02-27" "2013-07-26" NA           "2013-07-26"
## [22346] NA           NA           NA           "2011-11-18" "2011-06-21"
## [22351] "2011-06-21" NA           NA           "2012-04-25" "2012-04-25"
## [22356] "2012-04-25" "2011-11-18" "2011-10-22" "2011-11-18" "2011-10-22"
## [22361] "2011-11-18" "2012-04-25" "2012-04-25" "2011-10-22" "2011-11-18"
## [22366] "2011-06-21" NA           NA           NA           NA          
## [22371] NA           NA           NA           NA           NA          
## [22376] "2013-12-19" NA           NA           "2013-12-19" NA          
## [22381] NA           NA           NA           "2013-12-19" "2011-11-25"
## [22386] "2011-11-25" "2011-11-25" NA           "2012-05-13" NA          
## [22391] "2011-11-27" NA           "2012-05-13" NA           NA          
## [22396] "2011-11-27" "2012-05-13" "2012-05-13" "2012-05-13" "2011-11-27"
## [22401] "2012-05-13" "2013-06-17" "2013-06-17" "2013-06-17" "2013-06-17"
## [22406] "2013-06-17" "2011-05-24" "2011-05-24" "2011-05-24" "2011-05-24"
## [22411] "2011-05-24" "2011-07-17" "2011-07-17" "2011-07-17" "2011-07-17"
## [22416] "2011-07-17" "2013-06-13" "2011-11-19" "2013-06-13" "2013-06-13"
## [22421] "2011-11-19" NA           NA           NA           NA          
## [22426] NA           NA           NA           "2012-03-20" "2012-03-30"
## [22431] "2012-03-20" "2012-03-20" "2012-03-30" "2012-03-20" NA          
## [22436] "2012-03-30" "2012-03-30" NA           "2012-03-20" NA          
## [22441] "2012-03-30" "2013-07-13" "2011-05-20" "2011-05-20" "2011-05-20"
## [22446] "2013-07-13" NA           "2013-03-13" NA           NA          
## [22451] NA           NA           "2013-03-13" NA           NA          
## [22456] NA           NA           NA           "2013-03-13" NA          
## [22461] NA           "2013-03-13" NA           NA           "2013-03-13"
## [22466] NA           "2013-03-13" NA           NA           NA          
## [22471] NA           NA           NA           NA           "2012-05-31"
## [22476] NA           "2012-05-31" "2012-05-31" "2013-01-19" "2013-01-17"
## [22481] "2013-01-17" "2013-01-19" "2012-03-26" "2012-12-27" "2012-12-27"
## [22486] "2012-03-26" "2011-07-21" "2013-11-16" "2013-11-16" NA          
## [22491] NA           "2013-11-16" "2011-07-21" "2011-07-21" NA          
## [22496] "2011-07-21" "2011-07-21" NA           NA           "2011-08-31"
## [22501] "2012-12-30" NA           "2012-12-30" "2011-08-31" "2011-08-31"
## [22506] NA           NA           NA           NA           NA          
## [22511] "2011-08-31" NA           NA           NA           NA          
## [22516] NA           "2012-09-27" NA           "2012-09-27" "2012-09-27"
## [22521] "2012-11-29" "2012-11-29" "2012-11-29" "2012-09-26" NA          
## [22526] "2012-09-26" NA           "2012-09-26" "2012-04-14" NA          
## [22531] NA           "2012-04-14" NA           NA           "2012-02-20"
## [22536] "2012-02-20" "2011-08-23" "2011-08-23" "2011-08-26" "2011-08-26"
## [22541] NA           NA           NA           NA           NA          
## [22546] "2013-05-15" "2011-11-18" NA           "2013-05-15" "2011-11-18"
## [22551] NA           NA           "2013-05-15" NA           "2013-05-15"
## [22556] NA           NA           NA           NA           NA          
## [22561] NA           NA           NA           "2013-07-28" NA          
## [22566] "2013-07-28" NA           "2013-05-28" "2013-05-28" NA          
## [22571] NA           NA           NA           NA           NA          
## [22576] NA           "2011-04-26" "2011-04-26" "2011-04-26" "2011-04-26"
## [22581] "2011-04-26" "2011-04-26" NA           NA           NA          
## [22586] NA           NA           NA           "2011-04-24" "2013-07-18"
## [22591] "2013-07-18" "2013-07-18" "2011-04-24" NA           NA          
## [22596] "2013-07-18" "2013-07-18" "2013-07-18" NA           NA          
## [22601] NA           NA           "2012-04-22" "2012-04-22" "2012-04-22"
## [22606] "2011-01-29" "2011-01-29" "2011-05-25" "2011-05-25" "2012-01-16"
## [22611] "2011-01-29" "2011-05-25" "2012-01-18" "2012-01-16" "2012-01-18"
## [22616] "2011-05-25" "2011-05-25" "2012-04-22" "2013-04-20" "2011-07-27"
## [22621] "2011-07-29" "2013-05-28" "2013-04-20" NA           "2013-04-20"
## [22626] NA           NA           "2013-04-20" "2013-05-28" "2013-05-28"
## [22631] NA           NA           "2013-04-20" "2013-03-14" NA          
## [22636] "2011-07-29" "2011-07-27" "2013-05-28" NA           "2013-03-14"
## [22641] "2013-05-28" "2013-05-28" "2011-04-26" "2011-04-26" "2012-09-27"
## [22646] "2011-04-26" "2012-09-27" "2013-01-19" NA           "2011-08-23"
## [22651] NA           "2013-01-19" "2013-01-19" "2013-01-19" "2011-08-23"
## [22656] "2013-01-19" "2011-08-23" NA           "2011-11-28" "2011-11-28"
## [22661] "2011-11-28" "2011-11-26" "2011-11-26" "2011-10-20" "2011-11-26"
## [22666] "2011-10-20" "2012-10-27" "2012-10-27" "2011-11-26" "2011-11-28"
## [22671] "2011-11-26" "2012-10-27" "2011-11-26" "2012-10-27" "2011-11-28"
## [22676] "2013-03-16" "2013-03-16" "2011-11-28" "2013-03-16" "2012-10-27"
## [22681] "2013-11-25" "2013-11-25" "2013-11-25" NA           NA          
## [22686] NA           NA           "2011-07-14" NA           NA          
## [22691] "2011-07-14" "2011-07-14" "2012-12-31" NA           "2012-12-31"
## [22696] NA           NA           "2011-07-14" "2011-07-14" "2012-12-31"
## [22701] "2012-12-31" "2012-12-31" "2011-01-25" "2011-01-25" "2013-08-17"
## [22706] "2011-04-29" "2013-08-17" "2011-04-29" "2011-01-25" "2013-08-17"
## [22711] "2013-08-17" "2011-04-29" "2013-08-17" NA           NA          
## [22716] NA           NA           "2013-08-19" "2013-08-19" NA          
## [22721] NA           NA           NA           NA           NA          
## [22726] NA           NA           NA           NA           "2013-01-25"
## [22731] "2013-01-25" "2012-07-14" "2012-07-14" "2012-07-14" "2011-11-24"
## [22736] "2011-11-18" "2011-11-24" "2011-11-18" "2011-11-18" "2011-11-24"
## [22741] "2011-11-18" "2011-11-24" "2011-11-18" "2011-11-18" "2011-11-24"
## [22746] "2011-11-24" "2011-12-27" "2011-12-27" "2014-01-14" "2011-12-27"
## [22751] "2014-01-14" "2014-02-18" NA           "2012-05-26" "2011-04-15"
## [22756] NA           "2012-05-26" "2014-02-18" "2012-05-26" "2011-04-15"
## [22761] "2012-05-26" "2012-05-26" "2013-09-25" "2011-07-27" "2011-07-27"
## [22766] "2011-07-27" "2011-07-27" "2013-09-25" "2013-09-25" "2012-07-24"
## [22771] "2011-07-27" "2011-07-27" "2013-09-25" "2012-07-24" "2013-09-25"
## [22776] "2013-09-25" "2011-05-29" "2011-05-29" "2011-05-29" "2011-05-29"
## [22781] "2014-01-18" "2014-01-18" "2012-02-18" "2012-02-18" "2014-01-18"
## [22786] "2014-01-18" NA           "2012-02-18" "2012-02-18" NA          
## [22791] "2012-02-18" "2014-01-18" NA           NA           NA          
## [22796] NA           NA           "2011-03-17" NA           "2011-03-17"
## [22801] "2011-03-17" "2011-03-17" "2011-03-17" NA           "2011-01-28"
## [22806] "2011-01-28" "2011-04-16" "2011-04-16" "2011-04-16" NA          
## [22811] "2011-04-16" "2011-01-28" "2011-04-16" NA           "2011-01-28"
## [22816] "2011-01-28" "2011-01-28" NA           "2013-10-14" NA          
## [22821] "2013-10-14" "2013-10-14" NA           NA           NA          
## [22826] NA           NA           NA           "2013-10-29" NA          
## [22831] "2012-05-19" "2013-10-29" "2012-05-19" "2012-05-19" NA          
## [22836] "2013-02-24" "2013-02-24" NA           "2011-02-26" NA          
## [22841] "2012-03-26" "2013-02-24" NA           "2012-03-26" "2011-02-26"
## [22846] NA           NA           "2013-02-24" NA           NA          
## [22851] "2013-02-24" NA           NA           NA           NA          
## [22856] NA           NA           "2012-05-18" "2012-05-18" "2013-07-19"
## [22861] "2013-07-19" "2011-07-24" "2012-05-18" "2013-07-19" NA          
## [22866] NA           "2011-07-24" "2012-07-29" NA           NA          
## [22871] "2013-07-19" "2011-03-30" "2011-03-30" NA           "2012-07-29"
## [22876] "2011-03-30" "2013-07-19" "2013-03-20" "2013-07-20" "2013-07-20"
## [22881] "2012-08-30" "2013-07-20" "2013-03-20" "2012-08-30" "2013-07-20"
## [22886] "2013-03-20" "2012-08-30" "2013-07-20" "2012-01-19" "2012-07-25"
## [22891] "2012-01-19" "2012-07-25" "2012-01-19" NA           NA          
## [22896] NA           NA           NA           "2011-04-25" NA          
## [22901] "2011-04-25" "2013-04-27" "2013-04-27" "2011-04-25" "2013-04-27"
## [22906] NA           NA           "2013-04-27" NA           "2011-07-15"
## [22911] NA           NA           "2011-07-15" NA           NA          
## [22916] NA           NA           NA           NA           NA          
## [22921] "2011-09-30" "2013-01-22" "2011-09-30" "2011-10-18" "2011-10-18"
## [22926] "2013-01-22" "2013-01-22" "2011-09-30" "2013-01-22" "2013-01-22"
## [22931] "2011-09-30" "2011-09-30" NA           NA           NA          
## [22936] NA           NA           NA           NA           NA          
## [22941] NA           "2012-11-25" "2012-11-25" "2012-11-25" "2012-06-17"
## [22946] NA           NA           "2012-06-17" NA           "2012-06-17"
## [22951] "2012-06-17" "2011-11-28" NA           "2011-11-28" "2011-11-28"
## [22956] "2012-06-17" "2011-12-21" "2011-12-21" "2013-02-17" "2013-04-25"
## [22961] "2013-02-17" "2013-04-25" "2011-12-21" "2011-08-28" "2011-03-31"
## [22966] NA           NA           "2011-03-31" "2011-08-28" "2014-02-14"
## [22971] NA           NA           "2014-02-14" NA           NA          
## [22976] NA           "2011-10-20" "2011-10-20" "2011-10-20" NA          
## [22981] NA           NA           NA           NA           "2011-05-23"
## [22986] "2011-05-20" "2011-05-23" "2011-05-20" "2013-11-21" "2013-11-21"
## [22991] "2013-11-21" "2013-11-21" "2013-11-21" "2012-11-30" NA          
## [22996] NA           "2012-11-30" "2012-11-30" NA           NA          
## [23001] NA           NA           "2014-01-22" "2013-04-29" "2013-04-29"
## [23006] "2014-01-22" "2014-01-22" "2013-04-29" "2014-01-22" "2014-01-22"
## [23011] "2014-01-22" "2013-10-14" NA           "2013-10-14" NA          
## [23016] NA           NA           NA           "2013-10-14" "2013-10-14"
## [23021] NA           NA           NA           "2013-10-14" NA          
## [23026] NA           "2011-06-22" NA           NA           "2013-12-21"
## [23031] NA           NA           "2011-06-22" "2012-06-22" "2013-12-21"
## [23036] "2011-06-22" "2013-12-21" "2013-12-21" "2012-06-22" "2013-12-21"
## [23041] "2013-12-21" "2012-09-22" NA           NA           NA          
## [23046] NA           "2012-09-22" NA           NA           NA          
## [23051] NA           NA           NA           NA           NA          
## [23056] "2012-02-18" "2012-02-18" "2012-02-18" "2012-02-18" "2012-02-18"
## [23061] "2012-04-23" "2012-04-23" "2012-04-23" NA           NA          
## [23066] "2012-04-23" "2012-04-23" "2012-04-23" "2013-05-22" "2013-05-22"
## [23071] "2013-05-22" "2012-06-29" "2012-06-29" "2012-05-19" NA          
## [23076] NA           NA           "2012-05-19" NA           NA          
## [23081] "2012-05-19" NA           "2012-05-19" "2012-05-19" NA          
## [23086] NA           NA           NA           NA           "2013-10-17"
## [23091] "2013-10-17" NA           "2013-10-17" NA           NA          
## [23096] NA           NA           "2012-01-28" "2012-04-14" "2012-04-14"
## [23101] "2012-01-28" NA           NA           "2012-01-28" NA          
## [23106] NA           NA           "2013-04-15" "2013-04-15" NA          
## [23111] NA           NA           NA           NA           NA          
## [23116] "2013-04-15" NA           NA           NA           NA          
## [23121] "2012-04-17" "2012-04-17" NA           NA           NA          
## [23126] NA           "2014-01-15" NA           NA           "2014-01-15"
## [23131] NA           NA           NA           "2014-01-15" NA          
## [23136] NA           NA           NA           NA           NA          
## [23141] NA           "2011-06-20" "2011-06-20" "2011-06-20" NA          
## [23146] "2011-06-20" "2012-01-28" "2012-01-28" NA           NA          
## [23151] "2013-11-29" "2013-11-29" "2013-11-29" "2013-11-29" "2013-11-29"
## [23156] "2013-11-29" NA           NA           NA           "2012-08-29"
## [23161] NA           "2012-08-29" NA           NA           "2012-08-29"
## [23166] "2011-06-20" NA           "2012-08-29" "2011-06-20" NA          
## [23171] NA           NA           "2012-08-29" NA           NA          
## [23176] NA           NA           NA           NA           NA          
## [23181] NA           NA           NA           NA           NA          
## [23186] NA           "2014-01-14" "2013-06-13" "2013-06-13" "2014-01-14"
## [23191] "2013-06-23" NA           "2013-06-23" "2013-06-23" "2013-06-23"
## [23196] NA           NA           "2013-03-20" NA           "2012-01-20"
## [23201] NA           NA           NA           "2012-01-20" NA          
## [23206] "2013-03-20" NA           "2012-03-31" "2012-03-31" "2014-01-23"
## [23211] "2014-01-23" "2012-05-24" NA           NA           NA          
## [23216] "2012-05-24" NA           "2013-03-15" NA           NA          
## [23221] "2013-03-15" NA           NA           NA           NA          
## [23226] NA           NA           NA           NA           NA          
## [23231] "2011-09-17" "2011-09-17" "2011-09-17" NA           NA          
## [23236] NA           "2012-04-25" NA           "2013-05-23" "2013-05-23"
## [23241] "2013-05-23" NA           "2013-05-23" "2012-04-25" "2012-04-25"
## [23246] "2013-05-23" "2012-04-25" "2012-04-25" "2011-10-26" "2011-10-26"
## [23251] "2011-10-26" "2011-10-26" "2011-10-26" "2012-10-14" "2011-05-19"
## [23256] "2011-05-19" "2011-05-19" "2011-05-19" "2013-01-30" "2012-10-14"
## [23261] "2013-01-30" "2012-10-14" "2012-10-14" "2011-05-19" "2011-05-19"
## [23266] "2012-10-14" "2013-12-22" NA           NA           "2013-12-22"
## [23271] "2013-10-25" NA           "2013-10-25" "2013-09-22" "2013-10-25"
## [23276] "2013-09-22" "2013-10-25" "2013-10-25" NA           NA          
## [23281] NA           NA           NA           NA           "2012-09-22"
## [23286] NA           NA           NA           "2012-09-22" NA          
## [23291] NA           NA           "2011-09-24" NA           "2011-09-24"
## [23296] "2012-11-30" "2012-11-30" "2011-08-28" "2012-01-31" "2013-02-23"
## [23301] "2013-02-23" "2013-05-15" "2013-11-26" "2012-01-31" "2013-02-23"
## [23306] "2013-05-15" "2013-11-26" "2011-08-28" "2013-02-23" "2013-11-26"
## [23311] "2013-02-23" "2012-01-31" "2011-08-28" "2011-12-20" "2011-12-20"
## [23316] "2011-12-20" "2011-12-20" "2011-12-20" "2011-12-20" NA          
## [23321] NA           "2013-10-13" NA           NA           NA          
## [23326] NA           "2011-09-20" "2013-10-13" "2011-09-20" "2011-09-20"
## [23331] "2013-10-13" NA           "2011-09-20" NA           "2013-10-13"
## [23336] "2013-10-13" NA           "2013-05-20" NA           "2013-01-19"
## [23341] "2012-08-25" "2013-01-19" NA           NA           "2012-09-19"
## [23346] "2012-08-25" "2012-08-25" NA           NA           "2013-05-20"
## [23351] "2013-05-20" "2013-05-20" "2013-05-20" NA           "2012-09-19"
## [23356] "2013-05-20" "2012-08-25" "2012-05-29" "2012-05-29" "2012-09-19"
## [23361] "2012-08-25" NA           "2012-10-25" NA           NA          
## [23366] "2012-02-17" NA           "2012-02-17" "2012-02-17" NA          
## [23371] "2012-10-25" "2011-09-15" "2011-09-15" "2011-09-15" "2011-09-15"
## [23376] "2011-09-15" "2011-09-15" "2012-03-13" NA           NA          
## [23381] NA           NA           NA           NA           "2012-03-13"
## [23386] NA           NA           NA           NA           NA          
## [23391] "2013-01-31" "2013-01-31" "2013-01-31" "2013-01-31" "2013-01-31"
## [23396] NA           NA           "2013-11-26" "2013-11-26" "2013-04-20"
## [23401] "2013-11-26" "2013-11-26" "2013-11-26" "2013-04-20" "2011-04-13"
## [23406] NA           "2011-04-13" NA           NA           NA          
## [23411] "2014-01-20" "2014-01-20" "2014-01-20" "2014-01-20" "2014-01-20"
## [23416] "2014-01-20" "2013-07-22" "2012-07-30" NA           NA          
## [23421] NA           NA           "2013-07-22" "2012-07-30" "2013-07-22"
## [23426] "2012-07-30" NA           NA           "2013-07-22" "2013-07-22"
## [23431] "2012-03-20" "2012-03-20" "2012-03-20" "2013-05-31" "2012-03-20"
## [23436] NA           "2013-05-31" "2012-03-20" NA           NA          
## [23441] NA           "2012-03-20" NA           NA           NA          
## [23446] "2012-10-22" NA           NA           NA           NA          
## [23451] "2012-10-22" NA           NA           "2012-10-22" "2012-10-22"
## [23456] NA           "2012-10-22" "2011-11-16" "2013-11-15" "2013-11-15"
## [23461] "2013-11-15" "2011-11-16" "2012-04-23" "2012-04-23" "2012-04-23"
## [23466] "2012-04-23" NA           NA           NA           NA          
## [23471] "2011-09-17" "2011-09-17" "2011-09-17" "2011-09-17" "2011-11-18"
## [23476] "2011-09-17" NA           "2011-09-17" NA           NA          
## [23481] "2011-11-18" NA           NA           NA           NA          
## [23486] NA           NA           NA           NA           NA          
## [23491] NA           "2011-09-14" "2012-10-21" "2013-12-21" "2013-12-21"
## [23496] "2011-09-14" "2012-10-21" "2013-12-21" "2011-09-14" "2011-09-14"
## [23501] "2011-09-14" NA           NA           NA           NA          
## [23506] NA           NA           NA           NA           NA          
## [23511] NA           NA           NA           NA           NA          
## [23516] NA           NA           NA           NA           NA          
## [23521] NA           "2012-10-28" NA           "2012-10-28" NA          
## [23526] NA           NA           NA           NA           NA          
## [23531] NA           NA           "2014-01-30" NA           NA          
## [23536] "2014-01-30" "2014-01-30" NA           NA           "2014-01-30"
## [23541] "2014-01-30" NA           NA           "2013-02-22" "2013-02-22"
## [23546] "2013-02-22" "2013-02-22" "2013-02-22" "2013-01-19" "2013-01-19"
## [23551] "2013-12-17" "2013-12-17" "2013-12-17" NA           "2013-05-23"
## [23556] "2011-12-21" NA           NA           NA           "2011-12-21"
## [23561] "2013-05-23" NA           "2013-05-23" "2012-05-17" "2011-03-18"
## [23566] "2011-03-18" "2012-05-17" "2011-03-18" "2011-03-18" "2011-03-18"
## [23571] "2012-05-17" "2012-05-17" "2012-05-17" NA           NA          
## [23576] NA           NA           NA           "2011-10-18" "2011-10-18"
## [23581] "2011-10-18" "2012-01-25" "2012-01-25" "2012-01-25" "2012-01-25"
## [23586] "2012-01-19" "2012-08-25" "2012-01-19" "2012-08-25" "2012-08-25"
## [23591] "2013-02-25" "2013-02-25" "2013-02-25" "2013-02-25" "2013-02-25"
## [23596] "2012-08-25" "2012-08-25" "2012-08-25" "2013-02-25" NA          
## [23601] NA           NA           NA           "2013-06-14" NA          
## [23606] "2013-06-14" "2011-06-23" "2011-06-23" "2011-06-23" "2011-06-23"
## [23611] "2013-06-14" "2011-06-23" "2012-10-24" "2013-02-16" "2012-07-28"
## [23616] "2012-10-24" "2013-02-16" "2012-10-24" "2012-10-24" "2012-07-28"
## [23621] "2012-07-28" NA           NA           "2012-07-28" "2013-02-16"
## [23626] NA           "2012-07-28" "2012-12-28" NA           "2012-12-28"
## [23631] "2011-11-21" "2012-12-28" "2012-12-19" NA           "2011-11-21"
## [23636] NA           NA           "2012-12-28" "2012-12-28" NA          
## [23641] NA           "2012-12-19" NA           NA           "2012-10-20"
## [23646] NA           NA           NA           "2012-10-20" "2013-02-20"
## [23651] "2013-02-20" NA           "2013-02-20" NA           "2013-02-20"
## [23656] NA           NA           NA           NA           "2013-02-20"
## [23661] NA           NA           NA           NA           NA          
## [23666] "2011-07-16" "2013-03-16" "2013-03-16" "2013-03-16" "2013-04-29"
## [23671] "2013-03-16" NA           NA           NA           "2011-07-16"
## [23676] NA           "2013-03-16" "2011-07-16" "2013-04-29" "2013-04-29"
## [23681] "2012-08-31" "2012-08-31" "2011-04-24" NA           "2011-11-28"
## [23686] "2011-04-24" "2011-04-24" NA           "2011-11-28" "2011-11-28"
## [23691] "2011-04-24" "2011-11-28" NA           NA           "2011-04-24"
## [23696] "2011-11-28" NA           NA           "2011-11-28" "2011-11-13"
## [23701] NA           "2011-03-31" "2011-11-13" NA           "2011-08-14"
## [23706] NA           "2011-03-31" NA           "2011-08-14" "2011-03-31"
## [23711] NA           NA           "2013-05-15" "2013-05-15" "2012-10-15"
## [23716] "2013-05-15" "2012-10-15" "2013-05-15" "2013-02-18" "2013-02-18"
## [23721] "2013-02-18" "2013-02-18" "2013-02-18" "2012-05-26" "2012-05-26"
## [23726] "2012-05-26" "2012-05-26" "2012-05-26" NA           NA          
## [23731] NA           NA           NA           NA           "2013-10-13"
## [23736] NA           NA           "2013-10-13" NA           NA          
## [23741] "2013-10-13" NA           NA           "2011-12-16" "2011-12-16"
## [23746] NA           "2011-12-16" NA           NA           NA          
## [23751] NA           NA           "2013-09-24" "2013-09-24" "2013-09-24"
## [23756] "2013-09-24" "2013-09-24" NA           NA           NA          
## [23761] NA           NA           NA           "2012-08-27" NA          
## [23766] "2012-08-27" "2013-10-23" NA           NA           NA          
## [23771] "2012-08-31" "2012-08-31" "2012-08-27" "2012-08-31" "2013-10-23"
## [23776] "2012-08-31" "2012-08-27" "2013-10-23" "2011-12-21" "2013-06-29"
## [23781] "2013-06-29" "2011-12-21" "2011-12-21" "2014-01-28" "2014-01-28"
## [23786] "2014-01-28" "2011-12-21" "2011-12-21" NA           NA          
## [23791] "2013-01-27" NA           "2013-01-27" "2013-01-21" "2013-01-21"
## [23796] "2013-01-21" "2011-05-31" "2011-05-31" "2013-08-28" NA          
## [23801] NA           NA           "2013-08-28" NA           "2013-08-28"
## [23806] NA           NA           NA           NA           "2011-07-29"
## [23811] "2013-09-22" "2011-07-29" "2013-09-22" "2012-11-29" "2012-11-29"
## [23816] "2012-11-29" "2013-09-15" "2013-09-15" "2011-07-29" "2012-11-29"
## [23821] "2011-07-29" "2013-11-16" "2013-11-16" NA           NA          
## [23826] "2013-08-23" NA           "2013-08-23" NA           NA          
## [23831] NA           NA           "2013-08-22" "2013-08-22" NA          
## [23836] "2013-06-16" NA           "2013-06-16" NA           NA          
## [23841] NA           "2013-06-16" NA           NA           NA          
## [23846] NA           "2012-12-17" "2012-07-22" "2013-02-19" "2012-07-13"
## [23851] "2012-12-17" "2013-02-19" "2012-07-13" "2012-07-22" "2013-02-19"
## [23856] "2012-07-13" "2012-07-22" "2013-10-20" NA           NA          
## [23861] NA           NA           NA           NA           "2013-10-20"
## [23866] NA           NA           NA           NA           NA          
## [23871] NA           NA           "2013-10-20" "2013-10-20" "2013-10-20"
## [23876] NA           NA           NA           NA           "2013-02-28"
## [23881] NA           "2013-02-28" NA           "2013-02-28" NA          
## [23886] "2011-12-28" "2011-12-28" "2011-12-28" NA           NA          
## [23891] NA           "2011-04-18" NA           NA           NA          
## [23896] NA           NA           "2011-04-18" "2011-04-18" NA          
## [23901] NA           NA           NA           "2012-11-15" "2012-11-15"
## [23906] NA           NA           "2012-06-19" NA           NA          
## [23911] NA           NA           "2012-06-19" "2012-06-19" NA          
## [23916] NA           NA           NA           "2012-10-29" NA          
## [23921] NA           "2012-10-29" "2013-12-30" "2013-12-30" NA          
## [23926] "2013-12-30" "2013-12-30" NA           "2013-12-30" NA          
## [23931] NA           NA           NA           "2013-12-30" NA          
## [23936] NA           NA           NA           NA           NA          
## [23941] "2014-01-23" "2014-01-23" "2012-08-23" "2014-01-23" "2014-01-23"
## [23946] "2012-08-23" NA           "2011-09-17" NA           NA          
## [23951] NA           NA           "2011-09-17" "2011-09-17" NA          
## [23956] NA           NA           NA           NA           NA          
## [23961] NA           NA           NA           "2011-03-17" "2011-03-17"
## [23966] NA           "2012-01-20" NA           "2011-07-31" "2012-01-20"
## [23971] "2012-01-20" "2011-07-31" NA           "2011-07-31" "2012-11-19"
## [23976] "2012-11-19" "2012-11-19" "2011-07-31" "2011-07-31" NA          
## [23981] NA           "2012-01-15" "2011-12-29" "2011-10-17" NA          
## [23986] NA           "2011-10-17" "2012-01-15" "2011-10-17" NA          
## [23991] "2011-10-17" "2011-12-29" "2011-12-29" NA           "2011-12-29"
## [23996] "2011-12-29" "2011-10-18" "2012-03-24" "2012-10-22" "2012-10-15"
## [24001] "2012-10-15" "2012-10-22" "2012-10-15" "2012-10-15" "2011-10-18"
## [24006] "2012-10-22" "2012-10-15" "2012-10-22" "2012-10-22" "2011-10-18"
## [24011] "2011-10-18" "2011-10-18" "2012-03-24" "2011-10-18" "2012-03-24"
## [24016] NA           NA           "2011-09-30" "2011-09-30" NA          
## [24021] "2014-01-20" NA           "2011-12-13" "2014-01-20" "2014-01-20"
## [24026] "2011-12-13" "2011-12-13" "2014-01-20" "2014-01-20" NA          
## [24031] "2014-01-19" NA           "2012-04-28" "2014-01-19" "2012-04-28"
## [24036] "2014-01-19" "2012-04-28" "2013-03-28" "2013-03-28" "2014-01-27"
## [24041] "2014-01-27" "2014-01-27" NA           NA           "2012-08-22"
## [24046] NA           NA           NA           "2012-08-22" NA          
## [24051] "2012-08-22" NA           NA           NA           NA          
## [24056] "2013-07-17" "2013-07-17" "2013-02-17" "2013-07-17" "2013-07-17"
## [24061] "2014-02-18" "2012-07-30" "2012-07-30" "2013-02-17" "2014-02-18"
## [24066] "2013-07-17" "2013-02-17" "2012-01-14" "2011-12-18" "2011-05-18"
## [24071] "2011-05-18" "2012-01-14" "2011-05-18" "2013-09-14" "2011-05-18"
## [24076] "2011-12-18" "2011-05-18" "2012-01-14" "2013-09-14" "2011-12-18"
## [24081] "2013-09-14" NA           NA           "2013-02-16" NA          
## [24086] "2013-08-17" "2013-02-16" "2012-06-13" NA           "2012-06-13"
## [24091] "2013-02-16" NA           "2013-08-17" NA           "2013-01-25"
## [24096] NA           "2014-01-29" NA           NA           "2014-01-29"
## [24101] NA           "2014-01-29" NA           "2013-01-25" NA          
## [24106] "2014-01-29" "2014-01-29" NA           NA           NA          
## [24111] NA           "2011-07-27" "2014-02-15" "2014-02-15" "2011-07-27"
## [24116] "2011-08-27" "2014-02-15" "2011-08-27" "2011-08-27" "2011-08-27"
## [24121] "2014-02-15" "2011-08-27" "2014-02-15" NA           "2013-10-23"
## [24126] NA           NA           NA           NA           NA          
## [24131] NA           NA           NA           NA           "2013-10-23"
## [24136] NA           NA           NA           "2012-04-26" NA          
## [24141] NA           "2012-04-26" NA           "2012-04-26" NA          
## [24146] "2012-04-26" "2012-04-26" NA           NA           NA          
## [24151] NA           "2012-07-28" "2012-07-28" "2013-12-19" "2012-07-28"
## [24156] "2013-12-19" "2013-02-18" "2013-02-18" "2013-02-19" "2013-03-28"
## [24161] "2013-03-28" "2013-02-19" "2013-02-18" "2013-02-19" "2013-02-27"
## [24166] "2013-02-27" "2013-02-26" "2013-02-27" NA           "2011-09-16"
## [24171] NA           "2013-02-26" NA           "2013-02-27" "2013-02-27"
## [24176] "2013-02-26" "2011-09-16" "2013-02-26" "2013-02-26" "2011-02-25"
## [24181] "2011-02-25" "2012-10-14" "2012-10-14" "2012-10-14" "2012-10-14"
## [24186] "2012-10-14" "2012-08-30" "2011-02-25" "2012-10-14" "2012-08-30"
## [24191] "2011-06-17" "2011-06-17" "2012-04-14" "2012-04-14" NA          
## [24196] NA           "2012-04-14" NA           "2012-04-14" "2012-04-14"
## [24201] NA           NA           NA           NA           NA          
## [24206] NA           NA           NA           NA           NA          
## [24211] NA           NA           NA           "2012-11-21" "2012-11-21"
## [24216] NA           "2012-11-21" NA           "2012-11-21" NA          
## [24221] "2012-11-21" NA           NA           NA           NA          
## [24226] "2012-07-25" NA           "2012-07-25" "2012-07-25" "2012-07-25"
## [24231] NA           "2012-07-25" NA           NA           "2011-04-29"
## [24236] "2011-04-29" NA           "2013-11-23" NA           "2012-10-23"
## [24241] "2012-10-23" "2012-02-22" "2012-10-23" "2013-11-23" NA          
## [24246] "2012-10-23" "2012-02-22" "2012-10-23" "2012-02-22" "2012-10-23"
## [24251] NA           "2012-06-23" "2013-04-25" "2012-06-23" NA          
## [24256] NA           "2013-01-27" "2012-05-29" NA           NA          
## [24261] NA           "2012-06-23" "2012-06-23" NA           NA          
## [24266] "2013-01-27" NA           "2012-05-29" "2012-06-23" "2013-04-25"
## [24271] NA           "2012-05-29" "2013-04-25" "2012-05-29" "2013-04-25"
## [24276] NA           "2013-04-25" "2012-05-29" "2012-10-28" "2012-10-28"
## [24281] NA           "2012-10-28" NA           "2013-06-15" "2013-11-26"
## [24286] "2013-06-15" "2013-11-26" "2013-11-26" NA           "2013-06-15"
## [24291] NA           NA           "2013-11-26" "2013-11-26" NA          
## [24296] NA           NA           NA           NA           NA          
## [24301] NA           NA           NA           "2013-09-13" "2013-09-13"
## [24306] "2013-09-13" NA           NA           "2011-08-15" NA          
## [24311] "2011-04-13" "2011-04-13" "2011-04-13" "2011-08-15" "2012-10-20"
## [24316] "2014-01-16" "2014-01-16" "2012-10-20" "2012-02-29" "2012-10-20"
## [24321] "2014-02-19" "2011-07-25" "2012-02-29" "2014-02-19" "2014-02-19"
## [24326] "2014-01-16" "2014-01-16" "2014-02-19" "2014-02-19" "2011-07-25"
## [24331] "2012-05-13" "2012-05-13" "2013-03-30" NA           "2012-05-13"
## [24336] NA           "2013-02-23" NA           "2013-03-30" "2012-05-13"
## [24341] "2012-05-13" NA           "2013-02-23" "2013-03-30" NA          
## [24346] "2011-09-17" "2011-09-17" "2011-09-17" NA           NA          
## [24351] NA           NA           NA           NA           NA          
## [24356] "2013-04-28" "2013-04-28" "2013-04-28" "2013-04-28" "2013-04-28"
## [24361] "2011-10-28" "2011-02-26" "2011-10-28" NA           "2011-02-26"
## [24366] "2011-10-28" NA           "2011-10-28" NA           "2011-10-28"
## [24371] NA           NA           NA           NA           NA          
## [24376] NA           NA           NA           "2011-08-18" "2012-12-23"
## [24381] "2011-08-18" "2011-08-18" "2011-08-18" "2012-12-23" "2011-08-18"
## [24386] "2012-11-15" "2012-11-15" "2012-11-15" "2011-09-14" "2012-06-29"
## [24391] NA           "2012-06-29" "2011-09-14" NA           "2011-09-14"
## [24396] NA           "2012-05-19" "2012-05-19" NA           "2012-05-20"
## [24401] "2012-05-20" NA           NA           NA           NA          
## [24406] NA           NA           NA           NA           NA          
## [24411] "2012-11-18" "2011-09-30" "2012-11-18" "2011-09-30" "2011-09-30"
## [24416] NA           NA           NA           NA           "2011-09-30"
## [24421] NA           "2011-09-30" "2012-05-24" NA           NA          
## [24426] NA           "2012-05-24" "2013-05-22" "2013-05-22" "2013-05-22"
## [24431] "2013-05-18" "2013-05-18" "2011-06-15" "2011-06-15" "2011-06-15"
## [24436] "2011-06-15" "2013-05-18" "2011-06-15" "2011-06-15" NA          
## [24441] "2013-03-23" NA           NA           "2012-01-30" NA          
## [24446] "2013-03-23" NA           NA           "2012-12-26" "2013-03-23"
## [24451] "2012-12-26" "2013-03-23" "2012-01-30" "2012-01-30" "2013-03-23"
## [24456] "2012-01-30" "2012-01-30" "2012-12-26" NA           NA          
## [24461] NA           NA           NA           "2012-04-27" "2011-03-28"
## [24466] "2012-04-26" "2012-04-26" "2012-04-29" "2012-04-29" "2011-03-28"
## [24471] "2011-03-28" "2012-04-27" "2012-04-26" "2012-04-29" "2014-01-14"
## [24476] "2012-12-27" NA           "2014-01-14" "2012-12-27" NA          
## [24481] "2013-04-18" "2013-11-18" "2013-04-18" "2013-11-18" "2013-04-18"
## [24486] "2013-04-18" "2013-04-18" "2013-11-29" "2013-11-29" "2013-05-18"
## [24491] "2011-09-23" "2011-09-23" "2011-09-23" "2013-05-18" "2011-09-23"
## [24496] "2013-11-29" "2013-11-29" "2013-04-27" "2013-04-27" "2013-04-27"
## [24501] "2013-04-27" "2013-04-27" "2013-04-27" "2013-04-16" "2013-04-16"
## [24506] "2014-01-22" "2014-01-22" "2014-01-22" "2014-01-17" "2014-01-22"
## [24511] "2013-04-16" "2011-11-23" "2011-11-23" "2014-01-17" "2011-11-23"
## [24516] "2014-01-22" "2011-11-23" "2011-11-23" "2013-12-15" "2013-12-15"
## [24521] "2013-12-15" "2012-04-17" "2012-04-17" "2012-04-17" "2012-04-17"
## [24526] "2012-04-17" NA           "2011-08-21" NA           NA          
## [24531] NA           NA           "2011-08-21" NA           NA          
## [24536] NA           NA           NA           NA           "2013-03-22"
## [24541] "2013-03-22" NA           "2013-12-13" NA           NA          
## [24546] "2013-12-13" NA           "2012-11-25" NA           NA          
## [24551] NA           "2013-12-13" "2013-12-13" NA           NA          
## [24556] "2013-12-13" NA           "2012-11-25" NA           NA          
## [24561] "2013-12-13" "2011-03-13" "2011-11-13" "2011-11-13" "2011-03-13"
## [24566] "2011-03-13" "2013-12-18" "2013-12-28" "2013-12-18" "2013-12-28"
## [24571] NA           NA           "2012-05-16" "2012-05-16" "2012-05-16"
## [24576] "2012-07-19" "2012-05-16" NA           "2012-05-16" "2012-07-19"
## [24581] "2012-07-19" NA           NA           "2013-08-26" "2013-08-26"
## [24586] "2013-08-27" "2013-08-27" NA           NA           NA          
## [24591] NA           NA           "2013-08-27" NA           NA          
## [24596] NA           NA           "2013-08-26" NA           "2013-08-26"
## [24601] "2013-08-27" NA           "2013-08-27" "2013-08-26" "2012-01-13"
## [24606] "2012-01-13" "2011-11-23" "2011-11-29" "2011-11-28" "2011-11-23"
## [24611] "2011-11-28" NA           "2011-11-29" "2013-07-31" "2013-07-31"
## [24616] "2011-11-23" NA           NA           "2011-11-28" "2011-11-29"
## [24621] "2013-07-31" "2013-11-17" "2013-11-17" "2013-11-17" "2012-07-29"
## [24626] "2012-07-29" "2012-07-29" "2012-07-29" "2013-11-17" "2012-07-29"
## [24631] "2013-09-23" "2013-11-17" "2013-09-23" "2012-07-29" NA          
## [24636] NA           NA           NA           NA           NA          
## [24641] NA           NA           NA           "2011-01-25" NA          
## [24646] NA           "2011-01-25" NA           "2011-01-25" NA          
## [24651] NA           NA           NA           "2011-01-25" "2011-01-25"
## [24656] "2014-01-15" NA           "2014-01-15" "2014-01-15" "2011-10-15"
## [24661] "2011-10-15" "2011-10-15" NA           "2011-10-15" NA          
## [24666] "2013-04-15" "2013-04-15" "2013-04-15" "2013-04-15" "2013-04-15"
## [24671] "2012-02-24" "2013-01-27" "2013-02-27" "2013-01-27" "2013-01-27"
## [24676] "2013-02-27" "2012-02-24" "2013-01-27" "2013-02-27" NA          
## [24681] NA           NA           NA           NA           NA          
## [24686] NA           NA           "2013-10-13" "2013-10-13" "2013-10-13"
## [24691] "2013-09-18" "2013-09-18" "2013-09-18" "2013-10-13" "2013-10-13"
## [24696] "2013-10-13" "2011-11-15" "2011-11-15" "2011-11-15" NA          
## [24701] NA           "2011-04-27" NA           "2011-06-29" NA          
## [24706] "2011-04-27" NA           NA           NA           NA          
## [24711] "2011-06-29" "2011-04-27" NA           NA           NA          
## [24716] "2011-04-27" NA           "2011-06-29" NA           NA          
## [24721] NA           "2012-12-22" "2011-12-27" NA           NA          
## [24726] "2011-12-27" NA           "2013-09-16" "2013-09-16" NA          
## [24731] "2012-12-22" "2012-07-18" "2011-12-27" "2013-09-16" NA          
## [24736] "2012-12-22" "2013-09-16" NA           "2011-12-27" "2013-09-16"
## [24741] NA           NA           NA           "2012-07-18" "2011-12-27"
## [24746] NA           NA           "2013-10-21" NA           "2013-10-21"
## [24751] NA           NA           NA           NA           NA          
## [24756] NA           NA           NA           NA           NA          
## [24761] NA           "2013-03-17" NA           "2011-03-24" "2013-03-17"
## [24766] NA           NA           "2011-03-24" "2013-03-17" NA          
## [24771] NA           NA           "2011-03-24" "2011-03-24" "2011-03-24"
## [24776] NA           NA           NA           NA           NA          
## [24781] NA           NA           "2012-07-17" "2012-07-17" NA          
## [24786] "2012-12-14" "2011-10-27" "2012-12-14" "2012-10-15" "2013-11-21"
## [24791] "2012-12-14" "2012-10-15" NA           "2012-12-14" "2012-10-15"
## [24796] "2012-12-14" "2011-10-27" NA           "2011-10-27" "2013-11-21"
## [24801] "2011-02-23" NA           "2011-02-23" "2011-02-23" NA          
## [24806] NA           "2013-05-26" NA           "2012-03-29" "2012-03-29"
## [24811] NA           NA           NA           "2012-03-29" NA          
## [24816] "2013-05-26" NA           NA           NA           NA          
## [24821] NA           "2013-05-24" NA           NA           "2011-05-16"
## [24826] "2013-05-24" NA           NA           NA           "2011-05-16"
## [24831] "2013-05-24" NA           NA           "2013-04-15" "2013-04-15"
## [24836] "2013-04-15" "2013-04-15" "2013-04-15" "2011-03-31" "2011-03-31"
## [24841] "2011-03-31" "2011-03-31" "2011-11-13" "2011-11-13" "2011-10-14"
## [24846] "2011-11-13" "2011-10-14" NA           NA           "2011-05-23"
## [24851] "2011-05-23" "2011-05-23" "2013-03-14" "2013-03-14" "2013-03-14"
## [24856] NA           "2011-10-14" "2011-11-30" NA           "2011-11-30"
## [24861] "2011-11-30" "2011-02-27" "2011-02-27" NA           "2011-11-30"
## [24866] "2011-02-27" "2011-11-30" "2011-02-27" "2011-02-27" NA          
## [24871] NA           NA           NA           NA           NA          
## [24876] "2012-07-26" "2012-07-26" NA           "2012-07-31" NA          
## [24881] NA           NA           "2012-07-31" NA           NA          
## [24886] "2012-07-26" "2012-07-31" "2011-08-24" NA           NA          
## [24891] "2012-07-26" "2011-08-24" "2012-07-31" "2012-07-26" "2012-07-31"
## [24896] NA           "2013-11-30" "2013-11-30" NA           NA          
## [24901] NA           NA           NA           "2013-11-30" NA          
## [24906] NA           NA           NA           "2011-03-19" "2013-07-20"
## [24911] "2011-03-19" "2011-03-19" "2012-08-30" "2012-08-30" "2011-03-19"
## [24916] "2011-03-19" "2013-07-20" "2013-07-14" "2011-07-14" "2012-08-30"
## [24921] "2012-08-30" "2012-08-30" "2013-07-14" "2013-07-20" "2011-07-14"
## [24926] "2011-03-19" "2011-07-14" "2011-07-14" "2013-07-14" "2011-07-14"
## [24931] NA           NA           NA           NA           NA          
## [24936] "2012-11-13" NA           NA           "2012-11-13" NA          
## [24941] NA           NA           NA           NA           NA          
## [24946] NA           NA           "2011-08-31" "2011-08-31" "2012-10-16"
## [24951] NA           NA           NA           NA           "2012-10-16"
## [24956] NA           "2012-07-25" "2012-07-25" "2012-07-25" "2012-07-25"
## [24961] "2012-07-25" NA           "2013-11-15" "2013-11-15" NA          
## [24966] "2013-11-15" "2013-11-15" NA           NA           NA          
## [24971] NA           "2013-11-15" NA           NA           NA          
## [24976] "2012-11-19" "2012-11-19" "2011-09-30" "2012-11-19" "2012-11-19"
## [24981] "2012-11-19" "2011-09-30" "2012-07-13" NA           "2012-07-13"
## [24986] NA           NA           NA           "2012-07-13" NA          
## [24991] NA           NA           NA           NA           NA          
## [24996] "2011-02-16" "2011-02-16" "2011-02-16" "2011-02-16" "2011-02-16"
## [25001] "2011-10-30" "2014-01-15" "2014-01-24" "2013-03-20" "2014-01-15"
## [25006] "2014-01-24" "2011-10-30" NA           NA           NA          
## [25011] "2013-03-20" NA           "2011-10-30" NA           NA          
## [25016] "2012-01-17" NA           "2012-01-17" NA           "2012-01-17"
## [25021] "2012-01-17" NA           "2012-08-13" "2012-08-19" "2012-08-19"
## [25026] "2012-08-13" "2011-12-30" "2011-12-30" "2011-12-30" NA          
## [25031] NA           NA           "2011-06-28" "2011-06-28" "2012-05-21"
## [25036] "2011-06-28" "2011-06-28" NA           NA           NA          
## [25041] NA           "2012-03-18" NA           NA           "2012-03-18"
## [25046] "2011-06-28" "2011-06-28" "2012-03-18" "2012-05-21" "2013-07-24"
## [25051] "2013-07-24" "2013-07-24" "2013-07-24" "2013-07-24" "2012-08-31"
## [25056] NA           "2011-02-13" NA           "2011-02-13" "2012-08-31"
## [25061] "2012-08-31" NA           "2011-02-13" "2011-02-13" NA          
## [25066] "2012-08-31" NA           "2012-05-19" "2011-07-20" NA          
## [25071] "2013-12-23" NA           "2012-05-19" NA           "2012-05-27"
## [25076] "2011-07-20" "2013-12-23" "2011-07-20" "2012-05-19" "2011-07-20"
## [25081] NA           "2012-05-19" "2011-07-20" "2012-05-19" "2012-05-27"
## [25086] "2012-05-19" "2013-12-23" "2013-12-23" "2012-11-24" "2011-10-31"
## [25091] "2011-10-31" "2011-06-24" "2011-10-31" "2011-06-24" "2011-10-31"
## [25096] "2011-06-24" "2012-11-24" "2011-06-24" "2011-06-24" "2013-03-30"
## [25101] NA           "2012-12-24" "2013-03-30" "2013-03-30" "2012-12-24"
## [25106] NA           "2013-03-30" "2013-03-30" NA           NA          
## [25111] NA           NA           NA           NA           NA          
## [25116] NA           NA           NA           NA           NA          
## [25121] NA           NA           "2014-01-23" "2014-01-23" "2012-06-30"
## [25126] "2014-01-23" "2012-06-30" "2012-06-30" "2012-06-30" "2012-06-30"
## [25131] "2012-06-30" "2013-06-27" "2013-06-27" "2013-06-27" NA          
## [25136] "2011-04-15" "2011-04-15" "2011-04-15" NA           NA          
## [25141] "2011-04-15" "2011-04-15" NA           "2014-01-29" "2014-01-29"
## [25146] NA           "2014-01-29" "2014-01-29" NA           NA          
## [25151] NA           NA           NA           NA           NA          
## [25156] "2012-11-29" "2012-11-29" "2012-11-29" "2012-11-29" "2012-11-29"
## [25161] "2012-11-29" NA           NA           "2013-01-22" "2013-01-22"
## [25166] NA           "2013-01-15" "2013-01-15" "2013-01-15" "2013-01-15"
## [25171] "2013-08-13" "2013-08-13" "2012-06-19" NA           NA          
## [25176] "2012-06-19" NA           NA           "2013-12-21" "2012-06-19"
## [25181] NA           "2013-12-21" NA           "2013-12-21" NA          
## [25186] NA           NA           NA           NA           NA          
## [25191] NA           NA           NA           NA           NA          
## [25196] NA           NA           NA           NA           "2011-07-28"
## [25201] "2011-07-28" "2012-09-19" "2012-09-19" "2011-05-22" NA          
## [25206] NA           NA           "2011-05-22" NA           NA          
## [25211] "2013-08-14" "2013-08-14" "2013-08-30" "2012-01-21" NA          
## [25216] "2013-08-30" "2012-01-21" NA           NA           NA          
## [25221] "2012-08-24" "2012-08-16" NA           NA           "2012-08-24"
## [25226] "2013-06-20" "2012-08-16" "2013-06-20" "2012-01-21" "2014-02-13"
## [25231] "2013-12-14" "2013-01-19" "2013-01-19" NA           "2013-01-20"
## [25236] "2013-12-14" "2013-01-20" "2014-02-13" NA           "2013-12-14"
## [25241] NA           NA           NA           NA           NA          
## [25246] NA           NA           NA           "2011-10-23" "2011-10-23"
## [25251] "2011-10-23" "2011-10-23" "2011-10-23" NA           NA          
## [25256] NA           NA           NA           "2012-10-27" "2012-11-27"
## [25261] "2012-11-27" "2012-10-27" "2012-11-27" "2012-11-27" "2012-10-27"
## [25266] NA           "2013-11-25" "2013-11-25" NA           "2013-11-25"
## [25271] NA           NA           NA           NA           "2012-11-16"
## [25276] NA           "2013-11-25" "2012-11-16" NA           NA          
## [25281] "2012-11-16" "2013-11-25" NA           NA           NA          
## [25286] "2013-11-25" NA           NA           NA           NA          
## [25291] "2014-01-29" NA           NA           NA           NA          
## [25296] "2014-01-29" NA           NA           NA           "2012-11-17"
## [25301] "2012-11-17" "2013-08-26" "2013-08-26" "2013-05-14" "2013-05-14"
## [25306] "2013-12-16" "2013-12-16" "2013-12-16" "2013-07-13" "2013-07-13"
## [25311] "2013-07-13" "2012-07-31" "2012-07-31" "2012-07-31" "2012-01-26"
## [25316] "2011-02-23" "2013-03-31" "2011-02-23" "2012-01-26" "2012-01-26"
## [25321] "2012-01-26" "2012-01-26" NA           "2013-03-31" "2012-01-26"
## [25326] NA           "2011-09-26" "2011-09-26" "2011-09-26" NA          
## [25331] NA           "2013-07-28" "2013-07-28" "2013-07-28" NA          
## [25336] "2013-07-28" "2013-07-28" "2013-03-14" NA           "2011-11-15"
## [25341] "2013-03-14" NA           NA           NA           "2013-03-14"
## [25346] "2011-11-15" NA           NA           "2011-11-13" NA          
## [25351] NA           "2011-11-13" "2012-07-13" "2011-07-19" "2012-07-13"
## [25356] "2012-07-13" "2011-07-19" "2012-03-27" "2012-03-27" NA          
## [25361] NA           NA           NA           "2012-03-27" "2013-10-13"
## [25366] "2013-10-13" "2013-10-13" "2013-10-13" "2013-10-13" NA          
## [25371] "2011-04-14" "2011-04-14" NA           NA           NA          
## [25376] "2012-06-15" NA           "2012-06-15" NA           "2012-06-15"
## [25381] NA           "2012-06-15" "2012-06-15" NA           NA          
## [25386] NA           NA           NA           NA           NA          
## [25391] NA           NA           NA           "2012-10-14" NA          
## [25396] NA           "2012-10-14" "2012-10-14" NA           NA          
## [25401] NA           NA           NA           NA           NA          
## [25406] NA           NA           "2013-01-28" "2012-12-28" "2011-10-24"
## [25411] "2012-12-28" "2013-01-28" "2012-12-28" NA           "2012-12-28"
## [25416] "2011-10-24" NA           NA           "2012-12-28" "2011-10-24"
## [25421] "2013-01-28" NA           NA           NA           NA          
## [25426] NA           NA           NA           NA           NA          
## [25431] NA           "2011-01-30" NA           "2011-01-30" NA          
## [25436] NA           NA           NA           NA           NA          
## [25441] NA           NA           NA           NA           NA          
## [25446] NA           NA           NA           NA           NA          
## [25451] "2013-06-15" NA           "2011-09-21" "2011-09-21" "2011-09-21"
## [25456] "2013-06-15" "2013-06-15" "2011-12-29" "2011-12-24" "2011-12-30"
## [25461] NA           "2011-12-30" NA           "2011-12-30" "2011-12-24"
## [25466] "2011-12-24" "2011-12-30" "2011-12-29" "2011-12-24" NA          
## [25471] NA           "2012-06-15" "2011-12-30" "2011-12-29" NA          
## [25476] "2011-12-29" "2011-12-29" "2012-06-15" "2011-12-24" "2012-09-24"
## [25481] "2012-04-16" "2012-04-16" "2012-04-16" "2012-04-16" "2012-04-16"
## [25486] "2012-09-24" "2012-09-24" NA           NA           NA          
## [25491] NA           NA           "2012-09-28" "2012-05-29" NA          
## [25496] NA           NA           "2012-05-29" "2012-05-29" "2012-05-29"
## [25501] "2012-09-28" NA           NA           NA           NA          
## [25506] NA           NA           NA           NA           NA          
## [25511] NA           NA           NA           NA           "2013-08-16"
## [25516] "2013-08-16" "2013-11-29" "2013-11-29" "2013-11-29" "2011-08-29"
## [25521] "2013-08-16" "2011-08-29" "2012-12-21" "2012-12-21" "2012-12-21"
## [25526] NA           NA           NA           NA           NA          
## [25531] NA           NA           NA           NA           NA          
## [25536] NA           NA           NA           NA           NA          
## [25541] NA           NA           NA           NA           NA          
## [25546] NA           NA           "2012-04-30" "2012-04-30" "2012-05-27"
## [25551] NA           "2012-05-27" "2012-05-27" "2012-05-27" "2012-05-27"
## [25556] NA           NA           NA           NA           NA          
## [25561] NA           NA           NA           NA           NA          
## [25566] NA           NA           NA           NA           "2011-04-17"
## [25571] NA           "2011-04-17" "2011-12-17" "2012-10-21" "2011-04-17"
## [25576] "2011-04-17" "2011-04-17" NA           "2011-04-17" "2012-10-21"
## [25581] "2011-12-15" "2011-12-15" "2012-10-21" "2011-12-17" "2013-05-19"
## [25586] "2013-05-19" "2013-05-19" "2011-09-27" "2011-09-27" "2011-05-21"
## [25591] NA           "2012-08-13" NA           NA           "2011-05-21"
## [25596] "2012-08-13" "2011-02-24" "2012-08-13" "2011-09-27" "2011-05-21"
## [25601] "2014-01-19" "2011-02-24" "2012-08-13" "2014-01-19" "2011-09-27"
## [25606] "2014-01-19" "2012-08-13" "2011-05-21" "2014-01-19" NA          
## [25611] NA           "2014-01-19" "2011-05-21" "2014-01-19" "2011-09-27"
## [25616] "2014-01-29" "2013-12-28" NA           "2013-12-28" NA          
## [25621] "2014-01-29" "2013-10-26" "2013-10-26" "2013-10-26" "2013-10-26"
## [25626] "2013-10-13" "2013-10-13" "2013-10-13" NA           "2013-03-16"
## [25631] NA           "2013-03-16" NA           "2013-03-16" "2013-03-16"
## [25636] "2013-03-16" NA           NA           NA           "2011-07-24"
## [25641] NA           NA           "2011-07-24" NA           NA          
## [25646] "2011-07-24" NA           "2011-07-24" NA           NA          
## [25651] "2011-07-24" NA           NA           "2013-06-13" NA          
## [25656] NA           "2013-06-13" "2013-03-26" NA           NA          
## [25661] "2013-06-13" "2013-03-26" NA           "2013-06-13" "2013-06-13"
## [25666] "2013-03-26" "2011-04-28" "2011-04-28" NA           NA          
## [25671] "2011-04-28" "2011-04-28" "2011-04-28" NA           NA          
## [25676] NA           "2013-11-14" "2013-11-14" "2013-11-14" "2013-08-14"
## [25681] "2013-08-14" "2011-12-25" NA           "2011-12-25" NA          
## [25686] NA           NA           NA           "2011-12-25" "2011-12-25"
## [25691] "2011-12-25" NA           "2011-11-29" NA           "2011-11-29"
## [25696] NA           NA           "2012-06-20" NA           NA          
## [25701] "2012-06-20" "2012-06-20" NA           NA           "2012-12-16"
## [25706] NA           NA           NA           NA           "2012-12-16"
## [25711] "2012-12-16" "2012-12-16" NA           "2012-12-16" NA          
## [25716] "2012-12-16" NA           NA           NA           NA          
## [25721] "2013-11-28" "2013-11-28" "2014-01-25" "2013-11-28" "2013-11-22"
## [25726] "2014-01-25" "2013-11-22" "2014-01-25" "2014-01-25" "2013-11-22"
## [25731] "2013-11-22" "2013-11-28" "2014-01-25" "2012-09-16" "2014-01-25"
## [25736] "2013-11-22" "2012-09-16" "2012-09-16" "2012-09-16" "2013-11-28"
## [25741] "2012-09-16" "2011-12-22" "2011-12-22" "2012-07-26" "2011-12-22"
## [25746] "2012-03-14" "2012-03-14" "2012-07-26" "2012-03-14" NA          
## [25751] NA           "2012-03-14" NA           "2012-03-14" "2012-11-18"
## [25756] NA           NA           "2012-11-18" NA           "2012-07-26"
## [25761] "2013-10-24" "2013-03-19" "2013-03-19" "2013-06-28" "2012-04-22"
## [25766] "2013-06-28" "2013-03-19" "2012-07-26" NA           "2013-06-28"
## [25771] "2013-06-28" "2012-07-26" "2013-10-24" "2013-06-28" NA          
## [25776] NA           "2012-04-22" "2013-10-24" "2012-04-22" "2012-04-22"
## [25781] "2012-04-22" NA           "2013-03-19" "2012-04-22" NA          
## [25786] "2013-09-21" NA           NA           NA           NA          
## [25791] "2011-03-18" "2011-03-18" "2013-09-21" NA           NA          
## [25796] "2011-03-18" NA           "2011-03-18" "2011-10-28" NA          
## [25801] NA           NA           "2011-03-18" "2011-10-28" NA          
## [25806] NA           "2012-11-29" "2014-02-13" "2012-08-23" NA          
## [25811] NA           NA           "2012-08-23" NA           "2014-02-13"
## [25816] NA           "2012-11-29" "2012-11-29" NA           "2012-11-29"
## [25821] "2012-11-29" "2011-10-27" NA           "2011-10-27" NA          
## [25826] "2011-10-27" NA           "2011-10-27" "2011-10-27" NA          
## [25831] NA           NA           "2013-05-17" NA           NA          
## [25836] "2013-05-17" NA           NA           NA           "2011-02-18"
## [25841] NA           "2014-01-20" "2013-01-15" "2013-01-15" NA          
## [25846] "2013-01-15" "2013-01-15" "2013-01-15" "2011-02-18" "2014-01-20"
## [25851] "2011-05-15" "2011-05-15" "2012-11-18" "2012-11-18" NA          
## [25856] "2011-05-15" "2012-11-18" "2012-11-18" NA           NA          
## [25861] "2011-02-18" "2011-11-26" NA           NA           "2011-11-26"
## [25866] "2012-02-13" "2012-02-13" "2012-09-30" "2012-09-30" NA          
## [25871] "2012-09-30" NA           "2013-09-30" "2013-09-30" "2013-09-20"
## [25876] "2013-09-20" "2013-09-20" "2013-09-30" "2012-02-24" "2012-02-24"
## [25881] "2012-02-24" "2012-02-24" "2012-02-24" "2012-02-24" "2012-08-22"
## [25886] "2012-08-22" "2012-08-22" NA           NA           NA          
## [25891] NA           NA           NA           "2014-02-18" "2014-02-18"
## [25896] NA           NA           "2014-02-18" "2013-12-21" "2013-12-21"
## [25901] "2013-07-24" "2013-12-21" "2013-07-24" "2013-12-21" NA          
## [25906] NA           "2011-08-24" NA           NA           NA          
## [25911] "2011-08-24" NA           NA           "2011-08-24" NA          
## [25916] "2012-04-23" "2013-07-27" "2012-04-23" "2012-04-23" "2013-07-27"
## [25921] "2012-07-16" NA           NA           NA           NA          
## [25926] NA           NA           "2012-07-16" "2013-11-23" NA          
## [25931] NA           "2013-11-23" "2013-11-23" "2013-11-23" NA          
## [25936] NA           "2011-10-29" "2011-10-29" "2013-09-15" "2013-09-15"
## [25941] "2013-09-15" "2013-09-15" "2013-09-15" "2013-07-21" "2011-10-17"
## [25946] "2011-07-21" "2013-07-21" "2011-07-21" "2011-10-17" "2011-07-21"
## [25951] "2013-07-21" "2011-10-17" "2011-10-17" "2011-07-21" "2013-07-21"
## [25956] "2013-07-21" "2011-07-21" "2011-07-21" "2011-10-17" NA          
## [25961] NA           "2011-05-30" "2011-05-30" "2011-05-30" NA          
## [25966] NA           NA           NA           "2013-09-16" "2013-09-16"
## [25971] NA           NA           NA           "2013-09-16" "2013-09-16"
## [25976] NA           "2013-09-16" NA           NA           "2012-08-29"
## [25981] "2011-07-17" "2012-06-29" "2011-07-23" "2011-07-23" "2012-08-29"
## [25986] "2011-07-17" "2012-08-29" "2012-06-29" "2011-07-23" "2011-07-17"
## [25991] "2011-08-31" "2011-08-31" "2011-08-31" "2011-08-31" "2011-08-31"
## [25996] "2013-07-24" "2013-07-24" "2013-07-24" "2013-07-24" "2013-07-24"
## [26001] "2012-08-21" "2013-04-22" "2012-08-21" "2012-08-21" "2012-08-21"
## [26006] NA           NA           "2013-04-22" "2012-08-21" NA          
## [26011] "2013-05-14" "2013-05-14" "2013-04-22" NA           "2012-03-27"
## [26016] NA           "2013-12-15" NA           "2013-12-15" NA          
## [26021] "2012-03-27" NA           NA           "2012-03-24" "2012-03-24"
## [26026] "2012-08-22" NA           "2012-08-22" "2012-08-22" "2011-07-24"
## [26031] "2011-07-24" "2013-01-27" "2011-07-24" "2011-07-24" NA          
## [26036] "2012-08-22" NA           "2011-07-24" "2011-07-24" NA          
## [26041] "2013-01-27" NA           "2012-08-22" "2013-01-27" "2012-05-20"
## [26046] "2013-09-20" "2012-03-26" "2013-09-20" "2012-05-20" "2012-03-26"
## [26051] "2012-03-16" "2012-03-26" "2012-03-26" "2012-03-16" "2012-03-16"
## [26056] "2013-09-20" "2012-03-16" "2012-03-16" "2012-03-26" NA          
## [26061] NA           NA           NA           NA           "2014-01-21"
## [26066] "2011-10-28" NA           "2014-01-21" NA           NA          
## [26071] "2011-10-28" NA           NA           "2013-12-28" "2011-10-28"
## [26076] "2011-10-28" "2011-10-28" "2014-01-21" "2011-10-28" "2014-01-21"
## [26081] "2014-01-21" "2013-12-28" "2011-09-20" NA           "2011-09-13"
## [26086] "2013-11-16" "2011-09-20" "2011-09-13" "2013-11-16" NA          
## [26091] NA           NA           "2013-06-27" "2013-06-27" "2013-06-27"
## [26096] "2013-06-27" "2013-11-29" "2011-08-23" NA           "2013-11-21"
## [26101] "2013-11-29" "2011-08-23" "2011-08-23" NA           "2013-11-29"
## [26106] NA           "2013-11-21" NA           "2013-11-21" NA          
## [26111] "2011-08-23" "2011-08-23" "2013-07-16" NA           "2013-07-16"
## [26116] NA           NA           NA           NA           NA          
## [26121] NA           NA           "2011-02-17" "2011-02-17" "2011-02-17"
## [26126] NA           "2012-03-14" "2011-04-13" "2011-04-13" "2012-02-25"
## [26131] "2012-03-14" "2011-04-13" "2012-03-14" "2012-02-25" "2012-12-28"
## [26136] NA           "2012-12-28" NA           "2012-12-28" NA          
## [26141] NA           NA           NA           "2013-01-29" "2013-01-29"
## [26146] NA           "2013-01-29" "2013-01-29" "2013-01-29" "2013-01-29"
## [26151] NA           "2012-10-20" "2012-10-20" "2012-10-20" "2012-10-20"
## [26156] "2012-10-20" "2012-10-20" NA           NA           "2012-01-23"
## [26161] NA           "2012-01-23" "2012-11-16" "2012-11-16" "2014-01-13"
## [26166] "2012-11-16" NA           "2012-11-16" NA           "2014-01-13"
## [26171] "2014-01-13" "2012-11-16" "2013-01-25" NA           NA          
## [26176] NA           "2013-01-25" NA           NA           "2013-01-25"
## [26181] NA           NA           NA           NA           NA          
## [26186] "2013-01-25" "2013-01-25" "2012-02-28" "2012-02-28" "2013-09-27"
## [26191] "2013-04-27" "2013-04-27" "2013-04-27" NA           "2013-09-27"
## [26196] NA           NA           NA           "2012-04-24" "2012-04-24"
## [26201] NA           NA           NA           NA           "2013-01-30"
## [26206] "2013-01-30" "2013-01-30" "2013-09-14" "2013-01-30" "2013-07-25"
## [26211] "2013-09-14" "2013-07-25" "2013-01-30" "2013-07-25" NA          
## [26216] NA           NA           NA           NA           NA          
## [26221] "2011-06-22" NA           "2011-06-22" "2011-06-22" "2011-06-22"
## [26226] NA           NA           "2014-01-27" "2014-01-27" NA          
## [26231] "2014-01-27" "2014-01-27" "2012-09-26" "2014-01-27" "2014-01-27"
## [26236] "2012-09-26" "2013-04-16" "2013-04-16" "2013-04-16" "2013-04-16"
## [26241] "2013-04-16" "2012-12-28" "2012-12-28" "2011-06-23" "2011-06-23"
## [26246] "2011-10-23" "2012-12-28" "2012-12-28" "2011-10-23" "2012-05-29"
## [26251] "2011-06-23" "2013-06-24" "2012-12-28" "2012-05-29" "2013-06-24"
## [26256] "2011-10-23" "2013-06-24" "2012-05-29" NA           NA          
## [26261] NA           NA           NA           NA           NA          
## [26266] "2012-11-15" "2012-11-15" "2011-07-15" "2011-07-13" "2011-07-15"
## [26271] "2011-07-15" "2011-07-13" "2011-07-13" "2013-03-21" "2013-03-21"
## [26276] NA           NA           NA           NA           "2011-09-25"
## [26281] "2012-03-29" "2012-03-29" "2012-08-30" NA           "2012-08-30"
## [26286] NA           "2012-08-30" "2011-09-25" NA           NA          
## [26291] "2012-09-19" NA           "2013-11-29" "2013-11-29" "2012-09-19"
## [26296] "2013-08-25" "2012-09-19" "2012-09-19" "2012-09-19" "2013-11-29"
## [26301] "2013-11-29" "2013-08-25" NA           NA           NA          
## [26306] NA           NA           NA           NA           "2013-07-26"
## [26311] NA           "2013-12-13" "2013-07-26" "2013-12-13" NA          
## [26316] NA           NA           NA           NA           NA          
## [26321] "2011-05-13" "2011-05-13" NA           "2011-05-13" NA          
## [26326] "2011-02-15" "2012-02-22" NA           NA           NA          
## [26331] NA           NA           NA           "2011-02-15" NA          
## [26336] "2011-02-15" "2012-02-22" NA           NA           NA          
## [26341] NA           NA           "2011-08-18" "2011-11-30" "2011-11-30"
## [26346] "2012-01-19" "2011-11-30" "2012-01-19" "2011-11-30" "2011-08-18"
## [26351] "2011-11-30" "2012-12-25" "2012-12-25" "2012-12-25" NA          
## [26356] NA           "2013-09-24" "2013-09-24" "2013-09-24" NA          
## [26361] NA           NA           NA           NA           NA          
## [26366] "2013-02-25" "2013-02-25" "2013-02-25" NA           NA          
## [26371] "2013-02-25" "2013-02-25" "2012-06-26" "2012-06-26" "2013-02-25"
## [26376] "2012-01-22" "2012-01-22" "2012-01-22" "2012-10-13" "2012-10-13"
## [26381] "2012-10-13" "2012-02-29" "2012-02-29" NA           "2012-02-29"
## [26386] NA           "2011-10-22" "2011-10-22" "2011-10-22" "2011-10-22"
## [26391] "2012-06-18" "2012-06-18" "2011-03-17" "2011-03-17" NA          
## [26396] "2013-06-15" NA           NA           "2013-06-15" NA          
## [26401] NA           "2013-06-15" NA           NA           NA          
## [26406] NA           NA           NA           "2011-02-13" NA          
## [26411] "2011-02-13" NA           "2011-11-22" "2011-02-13" "2012-04-29"
## [26416] "2012-04-29" "2011-11-22" "2011-11-22" "2012-02-18" "2012-09-21"
## [26421] "2012-02-18" "2011-02-21" "2011-02-21" "2012-09-21" "2011-02-21"
## [26426] "2012-02-18" NA           NA           "2013-04-21" "2013-04-21"
## [26431] "2012-09-29" NA           NA           NA           "2012-09-29"
## [26436] NA           "2012-09-29" NA           NA           NA          
## [26441] NA           "2013-09-20" "2013-09-20" "2012-09-29" "2012-09-29"
## [26446] NA           NA           NA           NA           NA          
## [26451] NA           NA           NA           NA           "2012-03-30"
## [26456] "2012-03-30" NA           NA           "2011-06-28" NA          
## [26461] "2011-06-28" NA           NA           NA           NA          
## [26466] "2013-11-21" "2013-11-21" "2013-11-21" "2013-11-21" "2013-12-26"
## [26471] "2013-11-21" NA           "2013-11-21" NA           "2013-12-26"
## [26476] NA           NA           NA           NA           NA          
## [26481] "2013-09-23" NA           "2013-09-23" NA           NA          
## [26486] NA           NA           NA           NA           "2011-01-30"
## [26491] "2011-01-30" "2011-12-16" "2013-10-28" "2013-10-28" "2013-10-28"
## [26496] "2011-12-16" NA           NA           NA           NA          
## [26501] "2013-07-26" NA           NA           NA           NA          
## [26506] NA           "2013-07-22" "2013-07-26" "2013-07-26" NA          
## [26511] NA           NA           NA           "2013-07-22" NA          
## [26516] NA           NA           "2013-07-22" NA           "2011-12-20"
## [26521] "2011-12-20" "2013-11-16" "2014-02-14" "2011-03-18" "2014-02-14"
## [26526] "2013-11-16" "2011-03-18" "2014-02-14" "2012-06-29" "2011-03-18"
## [26531] "2012-06-29" "2012-06-29" "2014-02-14" "2012-06-29" "2012-06-29"
## [26536] "2011-04-16" "2011-05-27" NA           "2011-05-27" "2011-04-16"
## [26541] "2011-11-15" "2011-05-27" "2011-04-16" "2011-05-27" "2011-05-27"
## [26546] "2011-04-23" NA           "2011-04-20" "2011-04-20" "2011-04-16"
## [26551] "2011-05-27" "2011-04-20" "2011-04-16" "2011-04-20" NA          
## [26556] "2011-05-27" "2011-04-20" "2011-05-27" "2011-11-15" "2011-05-27"
## [26561] "2011-04-23" "2011-05-27" NA           "2011-07-27" NA          
## [26566] "2011-07-27" "2011-07-23" "2011-07-23" "2011-07-23" "2013-12-23"
## [26571] "2013-12-23" "2013-12-23" "2011-07-15" "2011-07-15" "2013-01-21"
## [26576] "2013-01-21" "2013-12-23" "2011-07-15" "2011-07-15" "2011-07-23"
## [26581] "2013-12-23" "2013-01-21" NA           "2011-07-18" "2011-07-18"
## [26586] "2011-07-15" "2011-07-18" "2011-07-23" "2013-01-17" "2013-01-17"
## [26591] "2011-07-18" "2013-01-17" "2013-01-17" "2011-07-18" "2013-12-23"
## [26596] "2013-01-17" NA           NA           NA           NA          
## [26601] "2012-03-26" "2011-04-13" "2011-04-17" "2011-04-13" "2012-03-26"
## [26606] "2011-04-17" "2012-03-26" NA           NA           "2011-04-13"
## [26611] NA           NA           NA           "2013-08-17" NA          
## [26616] "2013-08-17" NA           "2013-08-17" "2013-08-17" "2014-01-30"
## [26621] NA           NA           "2011-07-23" "2011-07-23" "2014-01-30"
## [26626] "2011-07-23" "2011-07-23" NA           "2011-07-23" "2014-01-30"
## [26631] "2013-05-25" "2011-11-23" "2013-05-25" "2011-11-23" "2013-05-25"
## [26636] "2011-11-23" "2011-11-23" "2011-11-23" "2011-11-23" "2013-05-25"
## [26641] NA           "2013-02-17" NA           "2013-02-17" NA          
## [26646] NA           "2013-02-17" NA           NA           "2012-05-16"
## [26651] NA           "2012-05-16" NA           NA           NA          
## [26656] NA           NA           NA           NA           NA          
## [26661] "2012-06-16" "2012-08-13" "2012-06-16" "2012-08-13" "2012-06-16"
## [26666] "2013-12-21" NA           NA           "2012-08-13" NA          
## [26671] "2013-12-21" NA           NA           "2013-12-21" NA          
## [26676] "2013-05-14" NA           "2013-05-14" NA           "2012-07-14"
## [26681] "2012-07-14" NA           NA           NA           NA          
## [26686] NA           NA           NA           NA           NA          
## [26691] NA           NA           NA           NA           NA          
## [26696] NA           "2014-01-24" "2014-01-24" NA           NA          
## [26701] NA           NA           NA           "2012-01-29" "2012-01-29"
## [26706] "2012-01-19" NA           NA           "2014-01-26" "2014-01-26"
## [26711] "2014-01-26" "2012-01-19" "2012-01-19" NA           "2012-01-29"
## [26716] "2012-02-21" NA           "2012-02-21" "2012-02-21" "2011-02-25"
## [26721] NA           "2011-02-22" NA           NA           "2011-02-25"
## [26726] NA           "2011-02-25" NA           NA           NA          
## [26731] "2011-02-22" NA           "2011-04-20" NA           "2011-04-20"
## [26736] NA           NA           NA           NA           "2011-04-20"
## [26741] NA           "2011-04-20" "2013-04-26" NA           NA          
## [26746] NA           NA           NA           "2013-04-26" "2011-12-31"
## [26751] "2011-02-24" "2011-12-31" "2011-12-31" "2011-02-24" "2011-02-24"
## [26756] "2011-12-31" "2011-12-31" "2011-12-31" "2013-06-29" "2013-06-29"
## [26761] "2013-06-29" "2013-06-29" "2013-03-31" "2013-03-31" "2013-03-31"
## [26766] "2013-03-31" "2013-03-31" "2013-03-31" "2013-11-16" "2013-11-16"
## [26771] "2013-11-16" "2012-08-31" "2012-08-31" "2013-12-19" "2013-12-19"
## [26776] NA           "2013-12-19" "2012-08-22" NA           "2013-11-29"
## [26781] NA           NA           "2013-12-19" "2012-08-22" "2013-11-29"
## [26786] "2013-12-19" NA           "2012-03-15" "2012-03-15" "2013-09-29"
## [26791] "2013-09-29" "2013-09-29" "2012-03-15" NA           NA          
## [26796] "2013-09-15" NA           "2013-05-18" "2013-09-15" NA          
## [26801] NA           NA           NA           "2012-10-31" NA          
## [26806] "2013-05-18" NA           NA           "2012-10-31" NA          
## [26811] "2013-05-18" NA           NA           NA           NA          
## [26816] "2013-12-21" "2013-12-21" "2013-12-21" "2013-12-21" "2013-12-21"
## [26821] "2013-12-21" "2012-11-16" "2012-11-16" "2013-05-22" "2012-10-17"
## [26826] "2012-10-17" "2012-10-17" "2012-10-17" "2013-12-27" "2013-12-27"
## [26831] "2013-05-24" "2013-12-27" "2013-12-27" "2013-07-20" "2012-10-17"
## [26836] "2013-07-20" "2013-12-27" "2013-05-22" "2013-05-24" "2012-09-19"
## [26841] "2012-09-19" "2012-09-19" NA           "2012-08-29" NA          
## [26846] "2011-11-26" "2012-05-26" "2012-02-24" "2012-05-26" "2011-11-27"
## [26851] "2012-02-24" "2012-05-26" "2012-02-24" NA           NA          
## [26856] "2012-08-29" NA           "2012-08-29" "2011-11-27" "2011-11-26"
## [26861] "2013-03-18" "2013-03-18" "2013-03-18" "2013-03-18" "2011-10-15"
## [26866] "2011-10-15" "2011-10-15" "2011-10-20" NA           "2011-10-20"
## [26871] "2011-12-28" "2012-07-20" "2012-07-20" "2011-10-20" "2012-07-20"
## [26876] NA           "2011-12-28" NA           NA           NA          
## [26881] NA           NA           NA           "2012-05-18" "2012-05-18"
## [26886] "2012-05-18" "2013-06-13" NA           "2012-05-18" "2012-05-18"
## [26891] "2013-06-13" "2011-02-20" NA           NA           NA          
## [26896] NA           NA           "2011-02-20" NA           "2011-02-20"
## [26901] NA           NA           NA           NA           "2013-08-14"
## [26906] NA           "2011-02-24" "2011-02-24" NA           "2013-08-14"
## [26911] "2013-08-14" "2011-05-30" NA           NA           "2011-05-30"
## [26916] NA           "2013-10-21" NA           NA           "2013-10-21"
## [26921] "2013-10-21" "2011-05-30" NA           "2012-02-18" NA          
## [26926] "2013-08-28" NA           "2012-02-18" "2012-11-14" "2012-02-18"
## [26931] NA           "2012-11-14" "2012-11-14" "2013-08-28" NA          
## [26936] NA           NA           "2012-11-14" NA           "2012-02-18"
## [26941] NA           NA           "2012-11-14" "2012-02-18" NA          
## [26946] NA           "2012-03-19" "2012-01-19" NA           NA          
## [26951] "2012-03-20" "2012-01-19" NA           NA           NA          
## [26956] "2012-03-19" "2012-01-19" "2012-01-19" "2012-03-19" "2012-03-20"
## [26961] "2012-03-20" "2013-03-31" "2013-03-31" "2013-03-31" "2012-08-30"
## [26966] "2012-08-30" "2011-06-23" "2011-07-26" "2011-06-23" "2011-06-23"
## [26971] "2011-06-23" NA           NA           NA           NA          
## [26976] "2011-07-26" NA           NA           NA           NA          
## [26981] NA           NA           "2011-06-23" "2011-07-26" "2011-07-26"
## [26986] NA           "2013-08-26" NA           "2012-05-16" NA          
## [26991] "2012-05-16" "2013-08-26" "2013-08-26" "2012-05-16" "2014-02-19"
## [26996] "2014-02-19" "2012-02-19" "2013-08-26" "2014-02-19" "2014-02-19"
## [27001] "2013-08-26" "2012-02-19" "2013-08-26" "2012-02-19" "2014-02-19"
## [27006] "2012-06-23" "2012-06-23" NA           "2011-10-23" "2011-10-23"
## [27011] "2012-06-23" "2012-06-23" "2012-06-23" "2011-10-23" "2011-10-23"
## [27016] NA           "2012-06-23" "2011-10-23" NA           NA          
## [27021] "2011-10-23" "2012-02-15" "2012-10-13" "2012-10-13" "2012-10-13"
## [27026] "2012-02-15" "2012-02-15" "2012-10-13" "2012-10-13" "2013-01-27"
## [27031] "2011-03-24" "2013-01-27" "2011-03-24" "2011-03-17" "2011-03-24"
## [27036] "2011-03-24" "2011-03-24" "2013-01-27" NA           "2011-03-17"
## [27041] NA           "2011-09-24" "2011-09-24" NA           NA          
## [27046] "2012-06-17" NA           NA           NA           "2011-09-24"
## [27051] "2012-06-17" NA           "2012-06-17" NA           NA          
## [27056] NA           "2013-08-29" NA           "2013-08-29" NA          
## [27061] "2013-08-29" NA           NA           NA           "2012-03-15"
## [27066] "2012-03-15" "2011-04-18" "2011-04-18" "2011-04-18" "2011-04-18"
## [27071] "2011-04-18" "2013-11-13" "2013-11-13" NA           NA          
## [27076] NA           "2013-11-13" "2014-01-18" "2014-01-18" "2014-01-18"
## [27081] "2013-11-13" "2013-11-13" "2014-01-18" "2014-01-18" "2013-11-13"
## [27086] "2014-01-18" NA           NA           "2012-05-26" "2012-05-26"
## [27091] NA           "2013-03-30" "2012-05-19" "2013-03-30" "2013-03-30"
## [27096] NA           "2012-05-19" "2011-10-23" "2011-10-23" "2011-09-18"
## [27101] NA           "2011-10-23" "2011-10-23" "2011-09-18" "2011-10-23"
## [27106] "2012-05-19" "2012-05-19" "2012-05-19" NA           "2012-03-24"
## [27111] NA           "2012-03-24" NA           NA           "2013-05-19"
## [27116] NA           "2013-05-19" "2013-05-19" "2013-05-19" "2013-05-19"
## [27121] "2013-05-19" NA           NA           NA           "2012-09-18"
## [27126] NA           NA           "2012-09-18" NA           NA          
## [27131] NA           NA           "2012-09-18" NA           "2011-09-28"
## [27136] "2011-09-28" "2011-09-28" NA           "2012-11-25" NA          
## [27141] NA           "2011-04-20" "2011-04-20" NA           NA          
## [27146] "2012-11-25" NA           NA           "2012-11-25" "2011-04-20"
## [27151] NA           "2012-11-25" NA           "2012-11-25" NA          
## [27156] NA           NA           NA           NA           NA          
## [27161] NA           NA           NA           NA           NA          
## [27166] NA           "2014-01-13" NA           NA           NA          
## [27171] "2014-01-13" NA           "2014-01-13" NA           NA          
## [27176] NA           NA           "2012-12-22" "2012-12-22" "2012-12-22"
## [27181] "2012-09-26" "2012-02-19" "2012-02-19" "2012-09-26" "2012-02-16"
## [27186] NA           "2012-09-26" "2011-06-27" "2012-09-23" "2012-09-23"
## [27191] "2012-02-16" "2012-09-23" "2012-09-23" "2012-09-26" NA          
## [27196] "2012-09-26" "2011-06-27" "2012-09-23" "2011-09-28" NA          
## [27201] "2012-02-19" "2011-09-28" "2012-02-16" "2011-06-27" "2011-03-18"
## [27206] "2011-03-18" "2011-03-18" NA           NA           "2012-02-21"
## [27211] "2012-12-30" "2012-12-30" NA           "2012-02-21" "2012-12-30"
## [27216] "2011-12-22" "2011-12-22" "2011-12-20" "2011-12-20" "2011-12-20"
## [27221] "2011-12-20" "2013-08-23" NA           "2014-02-14" "2014-02-14"
## [27226] NA           NA           "2013-08-23" "2013-08-23" "2014-02-14"
## [27231] NA           "2014-02-14" "2013-08-23" "2014-02-14" NA          
## [27236] "2013-08-23" "2012-12-15" "2012-10-23" NA           NA          
## [27241] NA           NA           "2012-10-23" "2012-12-25" NA          
## [27246] NA           "2012-10-23" NA           "2012-12-15" NA          
## [27251] NA           "2012-12-25" NA           "2012-09-29" "2012-09-29"
## [27256] "2012-09-29" "2012-09-29" "2012-09-29" "2013-05-17" "2011-04-26"
## [27261] "2012-01-31" "2011-04-26" "2013-05-17" "2012-01-31" "2011-04-26"
## [27266] "2012-01-31" NA           NA           "2012-10-31" "2012-10-31"
## [27271] NA           "2013-09-13" "2013-11-15" "2013-09-13" "2012-02-21"
## [27276] "2013-11-15" NA           "2013-11-15" "2013-09-13" "2012-02-21"
## [27281] NA           NA           NA           NA           NA          
## [27286] NA           NA           NA           NA           "2012-11-27"
## [27291] "2012-11-27" NA           NA           NA           NA          
## [27296] NA           "2012-11-27" "2012-11-27" "2012-11-27" NA          
## [27301] "2012-10-31" NA           NA           "2012-08-16" NA          
## [27306] "2012-10-31" NA           "2012-10-31" "2012-08-16" NA          
## [27311] NA           "2014-02-15" "2011-04-14" "2011-04-25" "2011-04-25"
## [27316] NA           "2011-04-14" NA           "2011-04-14" "2011-04-14"
## [27321] "2011-04-14" "2011-04-25" "2011-04-14" "2014-02-15" "2014-02-15"
## [27326] NA           NA           NA           "2013-10-17" "2013-10-17"
## [27331] NA           NA           NA           NA           NA          
## [27336] "2013-10-17" NA           "2013-10-17" "2013-10-17" "2013-10-17"
## [27341] NA           NA           NA           NA           "2013-01-13"
## [27346] "2013-01-13" NA           NA           "2013-01-13" "2013-01-13"
## [27351] NA           "2013-01-13" "2012-05-28" "2012-05-28" "2012-05-28"
## [27356] "2012-05-28" "2012-05-28" "2012-02-27" "2012-04-18" NA          
## [27361] NA           NA           NA           NA           "2012-02-27"
## [27366] "2012-04-18" "2012-02-27" "2012-04-18" "2011-07-31" "2013-06-19"
## [27371] "2013-06-19" "2013-06-19" "2011-07-31" "2012-07-20" "2013-06-19"
## [27376] "2011-07-31" "2012-07-20" "2011-07-31" "2013-06-19" "2011-07-31"
## [27381] "2012-11-30" "2013-08-20" "2012-11-30" "2012-11-30" NA          
## [27386] NA           "2012-11-30" "2012-11-30" "2013-08-20" NA          
## [27391] NA           NA           NA           "2011-05-13" "2011-05-13"
## [27396] "2011-05-13" NA           NA           NA           "2011-05-13"
## [27401] NA           NA           NA           "2013-11-15" "2013-11-15"
## [27406] NA           "2012-12-19" NA           NA           "2012-12-19"
## [27411] "2012-12-19" "2012-12-19" "2012-12-19" NA           NA          
## [27416] NA           NA           NA           NA           "2012-03-16"
## [27421] "2012-03-13" NA           NA           "2012-03-13" "2012-03-16"
## [27426] "2011-06-18" "2011-06-18" NA           NA           NA          
## [27431] NA           NA           NA           "2011-11-17" NA          
## [27436] "2011-06-18" "2011-11-25" "2011-06-18" NA           "2011-06-18"
## [27441] "2011-06-18" NA           "2011-11-25" "2011-11-17" "2013-04-29"
## [27446] "2013-04-29" "2013-04-29" "2013-04-29" NA           NA          
## [27451] "2014-01-27" NA           NA           NA           NA          
## [27456] "2014-01-27" NA           NA           "2014-01-27" NA          
## [27461] NA           NA           NA           NA           "2014-01-27"
## [27466] NA           NA           NA           "2014-01-27" NA          
## [27471] NA           NA           NA           NA           NA          
## [27476] NA           NA           NA           "2012-07-26" "2012-07-26"
## [27481] "2012-07-26" "2012-07-26" NA           "2013-02-21" "2013-02-21"
## [27486] "2014-01-23" "2014-01-23" "2013-02-21" NA           NA          
## [27491] NA           "2011-03-29" "2011-03-29" NA           NA          
## [27496] "2011-03-29" "2011-03-29" "2011-03-29" NA           "2013-07-30"
## [27501] NA           NA           "2013-07-30" NA           NA          
## [27506] NA           "2013-01-16" "2013-01-16" "2013-01-16" NA          
## [27511] NA           NA           "2013-01-16" "2013-01-16" NA          
## [27516] NA           "2013-10-17" "2013-10-20" "2013-10-20" "2013-10-20"
## [27521] "2013-10-17" "2013-10-17" NA           NA           NA          
## [27526] NA           NA           "2013-08-22" "2013-08-22" "2011-09-17"
## [27531] "2011-09-17" "2011-09-17" "2011-09-17" "2013-12-24" "2011-09-17"
## [27536] "2013-12-24" NA           "2013-12-24" "2013-12-24" "2013-12-24"
## [27541] NA           "2013-12-24" NA           NA           NA          
## [27546] NA           NA           "2013-09-17" NA           "2011-10-28"
## [27551] NA           "2013-09-17" "2013-09-17" "2013-08-20" "2011-10-28"
## [27556] NA           NA           NA           "2011-10-28" "2013-08-20"
## [27561] "2013-09-18" "2013-09-18" "2013-08-20" "2013-09-18" "2013-06-16"
## [27566] "2014-02-14" NA           "2014-02-14" NA           NA          
## [27571] NA           NA           NA           NA           "2013-06-16"
## [27576] NA           "2014-02-14" NA           NA           "2011-04-18"
## [27581] "2012-08-24" "2011-04-18" "2011-04-18" "2012-01-27" "2012-08-24"
## [27586] NA           "2012-01-27" NA           "2011-04-18" "2012-01-27"
## [27591] "2012-01-27" NA           "2012-08-24" "2012-01-27" NA          
## [27596] NA           NA           NA           NA           NA          
## [27601] NA           NA           NA           NA           NA          
## [27606] NA           "2011-02-21" "2011-07-15" NA           NA          
## [27611] NA           "2011-07-15" "2011-07-19" NA           "2011-07-19"
## [27616] NA           NA           "2011-02-21" NA           NA          
## [27621] NA           NA           "2014-01-25" "2011-06-16" "2014-01-25"
## [27626] "2011-06-16" "2011-09-25" "2011-09-25" "2011-09-25" NA          
## [27631] NA           NA           NA           NA           "2012-05-16"
## [27636] "2012-05-16" "2013-03-23" "2013-03-23" NA           "2014-01-21"
## [27641] "2014-01-21" "2014-01-21" NA           "2014-01-21" NA          
## [27646] "2014-01-21" "2011-08-30" "2011-03-31" "2011-03-31" "2011-08-30"
## [27651] "2011-08-30" "2011-08-30" "2011-03-31" "2011-08-30" "2011-03-31"
## [27656] "2011-03-31" NA           NA           NA           NA          
## [27661] NA           NA           NA           NA           NA          
## [27666] NA           NA           NA           NA           NA          
## [27671] NA           NA           NA           NA           NA          
## [27676] NA           NA           "2011-06-17" "2011-06-17" "2011-11-23"
## [27681] "2011-11-23" "2011-11-23" "2011-11-23" "2011-11-23" "2011-11-29"
## [27686] "2011-10-21" "2011-11-29" "2011-10-21" "2011-10-21" NA          
## [27691] NA           NA           NA           "2013-12-24" NA          
## [27696] "2013-12-24" "2012-10-28" "2012-10-28" "2012-10-28" "2012-10-28"
## [27701] "2012-10-28" "2014-01-18" "2011-04-15" "2014-01-18" NA          
## [27706] NA           "2012-11-28" NA           "2013-07-22" "2014-01-18"
## [27711] "2012-11-22" "2012-11-22" "2012-11-22" NA           "2011-04-15"
## [27716] "2013-07-22" "2012-11-28" "2012-01-19" "2012-01-19" "2012-11-28"
## [27721] "2012-11-22" "2012-11-28" "2012-01-19" "2012-05-17" "2012-05-17"
## [27726] NA           "2012-05-17" "2011-11-19" "2011-11-19" "2011-11-19"
## [27731] "2012-05-17" NA           NA           "2012-05-17" "2012-10-26"
## [27736] "2012-10-26" "2012-10-26" "2012-10-26" "2012-05-21" "2012-05-21"
## [27741] "2012-05-21" "2012-05-21" "2012-05-21" NA           NA          
## [27746] NA           NA           NA           NA           NA          
## [27751] NA           NA           NA           NA           NA          
## [27756] NA           NA           NA           NA           NA          
## [27761] NA           "2013-01-16" "2013-01-16" "2012-01-16" "2013-01-16"
## [27766] "2013-01-16" "2013-05-15" "2012-01-16" "2013-01-16" "2013-05-15"
## [27771] "2011-04-30" "2011-04-30" "2011-02-26" NA           NA          
## [27776] NA           "2011-02-26" NA           NA           NA          
## [27781] "2013-08-26" "2013-08-26" NA           NA           NA          
## [27786] NA           "2013-08-26" "2011-05-13" "2011-05-13" "2013-04-14"
## [27791] "2013-04-14" NA           "2013-04-14" "2013-04-14" "2011-02-24"
## [27796] "2014-01-29" "2012-01-20" "2012-01-20" "2013-03-17" "2013-06-17"
## [27801] "2011-02-24" NA           "2013-06-17" "2012-01-20" "2013-06-17"
## [27806] "2012-01-20" "2012-01-20" "2013-03-17" NA           "2014-01-29"
## [27811] NA           NA           NA           "2012-08-28" "2012-08-28"
## [27816] "2012-08-28" "2013-01-28" NA           NA           "2013-01-28"
## [27821] NA           "2013-01-28" "2013-04-29" NA           "2013-04-29"
## [27826] "2011-11-28" "2013-03-28" "2012-01-15" "2013-03-28" "2012-01-15"
## [27831] NA           NA           "2013-03-28" "2011-11-28" "2011-06-15"
## [27836] "2011-11-28" "2011-11-28" "2011-06-15" "2011-06-20" "2011-06-20"
## [27841] "2011-06-20" "2012-04-25" "2012-04-25" NA           NA          
## [27846] "2012-04-25" "2012-04-25" "2012-04-25" NA           "2011-09-29"
## [27851] NA           NA           "2011-09-29" NA           "2012-03-24"
## [27856] "2012-03-24" "2012-03-24" "2012-03-24" "2012-09-28" "2012-09-28"
## [27861] "2012-09-21" "2012-09-28" NA           "2012-09-21" NA          
## [27866] NA           "2012-09-28" "2012-09-21" "2012-09-28" NA          
## [27871] NA           "2012-09-21" NA           "2012-09-28" NA          
## [27876] "2012-09-21" NA           "2012-09-21" "2012-12-20" "2012-12-20"
## [27881] "2012-04-30" "2012-04-30" "2012-04-30" "2012-04-30" "2012-12-20"
## [27886] "2012-04-30" NA           NA           "2013-07-26" NA          
## [27891] NA           "2013-07-26" "2013-08-29" NA           NA          
## [27896] "2013-08-29" NA           "2013-08-29" "2013-08-29" NA          
## [27901] NA           "2013-08-29" NA           NA           "2012-09-18"
## [27906] "2012-09-18" "2012-09-18" "2012-09-18" "2012-09-18" NA          
## [27911] NA           NA           NA           NA           NA          
## [27916] NA           NA           NA           NA           NA          
## [27921] NA           NA           "2012-09-20" "2012-09-20" "2012-09-20"
## [27926] NA           NA           "2012-09-20" "2012-09-15" NA          
## [27931] "2012-09-20" NA           NA           NA           "2012-09-15"
## [27936] NA           NA           "2012-09-15" "2012-09-15" NA          
## [27941] NA           NA           "2012-09-15" NA           "2011-08-30"
## [27946] "2011-08-30" "2012-03-14" "2011-08-30" "2011-08-30" "2012-03-14"
## [27951] "2013-07-14" "2011-08-30" "2013-07-14" "2013-07-14" "2013-07-14"
## [27956] "2013-07-14" "2012-04-25" "2013-10-22" "2012-04-25" "2013-10-18"
## [27961] "2012-04-25" "2013-10-18" "2013-10-22" "2013-10-22" "2013-07-28"
## [27966] "2013-07-28" "2013-07-28" "2013-03-15" "2013-03-15" "2013-03-15"
## [27971] NA           NA           NA           NA           NA          
## [27976] "2012-09-23" "2011-03-19" NA           "2011-03-19" "2012-09-23"
## [27981] NA           NA           NA           NA           NA          
## [27986] NA           NA           NA           NA           NA          
## [27991] "2012-07-13" "2012-07-13" NA           "2012-07-13" "2012-09-20"
## [27996] "2013-07-31" "2013-04-22" "2012-03-23" "2013-07-31" "2012-09-20"
## [28001] "2013-07-31" "2013-04-22" "2012-03-23" "2012-03-23" "2013-10-20"
## [28006] "2013-10-20" NA           NA           NA           NA          
## [28011] NA           NA           NA           NA           NA          
## [28016] NA           "2012-11-14" "2012-11-14" "2012-11-14" NA          
## [28021] "2012-11-14" "2012-11-14" "2011-06-27" "2011-06-27" "2012-03-21"
## [28026] "2011-06-14" "2011-06-27" "2012-03-21" "2011-06-14" "2011-06-27"
## [28031] "2011-06-27" "2012-03-21" "2011-06-27" NA           NA          
## [28036] NA           NA           NA           "2012-10-28" "2013-01-16"
## [28041] "2012-10-28" "2013-01-16" "2013-01-16" "2013-01-16" "2012-10-28"
## [28046] "2013-01-16" "2013-01-16" "2012-10-28" "2012-10-28" "2011-08-24"
## [28051] NA           "2011-12-30" "2011-08-24" "2011-12-30" "2011-08-24"
## [28056] "2012-12-25" "2012-12-25" "2012-12-25" "2011-08-24" NA          
## [28061] "2011-08-24" "2012-12-25" "2012-12-25" "2011-12-30" "2011-08-24"
## [28066] "2011-10-25" "2012-08-19" "2012-08-19" NA           "2011-10-25"
## [28071] "2012-08-19" "2011-10-20" "2011-10-25" "2011-10-20" NA          
## [28076] NA           "2011-10-20" NA           NA           "2011-08-14"
## [28081] "2011-08-14" "2011-08-14" "2013-04-22" "2013-04-22" "2013-04-22"
## [28086] "2013-04-22" "2013-04-22" "2013-11-15" NA           "2013-10-13"
## [28091] NA           "2013-10-13" NA           "2013-11-15" "2013-10-13"
## [28096] "2013-10-13" "2013-10-13" "2013-11-15" NA           NA          
## [28101] NA           NA           NA           "2011-12-22" NA          
## [28106] "2011-12-22" "2011-12-22" "2011-12-22" NA           NA          
## [28111] "2011-12-22" NA           NA           NA           "2011-03-19"
## [28116] "2012-11-18" "2012-07-30" "2013-01-25" "2012-11-18" "2011-03-19"
## [28121] "2012-11-18" "2013-01-17" "2013-01-25" "2012-07-30" NA          
## [28126] "2012-11-18" "2012-07-30" "2011-03-19" "2013-01-25" "2012-07-30"
## [28131] "2013-01-17" NA           "2013-01-17" NA           NA          
## [28136] "2013-12-26" "2011-06-20" "2011-06-20" "2011-06-20" "2011-06-20"
## [28141] "2013-12-26" "2011-03-20" "2011-03-20" "2013-12-22" "2011-03-20"
## [28146] "2013-12-22" "2011-03-20" "2011-06-20" "2011-03-20" "2011-09-23"
## [28151] "2011-09-23" NA           "2011-09-23" NA           "2011-09-23"
## [28156] "2011-09-23" NA           NA           NA           NA          
## [28161] "2011-09-23" NA           "2011-08-25" "2012-09-17" "2012-02-28"
## [28166] "2011-08-25" "2012-02-28" "2012-09-17" "2013-03-16" "2013-03-22"
## [28171] "2013-03-22" "2012-06-20" "2013-03-22" "2013-03-22" "2013-03-16"
## [28176] "2013-03-16" "2013-03-22" "2013-03-16" "2012-06-20" "2013-03-16"
## [28181] NA           "2011-03-25" NA           NA           NA          
## [28186] NA           "2011-03-25" NA           NA           NA          
## [28191] NA           NA           NA           NA           NA          
## [28196] "2011-06-15" "2011-06-15" "2011-06-15" "2011-06-15" "2011-06-15"
## [28201] "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18"
## [28206] "2012-01-23" NA           "2012-01-23" NA           NA          
## [28211] "2014-01-15" NA           "2014-01-15" "2013-09-22" NA          
## [28216] "2013-09-22" "2013-09-22" NA           NA           "2012-09-30"
## [28221] NA           NA           "2012-09-30" "2011-08-18" "2013-07-20"
## [28226] NA           NA           NA           "2013-07-20" "2011-08-18"
## [28231] NA           "2013-04-30" "2013-04-30" "2012-09-25" "2012-09-25"
## [28236] "2013-04-30" "2013-06-30" "2013-06-30" "2012-09-25" "2013-06-30"
## [28241] "2013-09-19" "2013-09-19" NA           NA           "2013-09-19"
## [28246] "2013-01-15" "2013-01-15" "2013-01-15" "2013-01-15" "2012-04-24"
## [28251] "2012-04-24" NA           NA           NA           NA          
## [28256] NA           NA           NA           "2012-04-18" "2013-02-25"
## [28261] NA           "2013-02-25" "2012-04-18" NA           NA          
## [28266] NA           "2013-06-25" "2013-06-25" NA           "2012-05-21"
## [28271] NA           NA           "2012-05-21" "2013-09-24" "2011-12-21"
## [28276] "2013-05-20" NA           "2013-03-14" "2012-09-23" "2013-09-24"
## [28281] "2012-09-23" "2013-03-14" "2013-03-14" "2013-05-20" "2013-09-24"
## [28286] "2013-05-20" NA           "2013-03-14" "2011-12-21" NA          
## [28291] "2012-09-23" "2013-05-20" "2013-09-24" "2013-09-24" "2011-12-21"
## [28296] "2013-05-20" "2013-05-20" "2013-03-14" NA           NA          
## [28301] NA           "2012-02-28" NA           NA           NA          
## [28306] NA           NA           NA           "2012-02-28" "2012-02-28"
## [28311] NA           NA           NA           NA           "2012-02-28"
## [28316] "2012-02-28" NA           NA           NA           NA          
## [28321] NA           NA           NA           NA           NA          
## [28326] "2011-05-17" "2011-05-17" NA           NA           NA          
## [28331] NA           "2011-05-17" NA           "2013-11-29" "2013-10-29"
## [28336] "2012-09-22" "2013-11-29" "2013-10-19" "2013-10-19" "2012-09-22"
## [28341] "2012-09-22" "2013-10-29" "2013-10-29" "2013-10-19" "2013-10-19"
## [28346] "2013-10-19" "2013-02-20" "2013-02-20" "2013-02-20" "2013-05-14"
## [28351] "2013-05-14" "2013-05-14" "2013-05-14" "2013-05-14" "2013-05-14"
## [28356] NA           NA           NA           NA           "2013-11-25"
## [28361] "2012-04-27" "2012-04-27" "2013-11-25" "2013-11-25" "2012-04-27"
## [28366] "2013-11-25" "2013-11-25" "2012-06-26" NA           "2012-06-26"
## [28371] NA           NA           "2012-08-15" NA           "2012-08-15"
## [28376] "2012-08-15" "2012-08-15" NA           NA           "2012-08-15"
## [28381] "2012-08-15" "2012-05-15" "2011-10-26" "2012-05-15" "2011-10-26"
## [28386] "2011-10-26" "2011-10-26" "2011-10-26" "2014-01-22" "2012-05-15"
## [28391] "2011-10-26" "2014-01-22" NA           "2012-11-27" NA          
## [28396] "2012-11-27" "2012-11-27" NA           NA           NA          
## [28401] NA           NA           NA           NA           "2013-08-16"
## [28406] "2013-08-16" "2013-08-16" "2013-08-16" "2013-08-16" "2011-03-19"
## [28411] "2013-10-20" "2013-10-20" "2011-05-15" "2011-05-15" "2011-05-15"
## [28416] "2013-10-20" "2011-06-19" "2011-03-19" "2013-10-20" "2011-03-19"
## [28421] "2011-03-19" "2011-06-19" "2011-06-19" NA           NA          
## [28426] NA           "2012-10-23" "2012-10-23" "2012-08-28" NA          
## [28431] NA           "2012-08-28" "2012-10-23" NA           "2012-08-28"
## [28436] NA           "2012-10-23" NA           NA           "2012-09-20"
## [28441] "2012-09-29" "2012-09-20" "2012-09-29" "2012-09-29" "2012-09-20"
## [28446] NA           NA           NA           NA           "2013-11-18"
## [28451] "2012-09-19" "2012-09-19" "2013-11-18" NA           NA          
## [28456] "2013-11-18" NA           NA           "2012-07-23" "2012-07-23"
## [28461] "2012-07-23" "2012-07-23" "2012-07-23" NA           NA          
## [28466] "2011-11-24" NA           "2011-11-24" "2011-11-24" "2011-11-24"
## [28471] "2011-11-24" NA           "2011-03-16" "2011-03-16" NA          
## [28476] "2013-02-23" "2013-02-23" "2013-02-23" NA           "2013-02-23"
## [28481] "2013-06-13" NA           "2013-06-13" NA           "2011-03-16"
## [28486] NA           NA           "2013-02-23" NA           "2012-05-31"
## [28491] "2011-03-20" "2011-03-20" "2011-03-20" "2011-07-17" "2011-07-17"
## [28496] "2011-03-20" NA           NA           "2011-03-20" "2012-05-31"
## [28501] "2011-03-20" "2011-07-17" NA           NA           "2012-05-31"
## [28506] NA           NA           NA           NA           NA          
## [28511] NA           NA           NA           NA           NA          
## [28516] NA           NA           NA           NA           NA          
## [28521] NA           NA           NA           NA           NA          
## [28526] NA           NA           NA           NA           NA          
## [28531] NA           NA           NA           NA           NA          
## [28536] NA           NA           NA           NA           NA          
## [28541] "2011-08-27" "2011-08-27" "2011-08-27" "2012-10-25" "2012-10-25"
## [28546] "2012-10-25" "2012-10-25" "2012-10-25" "2012-10-25" NA          
## [28551] "2014-01-23" NA           NA           "2014-01-23" NA          
## [28556] NA           "2011-12-31" "2011-12-31" NA           NA          
## [28561] NA           "2014-01-23" NA           "2011-12-31" NA          
## [28566] NA           "2011-07-26" "2013-09-25" "2013-09-25" "2013-09-25"
## [28571] NA           NA           NA           "2013-09-25" "2013-09-25"
## [28576] "2013-07-15" NA           NA           NA           NA          
## [28581] NA           "2011-07-26" "2013-07-15" "2011-07-26" NA          
## [28586] NA           NA           "2013-11-26" "2011-12-19" "2014-01-23"
## [28591] NA           "2013-11-26" NA           "2014-01-14" NA          
## [28596] "2012-11-16" "2014-01-23" "2013-11-26" "2014-01-23" "2014-01-14"
## [28601] "2011-12-19" NA           "2013-11-26" "2013-11-26" "2012-11-16"
## [28606] "2012-11-16" "2012-11-16" "2011-12-19" "2012-11-16" "2012-11-16"
## [28611] "2014-01-14" NA           NA           "2011-07-18" "2014-02-15"
## [28616] "2011-10-14" NA           "2013-11-23" "2011-07-18" "2014-02-15"
## [28621] "2011-07-18" "2011-07-18" "2014-02-15" NA           "2011-07-18"
## [28626] "2011-10-14" "2011-07-18" "2014-02-15" "2011-10-14" "2011-10-14"
## [28631] "2014-02-15" "2013-11-23" "2011-10-14" "2014-02-15" "2013-07-24"
## [28636] NA           NA           "2013-07-24" "2013-07-24" NA          
## [28641] "2013-07-24" NA           NA           NA           NA          
## [28646] "2013-07-24" "2013-07-24" NA           NA           NA          
## [28651] NA           NA           "2011-03-14" NA           NA          
## [28656] NA           "2013-06-19" NA           "2011-03-14" NA          
## [28661] "2011-03-14" "2011-03-14" "2013-06-19" "2013-06-19" "2013-06-19"
## [28666] "2011-03-14" "2011-03-14" "2013-06-19" NA           "2013-07-23"
## [28671] "2012-04-20" "2013-07-23" "2013-07-23" "2012-04-20" "2013-12-22"
## [28676] "2013-12-22" "2013-12-22" "2013-12-22" "2013-12-22" "2013-12-22"
## [28681] "2013-06-14" "2013-06-14" "2013-06-14" "2013-06-14" "2013-06-14"
## [28686] "2013-06-14" "2012-12-19" "2012-05-23" "2012-05-23" NA          
## [28691] "2012-05-23" NA           "2012-05-23" "2012-12-19" "2012-05-23"
## [28696] "2012-04-19" "2012-04-19" NA           NA           NA          
## [28701] NA           NA           NA           NA           NA          
## [28706] NA           NA           NA           NA           NA          
## [28711] NA           NA           NA           "2012-08-22" "2012-08-22"
## [28716] "2013-11-23" "2013-11-23" "2013-11-23" "2013-11-23" "2013-11-23"
## [28721] "2011-11-17" "2011-11-17" "2013-07-14" "2013-07-14" "2011-11-17"
## [28726] "2012-02-18" "2012-02-18" "2011-04-28" "2011-04-24" "2012-02-18"
## [28731] "2011-04-24" "2012-02-18" "2011-04-28" "2011-04-24" "2012-02-18"
## [28736] NA           NA           NA           NA           NA          
## [28741] NA           "2011-03-24" NA           "2011-03-24" NA          
## [28746] NA           NA           "2013-01-17" NA           "2012-07-13"
## [28751] NA           "2012-07-13" NA           "2013-01-17" NA          
## [28756] NA           NA           "2012-07-13" "2012-07-13" "2012-07-13"
## [28761] NA           NA           NA           NA           NA          
## [28766] "2013-12-17" "2013-12-13" "2012-05-25" NA           "2013-12-13"
## [28771] "2013-12-17" "2012-05-25" "2011-09-13" "2011-09-13" "2011-09-13"
## [28776] "2012-01-15" "2011-09-13" "2012-01-15" "2012-01-15" "2011-09-13"
## [28781] "2012-01-15" "2012-01-15" "2011-08-21" "2011-08-21" NA          
## [28786] "2011-08-21" NA           "2012-01-30" "2011-10-23" "2011-10-23"
## [28791] "2011-08-21" "2011-08-21" "2011-10-23" "2012-01-30" "2012-01-30"
## [28796] "2012-01-30" "2012-01-30" "2013-06-23" "2013-06-23" NA          
## [28801] NA           NA           NA           "2013-09-22" "2013-09-22"
## [28806] "2011-07-31" "2011-07-31" NA           "2013-09-22" NA          
## [28811] NA           NA           "2013-04-27" NA           "2013-04-27"
## [28816] NA           NA           NA           NA           "2013-04-27"
## [28821] NA           "2013-09-22" NA           NA           "2013-09-22"
## [28826] "2011-07-31" NA           NA           NA           NA          
## [28831] NA           NA           NA           NA           NA          
## [28836] "2013-04-27" NA           NA           NA           "2011-11-27"
## [28841] NA           NA           NA           NA           NA          
## [28846] NA           "2011-11-27" NA           NA           NA          
## [28851] "2011-11-27" NA           NA           NA           NA          
## [28856] NA           NA           NA           NA           NA          
## [28861] NA           NA           NA           NA           NA          
## [28866] "2013-04-19" NA           "2013-04-19" "2011-09-20" NA          
## [28871] "2011-09-20" NA           "2011-09-20" "2012-03-13" "2012-03-13"
## [28876] "2012-03-13" "2011-09-14" NA           "2011-09-14" "2013-03-24"
## [28881] "2013-03-24" "2011-12-31" "2011-09-14" "2011-09-14" "2011-09-14"
## [28886] NA           "2011-09-14" NA           NA           "2013-03-24"
## [28891] NA           "2011-12-31" "2011-12-31" "2011-12-31" "2011-07-20"
## [28896] "2011-01-27" "2011-07-20" NA           "2011-01-27" "2011-07-20"
## [28901] "2011-07-20" "2011-07-20" NA           NA           NA          
## [28906] NA           "2011-06-19" "2011-06-14" "2011-06-19" "2011-06-14"
## [28911] NA           "2011-12-23" NA           NA           "2011-12-23"
## [28916] "2011-08-15" "2011-08-15" NA           NA           NA          
## [28921] "2011-04-17" "2011-04-17" "2011-04-17" NA           NA          
## [28926] "2011-08-30" NA           "2013-10-29" NA           NA          
## [28931] NA           NA           NA           NA           NA          
## [28936] "2013-10-29" NA           "2011-08-30" NA           NA          
## [28941] "2013-10-29" NA           NA           "2013-04-29" NA          
## [28946] NA           NA           NA           "2013-04-29" NA          
## [28951] "2013-04-29" "2012-05-17" NA           NA           NA          
## [28956] "2012-05-17" "2012-05-17" NA           NA           NA          
## [28961] "2012-06-24" "2012-04-18" "2012-04-18" "2012-06-24" "2012-04-18"
## [28966] "2012-06-24" "2013-06-19" "2013-06-19" "2012-06-24" "2013-12-13"
## [28971] "2013-12-13" "2012-06-24" "2013-12-13" NA           "2011-09-19"
## [28976] NA           "2011-09-19" "2011-09-19" NA           NA          
## [28981] NA           NA           NA           NA           NA          
## [28986] NA           "2012-11-13" "2012-11-13" "2012-11-13" "2011-08-30"
## [28991] NA           "2011-08-30" "2012-11-13" "2012-11-13" NA          
## [28996] "2012-08-23" "2012-08-21" "2012-08-23" "2012-08-21" "2012-08-23"
## [29001] NA           "2012-08-23" NA           "2012-08-21" "2012-08-23"
## [29006] "2012-08-21" NA           "2012-08-21" "2012-04-29" "2012-10-21"
## [29011] "2012-10-21" "2012-10-21" "2012-04-29" NA           "2011-09-16"
## [29016] "2011-09-16" "2012-04-29" "2012-04-29" "2011-09-16" "2011-09-16"
## [29021] "2012-10-21" NA           "2011-09-16" NA           "2012-04-29"
## [29026] "2013-09-15" NA           "2012-08-18" "2012-01-23" NA          
## [29031] NA           "2012-08-18" "2012-08-18" NA           NA          
## [29036] NA           "2012-08-18" NA           "2013-09-15" "2013-09-15"
## [29041] NA           "2013-09-15" "2012-01-23" "2012-08-18" "2013-09-15"
## [29046] NA           NA           NA           NA           NA          
## [29051] NA           NA           NA           NA           NA          
## [29056] NA           NA           NA           NA           NA          
## [29061] NA           NA           "2011-03-29" "2011-03-29" "2013-08-18"
## [29066] "2013-08-18" "2013-04-13" "2013-08-18" "2013-08-18" "2013-04-13"
## [29071] "2013-04-13" "2013-08-18" "2011-09-25" "2011-09-25" "2011-09-25"
## [29076] NA           "2012-09-22" NA           "2012-09-22" "2012-09-22"
## [29081] NA           NA           "2012-09-21" "2012-09-21" NA          
## [29086] "2012-09-22" NA           "2012-09-21" "2012-09-21" "2012-09-21"
## [29091] "2012-09-22" "2012-09-21" "2012-09-22" "2013-03-30" "2013-03-30"
## [29096] "2013-06-29" "2013-06-28" "2013-06-29" "2013-03-23" NA          
## [29101] "2013-06-28" NA           "2013-06-28" "2013-03-23" "2013-03-23"
## [29106] "2013-03-30" "2013-06-29" NA           NA           "2012-05-31"
## [29111] "2012-05-31" NA           NA           NA           "2012-05-31"
## [29116] "2012-05-31" "2012-05-31" NA           NA           NA          
## [29121] NA           NA           NA           NA           NA          
## [29126] NA           NA           "2013-08-15" "2012-12-19" "2011-03-27"
## [29131] "2012-12-19" "2012-12-19" "2012-12-19" "2013-08-15" "2013-08-15"
## [29136] "2011-03-27" "2013-08-15" "2013-08-15" "2012-12-19" "2013-09-25"
## [29141] NA           "2013-09-25" "2013-09-25" NA           NA          
## [29146] "2013-12-16" "2013-12-16" NA           NA           NA          
## [29151] NA           NA           NA           NA           NA          
## [29156] NA           NA           "2013-10-19" NA           NA          
## [29161] NA           "2013-10-19" NA           "2013-10-19" NA          
## [29166] NA           NA           NA           NA           NA          
## [29171] NA           NA           "2013-12-30" "2013-12-27" "2013-12-27"
## [29176] NA           "2013-12-30" NA           "2012-03-17" "2012-03-17"
## [29181] "2012-03-17" "2013-10-27" NA           NA           "2013-10-27"
## [29186] NA           NA           NA           "2012-11-25" "2012-11-25"
## [29191] NA           NA           NA           NA           NA          
## [29196] NA           NA           NA           "2011-04-17" "2013-05-27"
## [29201] "2011-04-17" "2012-06-16" "2012-06-16" "2012-06-16" "2012-06-16"
## [29206] "2013-05-27" "2012-06-16" "2013-05-27" "2011-04-17" NA          
## [29211] NA           NA           NA           NA           NA          
## [29216] NA           NA           NA           NA           NA          
## [29221] NA           NA           NA           NA           NA          
## [29226] "2011-02-16" "2011-02-16" NA           "2011-02-16" "2011-02-16"
## [29231] NA           "2011-02-16" "2012-04-19" NA           "2012-04-19"
## [29236] NA           NA           "2013-09-13" "2013-09-13" "2013-09-13"
## [29241] NA           NA           NA           NA           NA          
## [29246] NA           NA           NA           NA           NA          
## [29251] NA           NA           NA           "2013-01-20" "2013-01-20"
## [29256] "2013-01-20" "2013-01-20" "2013-01-20" NA           "2013-01-20"
## [29261] NA           NA           NA           NA           NA          
## [29266] "2012-02-18" "2012-02-23" "2013-10-19" "2013-10-19" "2012-02-18"
## [29271] "2012-02-18" "2012-02-18" "2013-10-19" "2012-02-23" "2012-02-18"
## [29276] "2012-02-23" NA           NA           NA           NA          
## [29281] NA           NA           NA           NA           NA          
## [29286] "2013-07-25" "2013-07-25" "2013-07-25" "2013-07-25" "2013-07-25"
## [29291] "2011-01-25" "2013-07-23" "2013-07-23" "2013-07-23" "2011-04-29"
## [29296] NA           NA           "2011-09-27" "2011-09-27" "2011-01-25"
## [29301] "2011-09-27" "2012-04-25" "2012-04-24" "2013-07-23" "2012-04-24"
## [29306] "2012-04-24" "2012-04-25" NA           "2012-04-25" "2011-09-27"
## [29311] "2012-04-24" "2012-04-25" "2011-04-29" "2011-01-25" "2012-04-25"
## [29316] "2012-04-24" "2011-04-29" "2013-07-23" NA           "2012-04-25"
## [29321] NA           "2011-09-27" "2012-04-24" "2011-06-15" "2011-06-15"
## [29326] "2011-06-15" "2011-10-17" "2011-10-17" "2011-10-17" "2011-10-17"
## [29331] "2011-10-17" "2013-01-13" "2013-01-13" "2011-02-23" "2013-01-13"
## [29336] NA           "2011-02-23" NA           "2011-09-24" "2011-08-22"
## [29341] "2011-09-24" "2011-09-16" "2011-08-22" "2011-08-22" "2011-09-24"
## [29346] "2011-09-16" "2011-09-16" "2011-08-22" "2011-08-22" "2012-06-20"
## [29351] "2012-03-22" NA           NA           "2012-06-20" NA          
## [29356] NA           NA           "2012-06-20" "2012-06-20" "2012-03-22"
## [29361] "2012-06-20" "2013-01-23" "2013-07-13" "2012-09-18" "2012-09-18"
## [29366] "2013-07-13" "2013-07-13" "2012-09-18" "2013-01-23" "2013-01-23"
## [29371] "2013-01-23" "2013-01-23" "2012-09-18" "2013-01-23" "2012-09-18"
## [29376] "2013-07-20" "2013-09-24" "2013-07-20" "2013-09-24" "2013-09-24"
## [29381] "2013-07-20" "2013-09-24" NA           NA           NA          
## [29386] NA           NA           "2012-11-27" "2012-11-27" "2012-11-27"
## [29391] "2012-11-27" "2012-11-27" "2011-10-28" "2011-10-28" "2011-10-28"
## [29396] "2011-10-28" "2012-04-25" "2012-04-25" "2011-09-20" "2011-09-16"
## [29401] "2011-09-20" NA           "2011-09-20" "2011-09-20" NA          
## [29406] "2011-09-16" "2011-09-16" "2011-09-16" NA           NA          
## [29411] "2012-01-15" "2012-01-15" NA           "2012-01-15" NA          
## [29416] NA           NA           "2012-01-15" "2012-01-15" NA          
## [29421] NA           "2013-06-17" "2013-06-17" "2013-06-17" "2013-06-17"
## [29426] NA           NA           NA           "2013-06-17" "2014-01-22"
## [29431] "2014-01-22" NA           "2014-01-27" "2014-01-27" NA          
## [29436] "2014-01-27" NA           "2014-01-27" NA           NA          
## [29441] NA           NA           NA           "2014-01-27" "2013-08-29"
## [29446] NA           NA           "2013-08-29" NA           NA          
## [29451] "2013-12-19" NA           "2013-12-19" "2013-11-17" "2013-11-17"
## [29456] "2013-11-17" NA           "2013-11-17" NA           NA          
## [29461] NA           NA           "2013-11-17" NA           NA          
## [29466] "2013-12-19" NA           "2011-05-30" NA           "2011-05-30"
## [29471] NA           "2011-05-28" NA           "2011-05-28" "2013-07-27"
## [29476] "2013-07-27" NA           "2011-05-30" "2013-07-27" "2011-05-28"
## [29481] "2012-03-26" NA           "2012-03-26" "2012-03-26" NA          
## [29486] "2013-03-19" "2013-03-19" "2012-07-20" "2013-03-19" "2011-11-26"
## [29491] "2012-07-20" "2011-11-26" "2013-03-19" "2011-11-26" "2013-03-19"
## [29496] "2011-11-26" "2013-03-19" "2012-08-28" NA           "2012-08-28"
## [29501] NA           "2012-08-28" "2011-04-14" "2011-04-14" "2012-11-14"
## [29506] "2012-11-14" "2013-02-14" "2012-11-14" "2013-02-14" "2014-01-17"
## [29511] "2014-01-17" "2014-01-17" NA           NA           "2013-11-28"
## [29516] "2013-11-28" "2013-05-19" "2013-05-19" "2013-04-18" "2013-05-19"
## [29521] "2013-11-28" "2013-04-18" "2013-05-19" NA           "2013-05-19"
## [29526] "2013-05-19" NA           NA           "2011-10-29" "2011-10-29"
## [29531] "2013-04-30" "2013-04-30" "2013-04-30" "2011-10-29" "2011-10-29"
## [29536] "2011-05-20" "2011-05-20" "2011-05-20" "2012-01-16" "2012-01-16"
## [29541] "2012-01-16" "2013-12-24" "2013-12-24" "2013-12-24" "2012-01-16"
## [29546] "2012-01-16" NA           NA           "2014-01-23" NA          
## [29551] "2012-01-15" NA           "2012-09-22" NA           "2012-09-22"
## [29556] "2012-01-15" "2012-09-22" NA           NA           "2014-01-23"
## [29561] "2012-01-15" "2014-01-23" NA           NA           "2013-10-19"
## [29566] NA           "2013-10-19" NA           "2013-10-19" "2013-10-19"
## [29571] "2011-09-23" "2011-09-23" "2011-06-24" NA           "2012-03-13"
## [29576] NA           NA           "2011-06-24" NA           NA          
## [29581] "2012-03-13" "2013-12-28" "2011-06-24" "2013-12-28" NA          
## [29586] NA           NA           "2013-10-15" "2013-10-15" "2013-10-15"
## [29591] "2012-02-29" "2013-03-21" "2012-02-29" NA           NA          
## [29596] "2011-11-14" NA           "2012-02-29" "2013-03-29" "2012-04-24"
## [29601] "2013-10-15" NA           "2012-04-24" NA           "2011-11-14"
## [29606] "2013-03-29" "2013-03-21" "2012-04-24" "2011-11-14" NA          
## [29611] "2013-04-15" NA           "2013-04-15" NA           NA          
## [29616] NA           NA           NA           NA           "2011-11-20"
## [29621] NA           NA           NA           NA           NA          
## [29626] NA           NA           NA           NA           NA          
## [29631] NA           "2011-11-20" NA           "2011-11-20" NA          
## [29636] NA           "2013-02-13" "2013-02-13" "2013-02-13" "2013-02-13"
## [29641] "2013-02-13" "2012-03-31" "2012-03-31" "2012-03-31" NA          
## [29646] NA           "2012-03-31" "2012-03-31" NA           NA          
## [29651] NA           NA           "2011-09-15" NA           "2012-09-22"
## [29656] NA           "2012-09-22" "2011-09-15" NA           "2011-09-15"
## [29661] "2011-09-15" "2012-09-22" "2011-09-15" "2011-09-15" "2011-03-22"
## [29666] "2011-03-22" "2011-03-22" NA           NA           "2012-01-25"
## [29671] "2012-08-26" NA           "2012-01-25" NA           "2012-08-26"
## [29676] "2012-08-26" "2012-01-25" NA           NA           NA          
## [29681] NA           NA           NA           NA           "2013-06-17"
## [29686] "2013-06-17" "2013-06-17" "2013-04-29" NA           NA          
## [29691] NA           NA           "2011-10-17" "2011-10-17" "2013-04-29"
## [29696] NA           "2011-10-17" NA           NA           NA          
## [29701] "2013-04-29" "2011-10-17" NA           "2011-10-17" NA          
## [29706] "2013-04-29" "2012-03-25" NA           NA           NA          
## [29711] "2012-03-25" NA           NA           NA           NA          
## [29716] NA           NA           NA           "2013-08-21" "2011-08-26"
## [29721] "2012-02-24" "2012-02-24" "2012-02-24" "2013-08-21" "2012-02-24"
## [29726] "2011-08-26" "2011-08-26" NA           "2011-08-26" "2011-08-26"
## [29731] "2012-02-24" NA           "2012-02-24" "2013-09-29" "2011-01-29"
## [29736] "2011-02-16" "2011-02-24" "2011-02-22" "2011-02-16" "2011-02-24"
## [29741] "2011-01-29" "2011-01-29" "2011-02-22" "2013-09-29" "2011-02-22"
## [29746] "2011-02-16" "2011-02-24" "2012-11-25" "2012-03-19" "2012-03-19"
## [29751] "2011-10-14" "2013-09-25" "2012-03-19" "2012-11-25" "2013-09-25"
## [29756] "2013-09-25" NA           "2013-09-25" "2011-10-14" "2012-03-19"
## [29761] NA           "2012-11-25" NA           NA           "2012-11-25"
## [29766] "2012-11-25" NA           NA           NA           "2011-07-13"
## [29771] "2011-07-13" "2011-07-13" "2011-08-15" "2011-08-15" "2011-08-15"
## [29776] "2012-01-28" "2013-09-19" "2012-01-28" "2012-04-17" "2013-09-19"
## [29781] "2012-04-17" "2012-01-28" NA           "2013-01-14" "2013-01-14"
## [29786] "2013-01-14" NA           NA           "2013-01-14" "2013-01-14"
## [29791] NA           NA           "2013-12-17" "2012-08-19" "2013-12-17"
## [29796] "2012-08-19" "2013-12-17" "2012-08-19" "2013-12-17" "2012-02-21"
## [29801] "2012-08-19" "2012-02-21" "2013-12-17" "2012-08-19" "2012-02-21"
## [29806] NA           "2012-02-21" "2012-02-21" NA           NA          
## [29811] "2013-12-28" "2013-07-13" "2013-07-13" NA           "2012-12-16"
## [29816] "2013-12-28" "2013-12-28" NA           NA           "2013-12-28"
## [29821] NA           "2013-07-13" "2013-07-13" "2011-07-16" "2013-12-28"
## [29826] NA           "2012-12-16" "2013-07-13" "2011-07-16" "2012-12-16"
## [29831] "2011-07-16" "2011-07-16" "2011-07-16" NA           "2011-04-13"
## [29836] "2011-04-13" NA           NA           NA           "2011-04-13"
## [29841] "2013-07-21" "2013-07-21" NA           NA           NA          
## [29846] NA           "2013-07-21" NA           "2012-12-18" "2012-11-23"
## [29851] "2012-11-23" "2012-12-18" "2012-12-18" "2012-11-23" NA          
## [29856] "2013-03-18" NA           "2011-07-24" "2013-03-18" "2013-03-18"
## [29861] "2011-07-24" "2011-07-24" NA           "2013-03-18" "2011-07-24"
## [29866] "2013-03-18" "2011-07-24" NA           NA           NA          
## [29871] NA           NA           NA           "2013-12-18" "2012-07-26"
## [29876] NA           "2013-12-18" NA           "2012-07-26" NA          
## [29881] NA           NA           NA           "2013-12-18" NA          
## [29886] "2013-12-18" "2013-12-18" "2012-07-17" "2012-07-14" "2012-07-14"
## [29891] "2012-07-17" "2011-04-20" "2011-04-20" "2011-04-20" NA          
## [29896] NA           NA           NA           NA           "2013-08-25"
## [29901] "2013-07-31" "2013-07-31" "2013-08-25" "2013-08-25" "2013-08-25"
## [29906] "2013-07-31" "2013-08-25" NA           NA           NA          
## [29911] "2014-01-15" NA           NA           "2014-01-13" NA          
## [29916] "2014-01-15" NA           "2014-01-13" NA           "2013-10-25"
## [29921] "2013-10-25" "2013-10-25" "2013-10-25" "2013-10-25" "2013-10-25"
## [29926] "2012-11-21" "2012-11-21" "2012-11-21" "2012-11-21" "2012-11-21"
## [29931] NA           NA           "2011-09-22" NA           NA          
## [29936] "2011-09-22" "2011-09-22" NA           "2011-11-14" NA          
## [29941] "2011-09-21" "2011-11-14" "2012-12-31" NA           "2011-11-14"
## [29946] "2011-11-14" "2011-11-14" "2011-09-21" "2012-12-31" "2011-09-21"
## [29951] "2012-01-22" NA           NA           NA           NA          
## [29956] "2012-01-13" "2012-01-22" NA           NA           "2012-01-13"
## [29961] "2012-01-22" "2012-01-22" NA           NA           "2012-01-13"
## [29966] "2012-01-22" "2012-01-13" "2012-01-13" "2013-12-18" "2013-12-18"
## [29971] "2011-11-16" "2013-01-25" "2011-11-16" "2013-01-25" "2013-01-25"
## [29976] "2011-12-30" "2011-11-16" "2013-01-25" "2013-01-25" "2011-12-30"
## [29981] NA           "2011-11-16" NA           "2011-12-30" "2011-11-16"
## [29986] "2011-11-16" "2011-12-30" "2011-12-30" NA           NA          
## [29991] NA           NA           NA           NA           NA          
## [29996] NA           NA           NA           NA           NA          
## [30001] NA           "2013-06-25" NA           "2013-06-25" NA          
## [30006] NA           NA           NA           NA           NA          
## [30011] NA           NA           NA           NA           NA          
## [30016] NA           NA           "2011-04-25" "2011-04-25" "2011-04-25"
## [30021] NA           "2014-01-21" NA           NA           NA          
## [30026] NA           "2014-01-21" "2011-03-16" "2013-02-14" NA          
## [30031] "2011-03-16" "2013-03-16" "2012-07-18" "2013-02-14" "2013-08-18"
## [30036] "2012-07-18" "2013-03-16" "2013-03-16" "2011-03-16" "2013-03-16"
## [30041] "2011-03-16" "2012-07-18" "2011-03-16" NA           "2012-07-18"
## [30046] "2013-08-18" NA           "2013-03-16" "2013-08-18" NA          
## [30051] NA           "2013-01-26" "2013-01-26" "2011-04-25" "2011-04-25"
## [30056] "2011-07-20" "2011-07-20" "2011-12-18" "2011-12-18" "2011-07-19"
## [30061] NA           NA           "2011-07-19" "2013-09-30" "2013-09-30"
## [30066] NA           NA           NA           "2011-07-19" "2011-10-30"
## [30071] NA           NA           NA           NA           "2011-10-30"
## [30076] NA           NA           NA           "2011-11-15" NA          
## [30081] NA           "2011-11-15" NA           NA           "2011-11-15"
## [30086] "2013-10-15" "2011-11-15" NA           "2013-10-15" NA          
## [30091] NA           NA           NA           NA           NA          
## [30096] NA           NA           NA           NA           NA          
## [30101] "2013-09-21" "2012-01-30" "2012-01-30" "2013-09-21" "2012-11-21"
## [30106] "2012-08-24" "2012-08-24" "2013-07-15" "2012-08-24" "2012-08-24"
## [30111] "2012-08-24" "2013-07-15" "2012-11-21" "2012-11-21" "2012-03-21"
## [30116] "2012-06-25" "2012-03-21" "2012-03-21" "2012-06-25" "2012-03-21"
## [30121] "2012-06-25" "2012-03-21" "2012-05-28" "2012-05-28" "2012-05-28"
## [30126] NA           "2012-05-28" "2011-07-25" "2012-05-28" "2011-01-30"
## [30131] NA           "2012-07-25" "2011-01-30" "2011-07-25" "2011-01-30"
## [30136] "2012-07-25" "2012-05-28" NA           "2011-07-25" NA          
## [30141] "2011-01-30" NA           "2011-07-25" "2011-07-25" "2011-01-30"
## [30146] NA           NA           NA           NA           NA          
## [30151] NA           NA           "2013-08-31" NA           "2013-08-31"
## [30156] NA           "2013-08-31" NA           "2013-08-31" "2013-08-31"
## [30161] NA           NA           "2013-08-31" "2013-09-19" "2013-09-19"
## [30166] "2013-09-19" NA           NA           "2013-01-27" "2013-01-27"
## [30171] "2013-01-27" NA           NA           NA           NA          
## [30176] NA           NA           "2012-12-13" NA           NA          
## [30181] NA           "2012-12-13" "2013-12-27" "2013-12-27" "2013-12-27"
## [30186] "2011-05-28" "2011-05-28" "2011-05-28" "2013-11-21" "2011-10-24"
## [30191] "2011-06-15" "2011-10-24" "2013-11-21" "2011-10-24" "2011-06-15"
## [30196] "2011-10-18" "2011-10-18" "2011-06-15" "2011-10-18" "2013-11-21"
## [30201] "2013-10-21" "2013-02-21" "2013-10-21" "2012-04-23" "2013-10-21"
## [30206] "2012-04-23" "2013-10-21" "2013-02-21" "2013-02-21" "2013-10-21"
## [30211] "2013-10-20" "2013-02-25" "2013-02-25" "2012-03-17" NA          
## [30216] "2013-10-20" "2013-02-25" "2013-10-20" "2012-03-17" NA          
## [30221] "2012-03-17" "2013-02-25" NA           "2013-02-25" NA          
## [30226] "2013-10-20" "2012-03-17" "2012-11-22" "2012-11-22" "2012-11-22"
## [30231] "2012-11-22" "2012-11-22" "2013-04-24" "2013-04-24" NA          
## [30236] NA           "2013-04-24" "2013-04-24" NA           NA          
## [30241] "2013-07-19" NA           NA           NA           "2013-07-19"
## [30246] "2013-07-19" "2012-02-20" NA           "2012-02-20" NA          
## [30251] "2012-02-20" "2012-02-20" NA           NA           "2012-02-20"
## [30256] NA           NA           "2014-01-17" "2013-03-19" "2014-01-17"
## [30261] "2012-11-24" "2012-11-24" "2012-11-24" "2012-11-24" "2014-01-17"
## [30266] "2013-03-19" "2014-01-17" NA           "2011-04-29" "2011-09-18"
## [30271] "2011-09-18" "2011-04-29" "2011-09-18" "2011-04-29" "2011-09-18"
## [30276] "2011-04-29" "2011-04-29" "2011-09-18" NA           "2014-01-31"
## [30281] NA           "2014-01-31" NA           NA           "2012-05-15"
## [30286] "2012-05-15" "2012-05-15" NA           NA           "2012-01-16"
## [30291] "2012-01-16" "2012-01-16" "2013-11-18" "2012-10-14" "2012-10-14"
## [30296] NA           "2013-11-18" "2013-11-18" NA           "2012-01-26"
## [30301] "2012-01-26" "2012-01-26" "2012-01-26" "2012-04-22" "2012-04-22"
## [30306] "2012-04-22" "2012-08-31" "2012-08-31" "2012-08-31" "2013-10-13"
## [30311] "2012-05-24" "2013-10-13" NA           "2013-10-13" "2012-05-20"
## [30316] "2012-05-24" "2012-05-20" "2012-07-21" "2012-10-17" "2012-10-17"
## [30321] NA           "2012-07-21" "2012-07-21" "2012-11-13" NA          
## [30326] "2012-11-13" "2012-11-13" "2012-10-23" NA           NA          
## [30331] "2012-10-23" "2012-10-23" NA           NA           NA          
## [30336] "2011-06-26" NA           NA           NA           NA          
## [30341] "2012-07-17" "2012-07-17" NA           NA           NA          
## [30346] "2011-06-26" NA           "2011-06-26" NA           NA          
## [30351] NA           "2012-07-17" NA           "2012-07-17" NA          
## [30356] NA           "2013-09-18" "2013-09-18" "2013-09-18" "2011-05-17"
## [30361] NA           "2011-08-21" "2011-08-14" "2011-05-17" "2011-08-21"
## [30366] "2011-05-17" "2011-05-17" "2011-05-17" NA           "2011-08-14"
## [30371] NA           NA           NA           NA           NA          
## [30376] NA           NA           NA           NA           NA          
## [30381] NA           NA           NA           NA           "2013-02-20"
## [30386] "2014-01-25" "2013-02-20" "2013-02-20" "2013-02-20" NA          
## [30391] "2012-04-22" "2014-01-25" "2012-04-22" NA           "2013-02-20"
## [30396] "2012-04-22" "2014-01-25" NA           "2012-04-22" NA          
## [30401] NA           NA           "2011-04-22" "2011-04-22" "2011-04-22"
## [30406] "2012-06-19" "2014-02-18" "2014-02-18" "2012-06-19" "2011-04-18"
## [30411] "2011-04-18" "2011-04-18" NA           NA           NA          
## [30416] NA           "2011-07-24" NA           NA           "2011-07-24"
## [30421] NA           "2011-07-24" "2013-10-15" NA           "2013-10-15"
## [30426] "2013-10-15" "2013-10-15" "2013-10-15" NA           "2013-10-15"
## [30431] NA           NA           "2012-07-25" "2012-07-25" "2012-07-25"
## [30436] "2011-06-13" "2011-06-13" "2011-06-13" "2013-05-24" "2013-05-24"
## [30441] "2011-06-13" "2013-05-24" "2013-05-24" "2011-06-13" "2013-09-18"
## [30446] "2013-09-25" "2013-09-25" "2013-09-25" "2013-06-13" "2013-06-13"
## [30451] "2013-09-25" "2013-02-28" "2013-06-13" "2013-09-18" "2013-09-18"
## [30456] "2013-09-18" "2013-02-24" "2013-02-24" "2013-02-28" "2013-06-13"
## [30461] "2013-06-13" "2013-09-18" "2013-09-25" "2011-07-16" "2011-07-16"
## [30466] NA           "2011-07-16" "2013-07-28" NA           "2013-07-28"
## [30471] "2013-07-28" "2013-07-28" "2013-07-28" NA           NA          
## [30476] "2013-07-21" NA           "2013-07-21" "2011-03-23" "2011-03-23"
## [30481] "2013-07-21" NA           "2013-07-21" NA           NA          
## [30486] "2012-09-22" "2011-07-17" "2011-07-17" "2013-06-18" "2013-06-18"
## [30491] "2013-06-18" "2011-07-17" "2011-07-17" "2013-06-18" "2013-06-18"
## [30496] "2012-09-22" "2011-07-17" "2012-08-22" "2013-07-25" "2012-08-22"
## [30501] "2011-05-20" "2011-04-28" "2012-08-22" "2011-04-28" "2012-08-22"
## [30506] "2011-05-20" "2012-08-22" "2011-05-20" "2013-07-25" "2011-05-22"
## [30511] "2011-05-22" "2011-05-22" NA           NA           NA          
## [30516] NA           NA           "2011-04-28" "2011-04-28" NA          
## [30521] "2011-07-19" NA           "2011-05-31" NA           "2011-06-30"
## [30526] "2011-05-31" "2011-07-19" "2011-07-19" "2014-01-23" "2011-05-31"
## [30531] "2011-07-19" "2011-09-30" "2011-09-30" "2011-07-19" "2011-06-30"
## [30536] "2011-06-30" "2011-09-30" "2011-07-19" "2011-09-30" "2011-09-30"
## [30541] NA           "2014-01-23" "2014-01-23" NA           NA          
## [30546] NA           NA           "2011-12-23" NA           NA          
## [30551] NA           NA           NA           NA           "2011-12-23"
## [30556] "2011-12-31" "2011-12-31" "2011-12-23" "2011-12-31" "2011-12-23"
## [30561] "2011-12-23" "2011-09-28" "2011-03-21" "2011-03-21" "2011-09-28"
## [30566] "2011-03-21" "2011-09-28" NA           NA           "2013-11-21"
## [30571] NA           NA           NA           "2013-11-21" NA          
## [30576] NA           "2013-11-21" NA           NA           "2013-11-21"
## [30581] NA           NA           "2013-11-21" NA           NA          
## [30586] NA           NA           NA           "2014-01-31" NA          
## [30591] NA           NA           NA           "2013-09-29" "2011-11-24"
## [30596] NA           "2011-11-24" "2011-11-24" "2013-09-29" NA          
## [30601] NA           "2011-11-24" NA           NA           "2013-09-29"
## [30606] "2013-09-29" NA           "2013-09-29" "2011-11-24" NA          
## [30611] NA           "2011-11-24" "2014-01-31" "2014-01-31" NA          
## [30616] NA           "2012-05-16" "2012-05-16" "2012-05-16" "2012-05-21"
## [30621] "2012-05-21" "2012-05-16" "2012-05-16" "2012-01-22" "2012-01-22"
## [30626] "2013-03-19" "2013-03-19" "2013-03-14" "2013-03-19" "2013-09-26"
## [30631] "2013-09-26" "2013-04-24" "2013-04-24" "2013-03-14" NA          
## [30636] NA           "2013-04-24" NA           "2013-04-24" "2011-05-14"
## [30641] "2011-05-14" NA           "2013-06-25" "2011-10-18" "2011-05-14"
## [30646] NA           "2013-04-24" NA           "2011-10-18" "2011-10-18"
## [30651] "2011-05-14" "2011-05-14" "2013-06-25" "2013-06-25" "2013-01-26"
## [30656] "2013-01-26" "2011-09-26" "2013-01-26" "2011-09-26" "2011-09-26"
## [30661] "2013-01-26" "2013-01-26" NA           "2011-09-19" NA          
## [30666] "2011-09-19" "2011-09-19" "2011-09-19" NA           NA          
## [30671] "2011-09-19" NA           "2013-01-23" "2012-02-24" "2013-01-23"
## [30676] "2012-02-24" "2013-01-23" "2012-02-24" "2013-01-23" "2012-02-24"
## [30681] "2012-04-28" "2011-08-28" "2011-08-28" "2012-04-28" "2012-04-28"
## [30686] "2011-08-28" "2012-04-28" "2012-12-19" NA           "2011-12-18"
## [30691] "2012-12-19" "2011-11-16" "2012-12-19" NA           "2011-12-18"
## [30696] "2012-12-19" "2011-11-16" "2012-12-19" "2011-11-16" "2011-11-16"
## [30701] "2012-12-19" NA           "2011-12-18" "2011-12-18" "2011-11-16"
## [30706] "2011-09-20" "2013-07-26" "2011-09-20" "2011-09-20" "2011-09-20"
## [30711] "2013-07-26" "2011-09-20" "2013-07-26" "2014-01-30" "2013-04-29"
## [30716] "2014-01-30" "2014-02-15" "2014-02-15" "2013-04-29" "2014-01-30"
## [30721] "2014-01-30" "2012-06-17" "2011-12-15" "2013-12-22" "2012-06-17"
## [30726] "2012-06-17" "2012-06-17" "2013-12-22" "2011-12-15" "2011-12-15"
## [30731] "2011-12-15" "2013-12-22" "2012-05-23" "2012-06-17" "2012-05-23"
## [30736] "2013-01-14" "2013-01-14" NA           "2013-01-14" "2013-01-14"
## [30741] "2013-01-14" NA           NA           "2014-01-27" NA          
## [30746] "2014-01-27" NA           NA           NA           NA          
## [30751] NA           NA           NA           NA           NA          
## [30756] NA           NA           NA           "2013-04-16" NA          
## [30761] NA           NA           NA           "2013-04-16" NA          
## [30766] NA           "2011-06-30" NA           "2011-06-30" NA          
## [30771] NA           "2013-01-18" "2013-01-18" NA           "2012-09-27"
## [30776] "2011-06-30" "2012-09-27" "2012-09-27" NA           NA          
## [30781] NA           "2011-04-26" "2011-04-26" "2012-07-13" "2013-05-28"
## [30786] "2013-05-28" "2013-05-28" "2011-04-28" "2013-05-28" "2013-05-28"
## [30791] "2013-05-28" "2012-07-13" "2012-02-24" "2012-07-13" "2012-02-24"
## [30796] "2011-04-28" NA           "2012-11-18" NA           NA          
## [30801] NA           NA           NA           NA           "2012-11-18"
## [30806] NA           "2012-11-18" "2012-11-18" NA           NA          
## [30811] "2011-07-31" "2013-08-21" "2011-07-31" NA           "2011-07-31"
## [30816] "2013-02-21" "2013-02-21" NA           "2013-08-21" "2013-02-21"
## [30821] "2013-08-31" "2013-08-31" "2013-02-21" "2013-02-21" "2013-02-21"
## [30826] "2012-05-30" NA           "2012-05-30" NA           "2012-05-30"
## [30831] NA           NA           NA           NA           "2012-05-30"
## [30836] "2012-06-14" "2012-05-30" NA           "2012-06-14" "2012-06-14"
## [30841] NA           "2012-06-14" NA           "2012-06-14" NA          
## [30846] NA           NA           NA           NA           NA          
## [30851] NA           NA           "2013-02-21" "2013-02-21" "2013-02-21"
## [30856] "2013-02-21" "2013-02-21" NA           NA           "2011-10-22"
## [30861] "2013-06-28" "2013-06-28" "2011-10-22" "2011-10-22" "2013-06-30"
## [30866] "2013-06-30" "2013-06-30" "2014-01-28" "2014-01-28" "2012-03-26"
## [30871] "2013-06-28" "2012-03-26" "2014-01-28" "2014-01-28" "2013-01-22"
## [30876] "2011-06-18" "2011-06-18" "2011-06-18" "2013-01-22" "2013-01-22"
## [30881] "2011-11-13" "2011-11-13" "2013-09-25" "2011-05-22" "2013-09-25"
## [30886] "2011-05-22" "2013-12-21" "2012-08-20" "2012-08-20" "2011-05-22"
## [30891] "2012-08-20" "2013-12-21" "2013-09-25" "2013-09-25" "2013-12-21"
## [30896] NA           NA           NA           NA           NA          
## [30901] NA           NA           NA           "2012-12-30" "2012-12-30"
## [30906] NA           "2012-12-30" "2013-08-30" "2012-10-14" "2013-08-30"
## [30911] "2012-10-14" "2013-03-15" "2013-03-15" "2013-03-15" "2011-07-28"
## [30916] "2011-07-28" "2013-03-15" "2011-07-28" "2013-03-15" "2013-03-15"
## [30921] "2012-03-25" NA           "2012-03-25" "2012-03-25" "2012-04-30"
## [30926] "2011-01-31" "2011-01-31" NA           NA           "2012-04-30"
## [30931] "2011-09-26" "2012-04-30" "2011-01-31" "2012-03-25" "2011-09-26"
## [30936] NA           "2012-03-25" NA           "2011-01-31" "2011-01-31"
## [30941] "2011-01-31" "2012-07-14" "2013-04-23" "2013-04-23" "2013-04-23"
## [30946] "2012-07-14" "2012-07-14" "2012-01-19" "2012-01-19" "2012-03-30"
## [30951] "2012-03-30" "2012-03-30" "2012-03-30" "2012-03-30" "2012-03-30"
## [30956] NA           NA           "2011-11-17" "2013-07-22" NA          
## [30961] NA           "2013-07-22" NA           "2013-11-28" NA          
## [30966] "2013-11-28" NA           "2013-11-28" NA           NA          
## [30971] "2011-11-17" "2012-11-30" "2012-11-30" "2012-10-27" "2012-10-27"
## [30976] NA           NA           "2012-10-27" NA           NA          
## [30981] NA           NA           NA           NA           NA          
## [30986] NA           NA           NA           NA           NA          
## [30991] NA           NA           NA           NA           NA          
## [30996] NA           NA           "2011-10-26" NA           NA          
## [31001] "2011-10-26" NA           "2011-10-26" NA           NA          
## [31006] "2011-10-26" "2011-10-26" NA           NA           NA          
## [31011] NA           NA           NA           "2011-09-19" "2011-09-19"
## [31016] NA           NA           NA           NA           NA          
## [31021] NA           NA           "2011-09-19" NA           NA          
## [31026] NA           "2012-12-22" "2012-12-22" "2012-12-22" NA          
## [31031] NA           NA           "2011-05-28" "2013-05-27" "2011-05-28"
## [31036] "2013-05-27" "2011-05-17" "2011-05-17" "2011-05-17" "2011-05-28"
## [31041] "2011-05-17" "2011-05-17" "2011-03-22" "2012-12-21" "2012-12-21"
## [31046] "2012-12-21" "2011-03-22" "2011-10-27" "2011-10-27" "2011-10-27"
## [31051] NA           NA           NA           NA           NA          
## [31056] NA           NA           NA           NA           NA          
## [31061] NA           NA           NA           NA           "2011-08-21"
## [31066] "2013-05-25" "2013-05-25" "2013-05-25" "2013-05-25" "2012-07-25"
## [31071] "2011-08-21" "2011-08-21" "2013-05-25" "2013-05-25" "2011-08-21"
## [31076] "2012-07-25" "2011-08-21" NA           "2011-09-17" "2011-09-17"
## [31081] "2011-08-16" NA           NA           "2011-08-16" NA          
## [31086] NA           "2011-09-17" NA           NA           NA          
## [31091] NA           NA           "2011-09-17" NA           "2011-09-28"
## [31096] NA           "2011-09-28" NA           "2011-09-17" NA          
## [31101] "2011-10-19" "2011-10-19" "2011-04-14" "2011-04-14" "2013-09-22"
## [31106] "2013-09-22" "2013-08-24" NA           "2013-08-24" "2013-03-15"
## [31111] "2013-08-24" "2013-03-15" NA           "2013-03-15" "2013-03-15"
## [31116] "2013-03-15" "2011-06-16" "2011-06-16" "2012-05-18" "2012-07-20"
## [31121] "2012-07-20" "2012-07-20" "2012-07-20" "2012-05-18" "2012-05-18"
## [31126] "2012-07-20" "2012-07-20" "2012-05-18" "2012-05-18" "2013-08-15"
## [31131] "2013-08-15" "2013-10-16" NA           "2013-10-16" "2012-06-30"
## [31136] "2012-06-21" "2013-10-17" NA           "2013-10-17" "2012-06-21"
## [31141] "2012-06-21" NA           "2012-06-21" NA           "2012-06-21"
## [31146] "2012-06-21" "2012-06-30" NA           NA           NA          
## [31151] NA           NA           NA           NA           "2013-01-24"
## [31156] "2013-01-24" NA           "2013-01-24" NA           NA          
## [31161] "2013-01-24" NA           NA           NA           NA          
## [31166] NA           NA           NA           NA           NA          
## [31171] NA           "2013-11-30" "2012-04-27" "2013-11-30" "2012-04-27"
## [31176] "2013-11-30" "2013-11-30" NA           "2013-11-30" "2011-02-17"
## [31181] "2011-02-17" "2011-02-17" "2011-02-17" "2011-02-17" "2011-08-22"
## [31186] "2011-08-22" "2011-08-22" NA           "2012-09-26" "2011-06-28"
## [31191] "2012-09-26" NA           NA           "2012-09-26" "2011-06-28"
## [31196] "2011-06-28" "2011-07-22" NA           "2012-09-26" NA          
## [31201] "2011-06-28" "2011-07-22" "2011-07-22" "2011-07-22" "2011-06-28"
## [31206] "2011-03-23" "2013-11-16" "2013-11-16" "2013-11-16" "2011-03-23"
## [31211] "2011-12-15" "2011-03-23" "2011-03-23" "2011-12-15" "2011-03-23"
## [31216] "2011-12-15" "2011-12-15" "2011-12-15" "2011-02-18" "2011-02-18"
## [31221] "2011-02-18" "2011-02-18" NA           "2011-02-18" NA          
## [31226] "2011-12-19" NA           NA           "2011-09-21" "2011-12-19"
## [31231] "2011-09-21" NA           "2011-12-19" "2011-09-21" "2012-07-29"
## [31236] "2013-02-21" "2011-07-24" "2013-02-21" "2011-07-24" "2013-02-21"
## [31241] "2012-07-29" "2011-07-16" "2013-02-21" "2012-07-29" "2011-07-16"
## [31246] "2012-07-29" "2012-07-29" "2013-01-22" "2011-04-14" NA          
## [31251] NA           "2013-01-22" "2011-04-14" "2011-04-14" "2012-05-20"
## [31256] "2012-05-20" "2013-03-23" "2013-03-23" NA           "2013-03-23"
## [31261] "2013-11-14" "2013-03-23" NA           "2013-03-23" NA          
## [31266] "2013-03-23" "2013-11-14" NA           NA           "2013-04-28"
## [31271] "2013-04-28" "2013-11-14" "2013-11-14" "2013-11-14" NA          
## [31276] NA           "2013-03-26" "2013-03-26" NA           NA          
## [31281] "2013-02-17" "2013-02-17" "2013-02-17" "2011-07-13" NA          
## [31286] "2011-07-13" NA           "2011-07-13" "2011-07-13" NA          
## [31291] NA           NA           "2013-06-27" "2013-06-27" "2012-09-26"
## [31296] "2012-09-26" "2013-06-27" "2013-06-27" "2012-09-26" "2012-10-23"
## [31301] NA           "2012-10-23" NA           NA           NA          
## [31306] "2012-09-26" "2012-09-26" NA           "2013-06-27" "2012-10-23"
## [31311] NA           NA           "2011-02-20" NA           "2011-02-28"
## [31316] "2012-03-16" "2012-03-16" "2011-02-20" "2011-02-20" "2011-02-28"
## [31321] "2012-06-25" "2011-02-28" "2011-02-20" NA           "2011-02-28"
## [31326] "2012-06-25" NA           "2012-06-25" NA           "2012-02-16"
## [31331] "2012-02-16" "2013-08-20" "2013-08-20" "2012-02-16" "2013-08-20"
## [31336] "2012-02-16" "2012-02-16" NA           "2013-08-20" "2011-05-24"
## [31341] "2011-11-20" "2011-11-20" "2011-11-20" "2011-05-24" "2011-05-24"
## [31346] "2013-04-16" "2013-10-31" "2013-04-16" "2013-04-16" "2013-04-16"
## [31351] "2013-04-16" "2013-10-31" NA           NA           NA          
## [31356] NA           NA           NA           NA           NA          
## [31361] NA           NA           NA           "2012-12-25" NA          
## [31366] "2012-12-25" "2012-12-25" "2012-08-16" "2012-12-25" NA          
## [31371] "2012-12-25" NA           "2012-08-16" "2012-08-16" NA          
## [31376] "2012-08-16" NA           NA           "2012-08-16" "2012-08-16"
## [31381] "2014-01-26" "2014-01-26" "2014-01-26" NA           NA          
## [31386] NA           "2014-01-26" NA           NA           NA          
## [31391] "2014-01-26" "2014-01-26" NA           NA           NA          
## [31396] NA           NA           "2011-09-24" "2011-09-24" "2011-09-24"
## [31401] "2011-09-24" NA           "2012-10-28" NA           NA          
## [31406] NA           "2012-10-28" NA           "2012-10-28" NA          
## [31411] NA           NA           "2012-11-21" NA           "2012-11-21"
## [31416] NA           NA           NA           "2012-11-21" "2012-11-21"
## [31421] NA           NA           NA           NA           "2012-11-21"
## [31426] NA           NA           NA           NA           NA          
## [31431] NA           "2012-02-15" "2013-01-16" "2013-01-16" "2012-02-15"
## [31436] "2012-02-15" "2013-01-16" "2013-01-16" "2013-01-16" "2012-02-15"
## [31441] "2013-01-16" "2011-05-15" NA           "2013-07-19" "2013-07-19"
## [31446] "2013-07-19" NA           "2011-05-15" "2011-06-23" "2011-06-23"
## [31451] "2013-08-20" "2013-08-20" "2011-06-23" "2011-06-23" "2011-06-23"
## [31456] "2011-06-23" NA           NA           NA           NA          
## [31461] NA           NA           "2011-08-19" NA           "2011-08-19"
## [31466] "2011-08-19" NA           NA           NA           "2013-09-22"
## [31471] NA           "2013-09-22" "2011-08-19" NA           "2011-08-19"
## [31476] "2013-11-25" "2013-01-28" "2013-01-28" "2013-11-25" "2011-04-19"
## [31481] "2011-04-19" "2013-12-22" "2011-04-19" "2013-10-25" "2013-10-25"
## [31486] "2011-04-19" "2013-12-22" NA           NA           "2013-02-25"
## [31491] NA           NA           NA           NA           "2013-02-25"
## [31496] "2012-10-16" "2013-02-25" "2012-10-16" NA           NA          
## [31501] NA           NA           "2011-07-24" "2012-02-23" "2011-07-24"
## [31506] "2011-07-24" "2012-02-23" "2012-02-23" "2011-07-24" "2011-07-24"
## [31511] "2012-09-19" NA           NA           NA           "2012-09-19"
## [31516] NA           "2012-09-19" NA           "2012-09-19" NA          
## [31521] "2012-09-19" NA           NA           NA           NA          
## [31526] NA           NA           NA           NA           NA          
## [31531] "2012-02-29" "2012-02-29" "2012-02-29" "2012-02-29" "2012-02-29"
## [31536] "2011-11-14" NA           "2011-11-14" "2011-11-14" "2013-12-23"
## [31541] "2013-12-23" NA           NA           "2011-03-30" NA          
## [31546] "2011-03-30" "2011-03-30" "2011-03-30" "2013-12-23" "2012-01-17"
## [31551] NA           NA           "2012-01-17" "2013-12-23" "2011-03-30"
## [31556] "2013-12-23" "2012-01-17" "2012-01-17" "2012-01-17" "2011-03-30"
## [31561] "2011-04-29" "2011-05-30" "2011-04-29" "2012-11-22" NA          
## [31566] "2011-04-29" "2012-11-22" NA           "2011-04-29" "2012-11-22"
## [31571] "2011-05-30" "2011-04-29" NA           NA           NA          
## [31576] NA           "2011-06-15" "2011-06-15" "2011-06-15" NA          
## [31581] NA           "2011-07-30" NA           NA           "2011-04-18"
## [31586] NA           NA           "2011-07-30" "2011-04-18" "2011-07-30"
## [31591] NA           "2011-07-30" "2011-07-30" "2011-10-21" "2011-10-21"
## [31596] NA           "2011-08-18" "2011-10-21" "2011-10-21" "2011-08-18"
## [31601] "2011-10-21" NA           NA           "2011-08-18" "2013-06-18"
## [31606] "2011-10-16" "2013-06-18" "2013-06-18" "2011-10-16" "2011-06-27"
## [31611] "2011-06-17" "2011-06-27" "2011-06-27" "2011-06-17" "2013-06-30"
## [31616] "2013-06-23" "2011-06-17" "2011-06-27" "2011-06-17" "2013-06-23"
## [31621] "2011-06-17" "2013-06-30" "2013-06-30" "2013-06-30" "2011-06-17"
## [31626] "2011-06-27" "2013-06-30" "2013-06-23" "2013-06-23" "2013-06-23"
## [31631] NA           "2012-11-18" NA           "2011-11-15" NA          
## [31636] "2012-11-18" "2011-11-15" NA           "2011-11-15" NA          
## [31641] "2013-08-13" "2013-08-13" "2013-08-13" "2013-08-13" NA          
## [31646] NA           "2011-09-30" "2013-02-20" "2011-09-30" "2013-02-20"
## [31651] "2011-09-30" "2013-02-20" "2013-04-17" "2013-02-20" "2013-04-17"
## [31656] "2013-04-17" "2011-09-30" "2013-02-20" "2011-09-30" "2013-04-17"
## [31661] "2013-04-17" "2013-04-17" "2011-06-21" "2011-06-21" "2011-03-13"
## [31666] "2011-03-13" NA           "2013-05-18" "2012-10-20" "2013-05-18"
## [31671] "2013-05-18" "2012-10-20" "2013-05-18" NA           NA          
## [31676] "2013-05-18" NA           "2012-10-20" NA           NA          
## [31681] NA           NA           NA           NA           NA          
## [31686] NA           NA           NA           NA           NA          
## [31691] "2013-12-22" "2013-12-22" NA           NA           NA          
## [31696] NA           "2012-08-29" "2012-08-29" "2013-01-31" "2013-01-31"
## [31701] "2013-01-31" "2012-08-29" "2012-09-28" "2012-09-28" NA          
## [31706] "2011-09-25" "2011-09-25" "2012-09-28" "2012-09-28" "2011-09-22"
## [31711] "2013-09-13" NA           "2011-09-25" NA           NA          
## [31716] "2013-09-13" "2012-09-28" "2011-09-22" "2013-09-13" "2011-01-31"
## [31721] "2011-01-31" "2011-01-31" NA           NA           NA          
## [31726] NA           NA           NA           NA           "2013-01-28"
## [31731] NA           "2011-09-14" "2013-01-28" "2013-01-28" "2013-01-28"
## [31736] "2011-09-14" "2013-01-28" "2013-01-28" NA           "2013-08-28"
## [31741] "2013-08-28" NA           NA           "2013-08-28" "2011-12-16"
## [31746] "2011-12-16" "2013-09-16" "2013-12-30" "2013-12-30" "2013-09-23"
## [31751] NA           "2013-12-30" NA           "2013-09-16" NA          
## [31756] NA           "2013-09-23" NA           "2013-09-16" "2012-10-31"
## [31761] "2012-10-31" "2013-01-19" "2013-01-19" "2011-09-16" "2011-09-16"
## [31766] "2012-01-21" "2012-01-21" "2011-09-16" "2011-11-24" "2011-09-16"
## [31771] "2011-08-13" "2012-01-21" "2011-08-13" "2011-03-25" "2011-03-15"
## [31776] "2011-09-13" "2011-03-25" "2011-11-24" "2011-09-13" "2011-08-13"
## [31781] "2012-01-21" "2011-11-24" "2011-09-13" "2012-01-21" "2011-03-15"
## [31786] "2011-09-13" "2012-12-13" NA           "2013-12-22" NA          
## [31791] "2012-12-13" "2012-12-13" NA           NA           NA          
## [31796] "2013-12-22" NA           NA           NA           NA          
## [31801] "2013-12-22" NA           NA           NA           "2013-11-15"
## [31806] "2013-11-15" "2013-09-26" "2013-09-19" "2013-09-26" "2013-11-15"
## [31811] "2013-09-26" "2013-09-24" "2013-09-24" "2013-11-15" "2013-09-24"
## [31816] NA           NA           NA           "2013-09-19" NA          
## [31821] NA           "2013-09-19" NA           NA           "2013-11-15"
## [31826] "2011-06-17" "2011-06-17" "2011-06-17" NA           NA          
## [31831] NA           NA           NA           NA           NA          
## [31836] NA           NA           NA           NA           NA          
## [31841] NA           "2011-08-24" "2011-05-17" "2011-08-24" "2011-05-17"
## [31846] "2011-05-17" "2011-09-17" "2011-09-17" "2011-09-17" "2011-09-17"
## [31851] "2011-09-17" NA           "2012-08-27" "2012-08-27" NA          
## [31856] "2012-08-17" NA           "2012-08-17" NA           NA          
## [31861] "2011-04-20" "2011-04-20" "2013-10-15" "2013-08-27" "2013-08-27"
## [31866] "2013-10-15" "2013-10-15" "2013-08-27" "2013-10-15" "2013-10-15"
## [31871] NA           NA           NA           "2011-02-24" "2011-02-24"
## [31876] "2011-02-24" "2011-06-18" "2011-06-18" "2011-02-24" "2011-02-24"
## [31881] "2011-06-18" "2013-03-28" "2013-03-29" "2013-03-28" "2013-03-29"
## [31886] "2013-03-29" "2013-03-28" NA           NA           "2013-01-17"
## [31891] NA           NA           NA           "2013-01-17" NA          
## [31896] "2013-01-17" "2013-01-17" NA           "2013-01-17" NA          
## [31901] "2012-05-17" "2012-05-17" NA           "2012-05-17" "2011-07-16"
## [31906] NA           NA           "2012-05-17" "2011-07-16" NA          
## [31911] "2011-07-15" "2012-05-17" "2011-07-15" "2011-07-15" "2011-07-16"
## [31916] "2011-04-13" "2011-04-22" "2011-04-22" NA           NA          
## [31921] NA           "2011-04-13" "2011-04-22" "2011-04-22" "2011-04-13"
## [31926] "2011-04-13" NA           NA           "2013-11-28" NA          
## [31931] NA           NA           "2011-04-13" NA           "2013-04-30"
## [31936] NA           "2013-04-30" "2013-11-28" "2013-11-28" NA          
## [31941] NA           "2011-04-22" "2013-11-28" "2013-04-30" "2011-09-22"
## [31946] "2012-04-21" "2011-07-30" "2012-04-21" "2011-09-22" "2013-12-30"
## [31951] "2012-08-16" "2012-08-16" "2013-12-30" "2011-07-30" "2011-09-22"
## [31956] "2011-09-22" "2011-09-22" "2011-09-22" NA           "2011-06-18"
## [31961] "2011-06-18" NA           "2011-06-18" NA           NA          
## [31966] "2013-03-20" "2013-03-18" "2013-03-20" "2013-03-20" "2013-03-18"
## [31971] "2012-12-30" NA           "2011-05-27" "2012-12-30" "2011-05-27"
## [31976] "2011-05-27" NA           NA           NA           NA          
## [31981] NA           "2011-05-27" NA           NA           "2011-05-27"
## [31986] "2012-12-30" NA           NA           "2012-12-30" "2012-12-30"
## [31991] NA           "2011-08-16" "2013-09-23" "2011-08-16" "2013-09-23"
## [31996] "2011-08-16" "2011-08-16" NA           "2013-09-22" "2013-09-22"
## [32001] "2012-06-25" "2011-08-16" "2012-06-25" NA           "2012-11-30"
## [32006] "2012-11-30" "2013-07-24" "2013-07-24" "2013-07-31" "2013-07-31"
## [32011] "2013-07-31" "2013-07-29" "2013-07-29" "2013-07-31" "2013-07-29"
## [32016] "2013-07-31" "2013-07-24" "2013-07-29" "2013-07-24" "2013-07-24"
## [32021] "2013-07-29" NA           NA           "2012-04-29" NA          
## [32026] NA           "2012-04-29" "2012-04-29" "2013-12-19" "2013-12-19"
## [32031] NA           NA           "2012-04-29" NA           NA          
## [32036] NA           NA           NA           NA           NA          
## [32041] NA           "2012-07-29" "2012-03-18" "2012-03-18" "2012-07-29"
## [32046] NA           "2013-07-16" NA           "2013-07-16" "2013-07-16"
## [32051] "2013-07-16" NA           NA           "2013-01-31" "2013-01-31"
## [32056] NA           "2013-01-31" NA           "2013-01-31" "2013-01-31"
## [32061] "2013-01-31" "2012-09-17" "2012-09-17" "2012-09-17" "2012-09-17"
## [32066] "2011-11-21" "2011-11-21" "2012-09-17" "2013-07-20" "2012-11-20"
## [32071] "2012-11-20" NA           "2012-01-17" "2012-01-17" "2012-01-17"
## [32076] "2012-11-20" "2012-01-17" "2012-01-17" "2012-01-17" "2013-07-20"
## [32081] NA           NA           NA           NA           NA          
## [32086] "2013-11-13" NA           NA           "2013-11-13" "2011-10-27"
## [32091] NA           "2012-09-30" "2012-09-30" "2011-10-27" "2012-09-30"
## [32096] "2012-09-30" "2011-10-27" NA           NA           "2012-09-30"
## [32101] NA           "2011-10-27" "2011-10-27" NA           "2012-02-21"
## [32106] NA           NA           NA           NA           NA          
## [32111] "2012-02-21" NA           NA           NA           NA          
## [32116] "2012-10-16" "2012-11-24" "2012-10-16" "2012-11-24" "2012-11-24"
## [32121] "2012-11-24" NA           NA           NA           "2012-10-23"
## [32126] "2012-10-23" "2012-07-13" "2012-07-13" "2012-07-13" NA          
## [32131] "2012-07-13" "2014-01-20" "2014-01-20" "2014-01-20" "2013-07-18"
## [32136] "2013-07-18" "2013-07-18" "2011-07-18" "2011-02-26" "2011-02-26"
## [32141] "2011-02-26" "2012-08-26" "2011-09-20" "2012-08-26" "2011-09-20"
## [32146] "2011-09-20" "2011-09-20" "2011-09-20" "2011-02-26" "2011-02-26"
## [32151] "2013-01-27" "2013-01-27" "2011-07-18" "2011-04-19" "2011-07-18"
## [32156] "2011-04-19" "2013-01-27" "2011-04-19" "2013-11-30" "2013-12-30"
## [32161] "2013-11-30" "2013-12-30" "2013-07-13" "2013-07-13" "2011-12-28"
## [32166] "2013-07-13" "2011-12-30" "2013-07-13" "2011-10-27" "2011-10-27"
## [32171] "2013-07-13" "2011-12-30" "2011-12-28" "2013-06-26" "2013-06-26"
## [32176] "2012-01-14" "2013-06-26" "2012-01-14" "2013-06-26" "2013-06-26"
## [32181] "2012-01-14" "2011-04-30" "2011-04-30" NA           "2013-02-26"
## [32186] NA           "2013-02-28" NA           "2013-02-28" "2013-02-28"
## [32191] NA           "2013-03-28" NA           NA           "2013-03-28"
## [32196] "2012-05-19" "2013-02-26" "2013-02-26" "2012-05-19" "2013-02-26"
## [32201] "2012-05-19" "2012-05-19" "2013-02-28" "2013-02-28" "2013-02-26"
## [32206] "2011-04-28" "2011-04-28" "2011-04-28" "2011-04-28" "2011-04-28"
## [32211] "2013-11-30" "2011-01-28" "2013-11-30" "2013-11-30" "2013-11-30"
## [32216] "2011-01-28" "2013-11-30" "2013-11-30" "2012-01-23" "2012-06-26"
## [32221] "2012-06-26" "2012-01-23" "2012-01-23" "2013-06-13" "2011-05-28"
## [32226] "2011-05-28" "2013-11-23" "2013-01-31" "2012-07-20" "2012-07-20"
## [32231] "2013-01-31" "2012-07-20" "2013-11-23" "2012-07-20" "2012-07-20"
## [32236] "2013-11-23" "2013-06-13" "2012-07-20" "2013-01-31" NA          
## [32241] NA           NA           "2012-06-27" "2012-06-27" "2012-06-27"
## [32246] NA           NA           NA           "2012-06-27" "2012-06-27"
## [32251] NA           NA           NA           NA           "2011-11-13"
## [32256] "2011-11-13" "2011-11-13" "2011-11-13" "2011-11-13" NA          
## [32261] "2011-06-17" "2012-09-23" "2012-09-23" NA           "2012-09-23"
## [32266] "2012-09-23" "2012-09-23" NA           "2011-05-15" NA          
## [32271] "2011-05-15" "2011-05-15" "2011-06-17" "2012-09-23" "2011-07-20"
## [32276] "2011-10-23" "2011-07-20" "2011-10-13" NA           "2011-10-13"
## [32281] "2011-07-20" NA           "2013-02-15" "2011-10-13" "2011-10-23"
## [32286] "2011-07-20" "2011-10-23" "2013-02-15" "2013-11-26" "2013-11-26"
## [32291] "2013-11-26" "2013-11-26" "2013-11-26" "2013-11-26" NA          
## [32296] NA           NA           NA           "2011-02-28" "2011-03-15"
## [32301] NA           "2011-02-28" NA           "2011-02-28" NA          
## [32306] "2011-02-28" NA           "2011-02-28" NA           NA          
## [32311] "2011-03-15" "2012-02-14" "2012-02-14" "2012-02-14" "2011-04-22"
## [32316] "2013-03-13" "2013-03-13" "2011-04-22" "2013-03-13" NA          
## [32321] NA           "2013-03-13" "2013-03-13" NA           "2011-03-29"
## [32326] "2013-06-14" "2011-03-29" "2011-03-29" "2013-06-14" "2013-06-14"
## [32331] NA           "2012-05-18" "2012-03-28" "2012-05-18" NA          
## [32336] "2012-05-18" NA           NA           NA           "2012-03-28"
## [32341] "2012-05-18" "2012-05-18" NA           NA           NA          
## [32346] NA           "2012-02-17" "2013-10-27" "2013-10-27" "2012-02-17"
## [32351] "2013-03-21" "2013-03-21" "2012-02-17" NA           NA          
## [32356] NA           NA           NA           NA           NA          
## [32361] "2012-06-19" "2012-12-20" NA           "2012-12-20" "2012-06-19"
## [32366] "2012-12-20" "2012-12-20" NA           "2012-06-19" NA          
## [32371] NA           "2012-12-20" "2012-12-20" "2011-07-13" "2013-04-22"
## [32376] "2011-07-13" "2013-04-22" "2013-04-22" "2013-04-22" "2011-07-13"
## [32381] "2012-10-28" NA           "2012-10-28" NA           "2012-10-28"
## [32386] NA           NA           NA           NA           NA          
## [32391] "2013-07-15" NA           NA           "2013-07-15" "2012-02-23"
## [32396] "2012-02-23" "2012-02-23" NA           NA           "2013-01-22"
## [32401] "2013-01-30" "2013-01-30" "2013-01-22" NA           "2012-11-20"
## [32406] "2013-01-22" NA           "2013-01-30" "2013-01-30" "2012-11-20"
## [32411] "2012-11-20" "2013-01-30" "2012-11-17" "2013-12-19" "2013-12-19"
## [32416] "2013-12-19" "2012-11-17" "2013-12-19" "2013-12-19" "2011-03-18"
## [32421] "2011-05-20" "2011-03-18" "2011-05-21" "2011-03-18" "2011-05-20"
## [32426] "2012-02-23" "2011-05-21" "2011-05-20" "2012-02-23" "2011-03-18"
## [32431] "2011-05-21" NA           NA           NA           NA          
## [32436] "2012-03-29" NA           NA           "2012-03-29" NA          
## [32441] "2011-06-14" NA           NA           NA           NA          
## [32446] "2011-06-14" "2013-09-27" "2013-09-27" NA           "2013-09-27"
## [32451] "2012-04-18" "2011-11-30" NA           "2012-04-18" "2011-11-30"
## [32456] "2011-11-30" NA           "2011-11-30" "2011-11-30" "2012-04-18"
## [32461] "2011-11-30" "2012-09-14" "2012-09-14" "2012-09-14" "2012-09-14"
## [32466] "2012-09-14" "2012-09-14" NA           NA           "2013-06-15"
## [32471] "2013-06-15" "2013-06-15" NA           NA           "2012-03-30"
## [32476] "2013-12-25" "2013-12-25" "2012-03-30" NA           NA          
## [32481] NA           "2012-03-30" "2011-11-26" "2011-11-26" "2011-11-26"
## [32486] "2011-11-26" "2011-11-26" "2011-11-26" "2011-10-27" "2013-08-25"
## [32491] "2013-08-25" "2011-10-27" "2011-11-22" "2011-10-27" "2011-10-27"
## [32496] NA           NA           "2011-11-22" "2011-11-22" NA          
## [32501] "2011-11-22" "2011-11-22" "2011-10-27" NA           NA          
## [32506] "2012-12-30" NA           NA           NA           NA          
## [32511] "2012-03-31" NA           "2012-12-30" "2012-12-30" "2012-12-30"
## [32516] NA           "2012-04-30" "2012-03-31" "2012-12-30" "2012-04-30"
## [32521] "2012-03-31" "2013-01-22" "2012-11-18" "2013-01-16" "2013-01-22"
## [32526] "2012-11-18" "2013-01-16" NA           "2013-01-16" "2011-07-27"
## [32531] "2012-11-18" NA           NA           "2011-07-27" "2013-01-22"
## [32536] "2011-06-20" "2011-06-20" "2011-06-20" NA           NA          
## [32541] NA           NA           "2012-12-21" "2012-12-21" "2011-07-27"
## [32546] "2011-07-27" "2011-07-27" "2011-07-27" "2011-07-27" NA          
## [32551] NA           NA           NA           NA           NA          
## [32556] "2011-09-16" "2011-09-16" "2011-09-16" "2011-11-27" "2011-11-27"
## [32561] "2011-11-27" "2011-11-27" "2011-11-27" "2012-12-23" "2012-12-23"
## [32566] NA           NA           NA           "2012-12-23" "2012-12-23"
## [32571] "2012-12-23" "2012-12-23" NA           "2013-09-19" NA          
## [32576] NA           NA           "2013-09-19" "2011-04-25" "2011-04-25"
## [32581] NA           "2011-04-25" "2011-04-25" "2011-04-25" "2013-09-19"
## [32586] NA           "2011-03-15" "2011-03-15" "2011-03-15" "2013-10-30"
## [32591] "2011-03-15" "2013-10-30" "2011-03-15" NA           "2011-03-15"
## [32596] NA           NA           "2013-10-30" NA           NA          
## [32601] "2013-10-30" "2013-10-30" "2011-08-19" "2011-08-19" NA          
## [32606] NA           "2013-09-25" NA           NA           "2013-09-24"
## [32611] "2013-09-25" NA           "2013-09-24" NA           "2012-09-29"
## [32616] NA           "2012-09-29" "2012-08-27" "2012-09-29" NA          
## [32621] "2013-06-24" NA           NA           NA           NA          
## [32626] "2012-09-29" "2013-06-24" "2012-08-29" NA           "2013-06-24"
## [32631] "2012-08-27" NA           "2012-08-29" "2012-08-29" NA          
## [32636] "2012-08-27" "2013-07-20" "2013-07-20" "2012-08-29" "2012-08-29"
## [32641] NA           "2012-10-21" "2011-09-17" "2011-09-17" "2012-10-21"
## [32646] "2011-09-17" "2012-10-21" "2011-08-28" "2011-08-28" NA          
## [32651] "2011-09-17" "2011-09-17" "2011-11-21" "2012-09-22" NA          
## [32656] NA           "2011-11-21" "2012-09-22" NA           NA          
## [32661] NA           NA           "2012-11-22" "2012-11-17" "2012-11-22"
## [32666] "2012-11-17" "2012-11-22" "2012-11-22" "2012-11-22" NA          
## [32671] "2012-11-22" "2011-10-15" NA           "2011-10-15" "2011-10-15"
## [32676] NA           "2012-11-17" NA           "2012-11-17" NA          
## [32681] NA           NA           NA           "2012-11-17" NA          
## [32686] NA           NA           NA           "2012-11-17" NA          
## [32691] "2011-03-21" "2011-03-21" "2011-03-29" "2011-03-29" NA          
## [32696] NA           NA           NA           NA           NA          
## [32701] "2013-02-14" "2013-02-14" "2013-06-13" NA           "2013-02-14"
## [32706] "2013-02-14" "2013-02-14" NA           "2013-06-13" "2012-11-17"
## [32711] "2012-11-17" "2012-11-17" "2012-11-17" NA           NA          
## [32716] "2011-04-24" "2011-04-24" "2013-10-19" NA           "2011-04-24"
## [32721] "2013-10-19" "2011-12-17" "2011-12-17" "2011-12-17" "2012-01-14"
## [32726] NA           "2012-01-14" "2012-01-14" NA           NA          
## [32731] "2012-01-14" NA           "2012-10-13" NA           "2012-10-13"
## [32736] "2012-10-13" "2012-10-13" NA           "2012-10-13" NA          
## [32741] "2012-10-13" NA           NA           NA           "2012-10-16"
## [32746] NA           NA           NA           "2012-10-16" NA          
## [32751] "2012-07-31" "2012-07-31" "2012-07-28" "2012-07-28" "2012-09-22"
## [32756] "2012-07-31" "2012-07-28" "2012-09-22" "2012-09-22" "2012-09-22"
## [32761] "2012-09-22" NA           NA           NA           NA          
## [32766] NA           NA           NA           NA           NA          
## [32771] NA           NA           NA           NA           "2012-03-24"
## [32776] "2012-03-24" "2012-03-24" "2012-03-24" "2012-03-24" "2012-03-24"
## [32781] "2013-01-28" "2011-10-17" "2013-01-28" "2011-10-25" "2011-10-25"
## [32786] "2011-10-17" "2013-01-28" "2011-10-17" "2011-10-17" "2013-01-28"
## [32791] "2011-10-25" "2013-01-28" "2011-10-25" NA           NA          
## [32796] NA           NA           NA           NA           NA          
## [32801] NA           NA           NA           NA           NA          
## [32806] NA           NA           NA           NA           NA          
## [32811] NA           NA           NA           "2011-08-17" "2011-08-17"
## [32816] NA           NA           "2011-08-17" NA           NA          
## [32821] "2013-12-28" NA           NA           "2013-12-28" NA          
## [32826] "2013-12-28" NA           "2013-12-28" NA           "2013-12-28"
## [32831] "2013-03-15" "2013-03-15" "2013-03-15" "2013-03-15" "2011-12-13"
## [32836] "2011-12-13" NA           "2012-12-27" "2012-12-23" "2012-12-27"
## [32841] "2012-12-23" NA           NA           NA           NA          
## [32846] NA           NA           "2013-09-17" "2013-09-17" NA          
## [32851] NA           "2013-09-17" NA           NA           "2011-10-13"
## [32856] "2011-10-13" "2011-10-13" "2013-09-28" "2011-10-13" "2011-10-13"
## [32861] "2013-09-28" "2012-10-14" NA           "2011-10-13" "2012-10-14"
## [32866] NA           "2013-09-28" "2012-10-14" "2012-10-14" "2012-10-14"
## [32871] NA           NA           "2013-09-15" "2012-11-14" "2013-07-14"
## [32876] NA           "2013-07-14" NA           NA           "2013-07-14"
## [32881] NA           "2013-09-15" "2012-11-14" "2013-07-14" "2013-07-14"
## [32886] "2013-07-14" NA           NA           NA           "2011-08-20"
## [32891] NA           NA           "2011-08-20" "2011-11-26" "2011-11-26"
## [32896] "2011-11-26" "2013-04-21" "2013-04-21" "2011-11-26" "2011-11-26"
## [32901] "2013-04-21" "2011-11-26" "2012-12-29" "2011-02-26" "2012-12-29"
## [32906] "2011-02-26" "2011-02-16" "2012-12-29" "2011-02-16" "2011-02-16"
## [32911] "2011-02-26" "2011-02-26" "2011-02-16" "2011-02-26" "2011-02-16"
## [32916] "2012-12-29" "2011-08-29" NA           NA           "2011-08-31"
## [32921] NA           "2011-08-29" "2011-08-31" NA           NA          
## [32926] NA           NA           NA           "2014-01-16" "2014-01-16"
## [32931] "2013-01-22" NA           NA           "2012-06-14" NA          
## [32936] "2012-06-14" NA           "2012-06-14" NA           "2013-01-22"
## [32941] "2013-01-22" "2013-01-22" "2013-01-22" "2012-03-29" "2012-05-26"
## [32946] "2012-03-29" NA           "2012-03-29" "2012-05-26" NA          
## [32951] "2012-03-29" "2012-03-29" "2012-03-29" NA           "2012-05-26"
## [32956] NA           NA           NA           "2013-05-19" NA          
## [32961] NA           "2013-05-19" "2012-02-20" "2013-05-19" "2012-02-20"
## [32966] "2011-03-25" "2013-05-19" NA           NA           NA          
## [32971] "2013-05-19" "2011-03-25" "2011-03-25" "2011-03-25" "2012-12-22"
## [32976] "2012-12-22" "2012-12-20" "2012-04-23" "2012-04-15" "2012-04-23"
## [32981] "2012-12-22" "2012-04-23" "2012-04-15" "2012-12-22" "2012-12-20"
## [32986] "2012-12-22" "2012-12-20" "2012-04-15" "2012-12-20" "2012-12-20"
## [32991] NA           NA           NA           NA           "2012-06-13"
## [32996] "2012-06-13" "2012-06-13" "2012-06-13" "2011-10-26" "2011-10-26"
## [33001] "2012-11-18" NA           "2012-05-18" NA           NA          
## [33006] "2012-05-18" "2012-05-18" NA           NA           "2012-05-18"
## [33011] "2012-11-18" "2012-05-18" "2012-11-18" "2013-06-15" "2014-01-22"
## [33016] NA           NA           "2014-01-22" "2013-06-15" NA          
## [33021] "2013-06-15" "2011-04-17" NA           "2011-04-17" "2011-04-17"
## [33026] NA           NA           NA           NA           "2011-07-24"
## [33031] NA           NA           "2011-07-24" NA           "2011-07-24"
## [33036] NA           "2011-08-28" NA           "2011-08-28" NA          
## [33041] NA           "2012-02-22" NA           NA           NA          
## [33046] "2012-02-22" NA           "2011-07-22" "2011-07-22" "2011-07-22"
## [33051] NA           NA           "2012-04-13" "2012-04-13" "2012-04-13"
## [33056] "2012-04-13" "2012-04-13" "2013-05-24" "2013-05-24" NA          
## [33061] NA           NA           NA           NA           NA          
## [33066] NA           NA           NA           NA           NA          
## [33071] NA           NA           "2011-10-28" "2011-10-28" "2011-10-28"
## [33076] "2011-10-28" "2011-10-28" "2012-10-31" "2012-10-22" "2012-10-22"
## [33081] "2012-10-22" "2012-10-22" "2012-10-31" "2012-04-27" "2012-10-22"
## [33086] "2012-10-31" "2012-04-27" "2011-10-24" "2011-10-24" "2011-10-24"
## [33091] "2011-10-24" "2011-10-24" "2011-08-19" NA           "2011-08-19"
## [33096] NA           "2011-08-19" "2014-01-16" "2014-01-16" "2014-01-16"
## [33101] "2014-01-16" "2014-01-16" "2011-07-25" "2012-03-15" "2011-09-29"
## [33106] "2011-09-29" "2012-03-15" "2011-09-29" "2012-03-15" "2011-07-25"
## [33111] "2012-03-15" "2011-04-30" "2012-03-15" "2011-04-30" "2011-07-25"
## [33116] "2012-03-15" "2011-07-25" NA           NA           NA          
## [33121] "2013-03-23" "2013-03-23" NA           NA           "2013-03-23"
## [33126] NA           NA           NA           "2013-03-23" "2013-03-23"
## [33131] NA           NA           NA           NA           NA          
## [33136] NA           NA           NA           NA           NA          
## [33141] NA           NA           NA           NA           NA          
## [33146] NA           NA           NA           NA           "2011-02-18"
## [33151] "2011-02-18" "2011-01-25" "2011-01-25" "2012-08-20" "2012-08-20"
## [33156] "2013-08-22" "2013-08-22" "2011-01-25" "2012-08-20" "2012-08-20"
## [33161] "2012-08-20" "2013-08-22" "2011-01-25" "2012-08-20" "2011-01-25"
## [33166] "2013-08-22" "2013-08-22" "2011-01-25" "2012-10-29" "2012-10-29"
## [33171] "2012-10-29" "2012-08-29" "2012-08-29" "2012-02-16" "2012-08-29"
## [33176] "2012-02-16" "2012-08-29" "2012-02-16" "2012-08-29" "2012-08-29"
## [33181] NA           "2013-11-18" "2011-12-16" NA           "2013-03-21"
## [33186] NA           "2013-12-15" "2011-12-16" NA           "2013-07-23"
## [33191] "2013-12-15" "2013-11-18" "2013-12-15" "2013-03-27" "2013-03-21"
## [33196] "2013-03-21" NA           NA           "2013-07-23" "2013-11-18"
## [33201] "2013-07-23" "2013-11-18" "2013-03-27" "2013-07-23" "2013-07-23"
## [33206] "2013-03-27" NA           NA           NA           NA          
## [33211] NA           "2014-01-13" "2014-01-13" "2014-01-13" "2014-01-13"
## [33216] "2014-01-13" NA           NA           "2013-12-21" "2012-02-27"
## [33221] NA           "2013-12-21" "2012-02-27" "2013-12-21" "2013-12-21"
## [33226] NA           "2013-10-24" NA           NA           NA          
## [33231] "2013-10-24" "2013-10-24" NA           NA           "2013-07-24"
## [33236] "2013-07-29" "2013-07-29" "2013-07-24" NA           "2013-07-24"
## [33241] NA           NA           "2013-07-29" NA           "2013-04-14"
## [33246] NA           "2013-04-14" "2013-04-14" NA           "2013-04-14"
## [33251] NA           "2013-04-14" "2012-02-20" "2012-02-20" NA          
## [33256] "2013-04-14" "2011-05-21" NA           NA           "2011-05-21"
## [33261] NA           NA           NA           "2011-08-30" "2011-08-30"
## [33266] "2011-08-30" NA           "2011-08-30" "2011-08-30" NA          
## [33271] "2011-12-22" "2011-12-22" "2011-12-22" "2012-03-19" "2012-03-19"
## [33276] "2012-03-19" "2011-01-25" NA           "2011-01-25" "2011-01-25"
## [33281] NA           "2013-01-18" "2011-01-25" NA           "2013-01-18"
## [33286] "2013-01-18" NA           NA           NA           NA          
## [33291] NA           "2012-09-18" NA           NA           NA          
## [33296] NA           NA           "2012-09-18" NA           NA          
## [33301] NA           "2011-05-26" "2011-05-26" "2011-05-20" "2011-05-26"
## [33306] "2011-05-20" "2011-05-20" "2011-05-20" "2011-05-26" "2011-05-26"
## [33311] "2011-05-26" "2011-05-20" "2011-05-20" NA           NA          
## [33316] NA           NA           NA           "2012-03-16" "2012-03-13"
## [33321] "2012-03-13" "2012-03-16" "2012-03-13" "2012-03-16" "2012-08-14"
## [33326] "2012-08-14" "2011-04-13" "2011-04-13" NA           "2011-04-13"
## [33331] NA           NA           NA           "2012-09-14" "2011-12-26"
## [33336] NA           "2011-12-14" "2012-09-14" "2012-09-14" NA          
## [33341] "2012-09-14" "2011-12-14" "2011-12-14" "2011-12-26" "2012-09-14"
## [33346] "2011-12-14" NA           NA           "2011-12-14" NA          
## [33351] "2014-01-21" "2012-05-23" "2012-05-23" "2014-01-21" NA          
## [33356] "2012-05-23" "2014-01-21" NA           "2011-02-25" "2011-05-18"
## [33361] "2011-05-18" NA           "2011-05-18" "2011-05-18" "2011-05-18"
## [33366] "2011-02-25" NA           NA           NA           "2011-01-31"
## [33371] NA           "2011-01-31" NA           "2011-01-31" "2011-01-31"
## [33376] NA           NA           "2013-05-22" "2013-02-14" NA          
## [33381] "2013-02-14" "2013-02-14" NA           "2013-05-22" NA          
## [33386] NA           "2013-05-22" "2013-05-22" "2013-05-22" NA          
## [33391] NA           "2011-06-28" "2012-09-20" "2012-09-20" "2012-09-20"
## [33396] "2012-09-20" "2011-06-28" "2012-09-20" "2011-06-28" "2012-09-20"
## [33401] "2011-06-25" "2011-06-25" "2011-06-25" NA           NA          
## [33406] NA           NA           "2012-03-26" NA           NA          
## [33411] "2012-03-26" NA           NA           "2012-08-30" "2012-05-14"
## [33416] "2012-05-14" "2012-05-14" "2012-08-30" "2012-05-14" "2012-05-14"
## [33421] "2012-08-30" NA           NA           NA           NA          
## [33426] "2012-04-16" NA           "2011-04-29" "2011-04-29" "2012-04-16"
## [33431] NA           NA           NA           NA           NA          
## [33436] NA           NA           NA           NA           NA          
## [33441] NA           NA           "2012-08-27" "2012-07-28" "2012-08-27"
## [33446] NA           "2012-08-27" "2012-07-28" NA           "2012-08-27"
## [33451] "2012-07-28" NA           "2012-08-27" "2012-07-28" NA          
## [33456] "2012-07-28" NA           NA           "2013-10-22" "2013-10-22"
## [33461] "2013-10-22" "2013-10-22" NA           NA           "2014-02-15"
## [33466] "2012-09-26" "2014-02-15" NA           "2014-02-15" "2012-09-26"
## [33471] "2012-09-26" NA           NA           "2012-09-20" "2012-09-23"
## [33476] "2012-09-20" "2012-09-23" NA           "2012-09-20" "2012-09-20"
## [33481] "2012-09-23" "2012-10-22" "2012-09-23" "2012-09-23" NA          
## [33486] "2012-10-22" "2012-09-20" NA           NA           NA          
## [33491] NA           "2011-12-29" "2011-12-29" "2011-12-29" "2011-12-28"
## [33496] "2011-12-28" "2011-12-28" "2011-12-28" NA           NA          
## [33501] "2011-12-28" NA           NA           NA           NA          
## [33506] NA           NA           "2013-01-26" NA           NA          
## [33511] "2013-01-26" "2013-01-26" NA           "2013-03-21" "2013-03-21"
## [33516] "2013-03-21" "2013-03-21" "2011-03-27" "2011-03-27" "2011-03-27"
## [33521] "2011-03-27" NA           "2013-07-27" "2013-07-27" "2011-03-27"
## [33526] NA           "2012-03-17" "2012-03-17" "2012-03-17" "2012-03-17"
## [33531] "2012-03-17" "2012-11-13" "2013-11-28" "2013-11-28" "2012-11-13"
## [33536] "2013-11-28" "2013-11-28" "2013-11-28" "2012-12-24" "2012-12-24"
## [33541] "2012-12-24" "2012-12-24" "2013-01-14" "2013-01-14" "2012-12-24"
## [33546] "2012-05-30" "2012-05-30" NA           NA           NA          
## [33551] "2012-01-23" "2012-01-23" "2014-01-20" "2014-01-20" NA          
## [33556] NA           "2011-08-16" "2012-01-23" "2014-01-20" "2014-01-20"
## [33561] "2011-08-16" "2014-01-20" "2011-10-30" "2012-04-16" "2012-04-16"
## [33566] "2011-10-30" "2011-10-30" NA           NA           "2012-04-16"
## [33571] NA           NA           "2012-04-16" NA           "2011-10-30"
## [33576] "2011-10-30" NA           NA           "2013-08-20" NA          
## [33581] NA           NA           NA           NA           "2013-08-20"
## [33586] "2013-05-13" "2013-05-13" "2013-05-13" "2013-05-13" "2013-05-13"
## [33591] "2012-10-20" "2012-10-20" "2012-10-20" "2012-05-23" "2012-01-22"
## [33596] "2013-08-19" "2012-05-23" "2012-05-23" NA           "2013-08-19"
## [33601] "2012-01-22" "2013-08-19" "2013-08-19" NA           "2013-08-19"
## [33606] "2011-09-15" "2011-09-15" NA           "2011-09-15" NA          
## [33611] NA           NA           NA           NA           "2013-12-28"
## [33616] "2012-05-19" "2012-05-28" "2012-05-19" "2013-12-28" "2013-12-28"
## [33621] "2012-05-28" "2012-05-18" "2012-05-19" "2012-05-28" "2012-05-18"
## [33626] "2013-12-28" "2012-05-28" "2012-05-28" "2012-05-28" "2012-05-18"
## [33631] "2011-02-28" NA           "2011-02-28" NA           "2012-08-16"
## [33636] "2012-08-16" "2012-08-31" "2012-08-16" "2012-08-31" "2013-03-18"
## [33641] "2013-03-18" NA           "2012-05-28" NA           NA          
## [33646] "2013-03-18" NA           NA           "2012-05-28" "2012-08-16"
## [33651] "2012-08-16" "2012-08-16" "2012-11-17" NA           "2012-10-28"
## [33656] NA           "2012-11-17" "2012-10-28" "2012-10-28" "2012-10-28"
## [33661] "2011-12-27" "2011-12-27" NA           "2011-11-20" NA          
## [33666] "2011-12-27" "2011-11-20" "2011-08-24" NA           NA          
## [33671] "2011-08-24" NA           "2011-08-24" NA           NA          
## [33676] NA           "2011-08-26" "2011-08-26" "2011-08-26" "2011-12-24"
## [33681] NA           "2012-12-30" NA           "2012-11-26" NA          
## [33686] NA           "2013-12-22" "2013-12-22" "2012-02-25" "2012-02-27"
## [33691] "2011-12-24" "2012-02-27" NA           "2012-11-26" "2012-12-30"
## [33696] "2012-02-25" "2012-11-26" "2012-02-25" "2012-02-27" NA          
## [33701] NA           "2012-04-17" "2012-04-17" NA           "2013-08-15"
## [33706] "2013-08-15" "2013-07-25" "2013-07-25" "2013-07-25" "2011-08-14"
## [33711] "2011-08-14" "2014-01-13" NA           "2014-01-13" "2011-06-21"
## [33716] "2011-05-21" NA           "2011-11-22" "2011-08-14" "2011-08-14"
## [33721] "2011-06-21" "2014-01-13" "2011-11-22" "2014-01-13" "2014-01-13"
## [33726] "2011-05-21" "2011-05-21" "2011-08-14" NA           "2011-05-23"
## [33731] "2011-05-24" NA           "2011-05-23" "2011-05-24" NA          
## [33736] "2011-05-24" NA           "2011-05-23" "2013-05-21" "2013-05-29"
## [33741] "2013-05-21" "2011-02-24" "2013-05-29" "2013-05-29" "2011-02-24"
## [33746] "2013-05-21" "2013-05-29" "2013-05-21" NA           "2013-12-29"
## [33751] "2011-10-28" "2013-12-29" "2012-07-20" "2011-10-28" NA          
## [33756] "2011-10-28" "2012-07-20" NA           NA           "2011-10-28"
## [33761] NA           "2011-10-30" "2011-10-30" "2011-08-14" "2011-08-14"
## [33766] "2011-08-14" "2011-08-14" "2011-10-30" "2011-08-14" "2011-10-30"
## [33771] "2011-10-30" NA           NA           NA           NA          
## [33776] NA           NA           NA           NA           NA          
## [33781] NA           NA           "2013-06-20" "2013-06-20" NA          
## [33786] NA           "2011-04-13" "2011-04-13" NA           "2011-04-13"
## [33791] "2013-08-16" "2013-08-16" "2012-01-24" "2012-01-25" "2012-01-24"
## [33796] "2012-01-25" "2012-01-24" "2012-01-25" NA           NA          
## [33801] NA           NA           NA           "2012-03-16" NA          
## [33806] "2013-11-22" NA           "2013-11-22" NA           NA          
## [33811] NA           NA           "2013-11-22" "2012-03-16" "2012-05-29"
## [33816] "2012-05-29" NA           NA           "2012-05-29" "2012-03-16"
## [33821] "2012-03-16" NA           "2012-03-16" "2011-03-30" "2013-05-29"
## [33826] "2011-03-30" NA           "2011-03-30" NA           "2013-05-29"
## [33831] "2011-10-19" NA           NA           NA           "2011-10-19"
## [33836] NA           "2011-11-13" NA           "2011-11-13" "2011-11-13"
## [33841] "2011-10-19" "2013-05-16" "2013-05-16" "2012-10-30" "2012-10-30"
## [33846] "2013-03-17" "2013-03-17" "2013-03-17" "2012-03-13" NA          
## [33851] NA           NA           "2012-03-13" NA           NA          
## [33856] NA           NA           NA           "2012-03-13" NA          
## [33861] NA           NA           NA           NA           NA          
## [33866] NA           "2013-03-31" "2011-12-14" "2011-12-14" "2013-05-17"
## [33871] "2013-05-17" "2013-05-17" "2013-05-17" "2013-05-17" "2013-03-31"
## [33876] NA           NA           NA           "2012-04-17" "2012-02-28"
## [33881] "2012-02-28" "2012-04-15" "2012-04-15" "2013-11-14" "2012-04-17"
## [33886] "2012-04-17" "2012-02-28" "2012-02-19" "2012-02-19" "2012-04-15"
## [33891] "2012-04-15" "2012-04-17" "2012-04-17" "2012-02-19" "2012-02-19"
## [33896] "2012-04-15" "2012-02-19" "2012-02-28" "2012-02-28" "2012-04-15"
## [33901] "2012-04-17" "2013-11-14" NA           "2013-11-16" "2013-01-27"
## [33906] NA           "2013-11-16" NA           NA           NA          
## [33911] NA           NA           NA           "2013-01-27" "2013-01-31"
## [33916] "2011-11-26" "2013-01-31" "2011-11-26" "2011-11-26" "2013-01-31"
## [33921] "2013-01-31" "2013-12-27" "2013-12-27" "2013-12-27" "2012-01-14"
## [33926] "2012-01-14" "2012-01-14" NA           NA           "2012-01-14"
## [33931] "2012-01-14" "2011-04-29" "2011-08-18" "2013-12-18" "2011-04-29"
## [33936] "2013-12-24" "2011-08-18" "2013-12-24" "2011-08-18" NA          
## [33941] NA           "2011-04-29" NA           "2013-12-24" "2013-12-18"
## [33946] "2011-04-29" NA           NA           "2013-12-18" "2011-04-29"
## [33951] NA           "2012-10-19" "2012-10-19" "2012-10-19" NA          
## [33956] NA           "2014-01-31" "2014-01-31" NA           NA          
## [33961] NA           NA           "2012-03-23" "2012-03-23" "2012-03-23"
## [33966] "2013-01-21" "2013-01-21" "2013-01-21" "2013-01-21" "2013-01-21"
## [33971] "2013-01-21" "2011-10-31" "2011-10-31" "2011-08-21" "2011-10-31"
## [33976] "2011-10-31" "2011-08-21" "2011-08-21" "2011-10-31" NA          
## [33981] NA           "2011-08-21" "2011-08-21" "2011-10-31" NA          
## [33986] "2013-03-20" "2013-03-20" "2013-03-20" NA           "2013-03-20"
## [33991] NA           "2013-03-20" "2013-03-20" NA           NA          
## [33996] NA           NA           NA           NA           "2012-04-14"
## [34001] "2012-04-14" "2011-10-16" "2011-10-16" NA           "2011-02-15"
## [34006] "2011-02-15" NA           NA           "2011-02-15" "2011-02-15"
## [34011] "2011-02-15" NA           "2014-02-13" NA           NA          
## [34016] "2014-02-13" NA           "2013-09-26" "2013-09-26" "2012-08-19"
## [34021] NA           "2012-08-19" NA           "2011-04-19" "2012-08-19"
## [34026] "2012-08-19" NA           "2011-04-19" "2011-04-19" NA          
## [34031] "2012-08-19" "2013-09-26" "2011-07-31" "2011-07-31" "2013-04-13"
## [34036] "2013-04-13" NA           "2012-01-25" NA           NA          
## [34041] NA           NA           "2012-01-25" "2012-01-25" NA          
## [34046] "2012-11-18" "2012-11-18" NA           "2012-11-18" NA          
## [34051] "2012-11-18" "2012-01-25" "2012-01-25" NA           "2012-11-18"
## [34056] NA           NA           NA           "2013-09-15" "2013-09-15"
## [34061] "2013-09-15" "2013-09-15" "2013-08-26" NA           NA          
## [34066] "2013-09-15" "2013-08-27" "2013-08-27" NA           NA          
## [34071] NA           "2013-08-26" "2011-11-27" "2011-11-27" "2011-11-27"
## [34076] "2011-11-27" NA           NA           NA           NA          
## [34081] NA           NA           "2011-11-20" "2011-09-19" NA          
## [34086] "2013-05-31" NA           NA           "2013-05-31" "2011-09-23"
## [34091] "2011-11-20" "2011-09-19" "2011-09-23" "2011-11-20" NA          
## [34096] "2012-12-25" NA           NA           NA           NA          
## [34101] "2012-12-25" NA           NA           NA           NA          
## [34106] NA           "2011-02-21" NA           NA           "2011-02-21"
## [34111] "2012-06-17" NA           "2012-06-17" NA           NA          
## [34116] NA           NA           NA           "2013-11-16" "2013-11-16"
## [34121] NA           "2013-11-16" "2011-10-22" NA           "2013-11-16"
## [34126] NA           "2013-11-16" "2011-10-22" NA           NA          
## [34131] "2012-09-22" "2012-09-15" NA           "2012-09-22" "2012-09-15"
## [34136] NA           "2011-10-23" "2011-10-23" "2013-08-15" "2013-07-20"
## [34141] "2013-10-21" NA           "2013-07-20" NA           "2013-07-20"
## [34146] "2013-08-15" NA           "2013-07-20" "2013-08-15" "2013-07-20"
## [34151] NA           NA           "2013-08-15" "2013-08-15" "2013-10-21"
## [34156] NA           "2012-03-29" "2012-03-29" "2012-03-29" "2012-10-21"
## [34161] NA           "2012-10-21" "2012-10-21" NA           NA          
## [34166] "2012-10-19" "2012-10-19" "2012-10-19" "2012-06-16" "2012-06-16"
## [34171] NA           "2012-06-16" NA           "2013-11-25" "2013-11-25"
## [34176] NA           "2013-11-25" NA           "2013-11-25" NA          
## [34181] "2013-11-25" NA           "2013-11-25" NA           NA          
## [34186] "2012-02-19" NA           "2012-02-19" "2013-05-31" "2013-05-31"
## [34191] NA           NA           "2012-02-19" "2013-05-31" NA          
## [34196] NA           "2013-05-31" NA           "2013-05-31" "2013-10-25"
## [34201] "2013-10-25" "2013-10-25" "2013-10-25" "2012-01-14" "2012-01-14"
## [34206] "2013-10-25" "2012-01-14" "2013-10-25" "2012-01-14" NA          
## [34211] NA           NA           "2013-06-26" "2013-06-16" "2013-06-26"
## [34216] NA           NA           "2013-06-26" "2013-06-16" "2013-06-16"
## [34221] "2012-12-13" "2012-12-23" "2012-10-24" NA           NA          
## [34226] "2012-12-23" NA           "2012-12-13" "2012-10-24" NA          
## [34231] NA           "2012-12-13" "2011-10-31" "2011-10-31" "2013-11-14"
## [34236] NA           "2011-10-31" "2013-11-14" "2013-11-14" "2011-10-31"
## [34241] NA           NA           NA           "2011-10-31" NA          
## [34246] "2013-11-14" "2013-11-14" NA           NA           "2013-12-15"
## [34251] NA           NA           "2013-12-15" "2013-03-14" "2013-03-14"
## [34256] NA           "2013-03-14" "2013-03-14" NA           NA          
## [34261] NA           "2013-07-24" "2013-04-19" NA           "2013-04-19"
## [34266] NA           "2013-07-24" NA           "2013-04-19" "2013-07-24"
## [34271] "2013-07-24" NA           NA           NA           NA          
## [34276] NA           "2013-07-24" NA           NA           NA          
## [34281] "2011-07-31" "2011-07-31" "2011-07-31" "2011-07-31" NA          
## [34286] NA           NA           NA           "2011-07-31" "2011-09-25"
## [34291] "2011-09-25" NA           NA           "2011-09-25" NA          
## [34296] NA           NA           "2013-02-23" "2013-02-23" NA          
## [34301] NA           NA           NA           NA           NA          
## [34306] NA           NA           NA           NA           NA          
## [34311] NA           "2011-09-25" "2011-09-25" "2011-09-25" "2013-03-16"
## [34316] "2013-03-16" "2013-05-20" "2012-07-18" NA           "2011-03-13"
## [34321] "2012-05-16" "2013-05-20" "2013-05-20" NA           "2012-07-18"
## [34326] "2011-03-13" "2013-05-20" "2012-05-16" "2013-05-20" "2011-09-24"
## [34331] NA           NA           "2013-12-29" NA           "2011-09-24"
## [34336] "2013-12-29" "2013-12-29" "2012-05-23" "2013-03-15" "2012-05-23"
## [34341] "2012-05-23" "2013-03-15" "2013-03-15" "2012-05-23" "2012-05-23"
## [34346] "2013-03-15" "2012-06-27" "2013-03-15" "2012-06-27" "2013-03-15"
## [34351] NA           NA           "2012-06-27" NA           NA          
## [34356] NA           NA           NA           NA           NA          
## [34361] NA           NA           NA           NA           NA          
## [34366] NA           NA           NA           NA           NA          
## [34371] NA           NA           "2013-07-30" "2013-07-30" NA          
## [34376] NA           "2012-04-17" "2013-07-30" "2012-04-17" NA          
## [34381] NA           NA           NA           "2011-11-24" "2011-06-29"
## [34386] "2011-06-29" "2011-06-29" NA           "2011-11-24" NA          
## [34391] "2011-06-29" NA           "2011-11-24" NA           "2011-04-26"
## [34396] NA           NA           NA           "2011-04-26" NA          
## [34401] "2011-04-26" "2011-03-31" "2011-03-24" "2011-03-31" "2011-03-24"
## [34406] NA           "2011-10-23" "2011-08-18" "2011-08-18" NA          
## [34411] "2011-08-18" "2011-10-23" "2011-10-23" NA           NA          
## [34416] NA           NA           NA           NA           NA          
## [34421] NA           "2012-09-16" NA           NA           "2012-09-16"
## [34426] "2012-09-16" NA           NA           NA           "2012-09-16"
## [34431] NA           NA           NA           "2012-09-16" NA          
## [34436] NA           NA           "2012-10-20" "2014-01-23" "2012-10-20"
## [34441] "2014-01-23" "2014-01-23" "2012-10-20" "2012-10-20" "2014-01-23"
## [34446] "2012-10-20" "2013-12-28" "2011-03-19" "2011-03-19" "2013-12-28"
## [34451] "2013-12-28" "2011-03-19" NA           NA           NA          
## [34456] NA           NA           "2012-06-13" "2012-06-13" "2011-05-14"
## [34461] NA           "2013-03-21" NA           NA           "2012-06-13"
## [34466] NA           "2012-06-13" "2012-06-13" "2013-03-21" "2012-06-13"
## [34471] "2011-05-14" "2013-03-21" "2011-05-14" "2011-05-14" "2012-04-26"
## [34476] NA           NA           NA           "2012-04-26" "2012-04-26"
## [34481] NA           "2013-10-24" "2012-04-18" "2012-04-18" "2012-04-26"
## [34486] "2013-10-24" "2013-10-22" NA           NA           "2012-04-26"
## [34491] "2012-04-18" "2013-10-22" "2013-10-22" "2013-10-24" "2012-04-18"
## [34496] "2012-04-18" NA           NA           "2012-04-22" NA          
## [34501] "2012-04-22" "2013-06-21" NA           "2012-04-25" "2012-04-25"
## [34506] "2013-03-31" "2013-06-21" "2013-03-31" NA           NA          
## [34511] "2012-04-25" "2013-03-31" NA           "2012-01-21" "2012-01-21"
## [34516] NA           NA           NA           NA           NA          
## [34521] NA           NA           "2013-04-28" "2013-04-28" NA          
## [34526] NA           "2011-08-17" "2011-08-17" NA           "2011-08-17"
## [34531] "2011-08-17" "2013-11-13" "2013-11-13" "2013-11-13" "2011-08-17"
## [34536] NA           "2013-11-13" "2013-11-13" NA           "2014-01-31"
## [34541] "2012-08-23" "2012-08-23" "2014-01-31" "2014-01-31" "2012-08-23"
## [34546] "2012-08-23" "2012-08-23" "2014-01-31" "2014-01-31" "2011-01-26"
## [34551] NA           "2011-01-26" "2011-01-26" "2011-01-26" "2011-01-26"
## [34556] NA           "2011-01-26" NA           NA           NA          
## [34561] NA           "2011-03-27" "2011-03-27" "2013-12-27" "2013-12-26"
## [34566] "2013-12-27" "2013-12-26" "2013-12-26" NA           "2011-08-14"
## [34571] NA           "2011-08-14" NA           NA           "2011-08-14"
## [34576] NA           "2013-12-27" "2011-08-14" NA           NA          
## [34581] NA           NA           NA           NA           "2011-02-18"
## [34586] "2011-02-18" "2011-12-17" "2011-12-17" "2011-12-17" "2011-12-17"
## [34591] "2011-12-17" "2012-06-15" NA           "2011-12-22" "2012-06-15"
## [34596] "2012-06-15" "2012-06-15" NA           "2011-12-22" NA          
## [34601] "2012-06-15" NA           "2011-02-19" NA           "2011-12-22"
## [34606] "2011-02-19" "2013-09-18" NA           "2013-09-18" NA          
## [34611] NA           "2013-09-18" NA           NA           "2012-05-20"
## [34616] "2012-05-20" "2012-04-27" "2012-04-27" NA           NA          
## [34621] "2012-05-20" "2012-04-27" "2012-05-20" "2012-05-20" "2012-05-20"
## [34626] NA           "2013-07-28" "2013-07-28" "2013-07-28" NA          
## [34631] NA           NA           NA           "2014-01-20" NA          
## [34636] NA           "2014-01-20" "2013-04-13" "2013-04-13" "2013-11-28"
## [34641] "2013-04-13" "2013-04-13" "2011-11-13" "2011-11-13" "2013-04-13"
## [34646] "2011-11-13" "2013-11-28" NA           NA           "2013-08-26"
## [34651] "2012-08-17" NA           NA           "2013-08-26" "2011-02-26"
## [34656] "2011-02-26" "2011-03-18" "2012-08-17" "2011-03-18" "2011-03-18"
## [34661] "2012-06-17" "2012-06-17" NA           NA           "2012-06-17"
## [34666] "2012-06-17" "2012-06-17" NA           NA           "2013-11-26"
## [34671] NA           NA           NA           "2013-11-26" "2013-11-26"
## [34676] NA           "2012-09-28" "2012-09-28" "2012-09-28" "2012-09-28"
## [34681] "2012-09-28" NA           NA           NA           "2012-09-28"
## [34686] "2011-11-19" "2011-11-19" "2011-04-15" "2012-04-17" NA          
## [34691] NA           "2012-07-28" "2012-07-28" NA           "2011-04-15"
## [34696] "2012-04-17" "2012-04-17" "2012-04-17" "2012-04-17" "2013-09-14"
## [34701] NA           NA           "2013-09-14" "2013-06-21" "2013-06-21"
## [34706] "2013-06-21" "2011-11-30" "2013-06-21" "2013-06-21" "2013-06-21"
## [34711] "2011-11-30" "2011-11-30" "2013-04-15" "2013-04-15" "2012-12-25"
## [34716] "2012-12-25" "2013-11-23" "2013-11-23" "2012-01-18" "2012-01-18"
## [34721] NA           NA           NA           "2012-06-23" "2012-06-15"
## [34726] "2013-01-25" "2012-06-15" "2012-06-15" "2012-06-15" "2012-06-23"
## [34731] "2012-06-23" "2012-06-23" "2013-01-25" "2013-01-25" NA          
## [34736] "2012-06-28" NA           "2012-06-28" "2012-06-28" NA          
## [34741] NA           NA           NA           NA           NA          
## [34746] NA           NA           NA           "2011-08-18" "2011-08-18"
## [34751] "2011-08-18" "2012-01-31" "2011-08-26" "2011-08-18" "2011-08-18"
## [34756] "2012-01-31" "2011-08-26" "2011-08-26" "2011-08-26" "2011-08-26"
## [34761] "2012-05-17" NA           NA           "2012-05-17" "2012-05-17"
## [34766] "2012-05-17" NA           NA           NA           "2012-05-17"
## [34771] NA           NA           NA           "2012-05-17" NA          
## [34776] NA           NA           NA           "2012-03-30" "2012-03-30"
## [34781] "2011-03-21" "2013-09-25" "2011-03-21" "2011-03-21" "2011-03-21"
## [34786] "2011-07-27" "2013-09-25" "2011-03-21" "2013-09-25" "2012-03-30"
## [34791] "2012-03-30" "2011-07-27" NA           NA           NA          
## [34796] NA           NA           NA           NA           NA          
## [34801] NA           NA           NA           "2013-06-13" "2011-02-16"
## [34806] NA           NA           "2013-06-13" NA           "2011-02-16"
## [34811] NA           NA           "2011-02-16" "2013-06-13" "2011-02-16"
## [34816] "2011-02-16" "2012-10-13" "2012-10-13" "2012-10-13" NA          
## [34821] "2012-10-13" NA           "2012-10-13" NA           "2013-02-18"
## [34826] "2013-02-18" "2013-02-18" "2013-02-18" "2013-02-18" NA          
## [34831] NA           "2012-01-23" NA           NA           NA          
## [34836] NA           NA           NA           NA           "2013-08-24"
## [34841] "2012-01-23" NA           NA           "2013-08-24" "2013-08-24"
## [34846] "2013-08-24" "2012-01-23" NA           NA           "2013-08-24"
## [34851] NA           "2014-01-14" "2014-01-14" "2011-07-19" "2014-01-14"
## [34856] "2011-07-19" NA           NA           NA           NA          
## [34861] NA           NA           NA           "2011-07-27" "2011-07-27"
## [34866] "2013-01-30" "2012-10-17" "2012-10-17" "2013-07-19" "2013-01-30"
## [34871] "2013-01-30" "2013-07-19" "2012-10-17" "2012-10-17" "2012-10-17"
## [34876] "2013-07-19" "2013-07-19" "2013-08-17" NA           "2013-08-17"
## [34881] "2013-08-17" NA           NA           NA           NA          
## [34886] "2012-01-19" "2012-01-19" "2012-01-19" "2012-01-19" "2012-01-19"
## [34891] NA           "2011-04-22" NA           NA           "2011-04-22"
## [34896] NA           "2011-12-21" NA           "2012-12-28" "2011-12-21"
## [34901] "2012-12-28" "2011-12-21" NA           NA           NA          
## [34906] NA           NA           "2012-01-21" NA           "2012-08-30"
## [34911] NA           NA           NA           NA           "2012-08-30"
## [34916] NA           NA           NA           NA           "2012-08-30"
## [34921] "2012-01-21" NA           NA           NA           NA          
## [34926] NA           NA           NA           NA           NA          
## [34931] NA           NA           NA           NA           "2013-11-20"
## [34936] "2013-11-20" NA           "2012-01-23" "2012-12-29" "2012-12-29"
## [34941] "2012-01-23" "2012-12-29" "2012-12-29" "2012-12-29" "2011-06-23"
## [34946] "2011-06-23" "2011-06-23" "2011-06-23" "2011-06-23" NA          
## [34951] NA           NA           NA           "2011-03-22" "2011-03-22"
## [34956] NA           "2012-04-27" NA           NA           NA          
## [34961] "2012-04-27" NA           NA           "2012-04-27" NA          
## [34966] NA           NA           NA           NA           "2012-04-27"
## [34971] NA           NA           "2012-04-27" "2012-12-21" "2012-12-21"
## [34976] "2012-12-21" "2012-12-21" NA           NA           NA          
## [34981] NA           NA           NA           NA           NA          
## [34986] NA           "2013-04-17" "2012-01-30" NA           "2013-04-17"
## [34991] "2012-01-30" "2014-02-18" "2011-11-22" "2014-02-18" "2011-11-22"
## [34996] "2013-10-29" "2013-10-29" "2013-10-29" NA           NA          
## [35001] NA           "2013-03-23" NA           "2013-03-23" "2013-03-23"
## [35006] NA           NA           NA           NA           "2011-11-29"
## [35011] "2013-01-21" "2013-01-21" "2011-11-29" "2013-10-30" "2013-10-30"
## [35016] "2013-01-21" "2013-10-30" "2013-09-21" "2013-09-21" "2013-09-21"
## [35021] "2012-06-13" "2013-09-21" "2013-09-21" "2012-06-13" "2012-06-13"
## [35026] "2012-11-20" "2013-07-25" "2012-11-20" "2013-08-31" "2013-07-25"
## [35031] "2013-08-31" "2013-07-25" "2011-03-15" "2011-03-15" NA          
## [35036] NA           NA           "2011-03-15" "2012-08-31" "2012-08-31"
## [35041] "2012-08-24" "2012-03-24" "2012-08-24" "2012-03-24" "2012-08-24"
## [35046] "2012-03-24" "2012-11-25" "2012-11-25" "2012-11-25" "2012-04-30"
## [35051] "2012-04-30" "2012-11-25" "2012-11-25" "2012-04-30" "2012-04-30"
## [35056] "2012-04-30" "2011-06-19" "2011-06-19" "2012-06-23" "2013-02-28"
## [35061] "2011-06-19" "2011-06-19" "2012-06-23" "2011-06-19" "2012-06-23"
## [35066] "2013-02-28" "2012-06-23" "2013-08-31" "2013-08-31" "2013-08-31"
## [35071] NA           NA           NA           NA           NA          
## [35076] NA           NA           "2011-12-28" "2013-10-15" "2013-10-15"
## [35081] "2011-12-28" "2013-10-15" "2013-10-15" "2013-10-15" NA          
## [35086] NA           "2012-03-24" NA           NA           NA          
## [35091] NA           "2012-03-24" "2012-03-24" NA           NA          
## [35096] NA           "2011-07-17" "2011-03-28" "2012-08-18" "2011-07-17"
## [35101] "2012-08-18" "2011-03-28" "2011-03-28" "2011-03-28" "2012-06-18"
## [35106] "2013-01-14" "2013-01-14" "2012-06-18" "2013-01-14" NA          
## [35111] NA           NA           "2013-01-14" NA           NA          
## [35116] "2012-11-14" "2012-11-14" NA           NA           NA          
## [35121] NA           NA           NA           NA           NA          
## [35126] NA           "2012-12-24" "2013-12-20" "2014-01-29" "2012-12-24"
## [35131] "2014-01-29" "2014-01-29" "2013-12-20" "2014-01-29" "2011-04-19"
## [35136] "2012-12-24" "2011-04-19" NA           NA           NA          
## [35141] NA           NA           "2012-01-13" "2012-01-13" "2012-08-27"
## [35146] "2012-01-13" "2012-08-27" "2012-01-13" "2011-08-15" "2012-08-27"
## [35151] "2011-08-15" NA           NA           NA           "2012-01-13"
## [35156] "2011-08-15" NA           NA           "2013-03-22" NA          
## [35161] "2012-01-16" "2011-11-14" "2012-01-16" "2013-03-22" NA          
## [35166] "2013-09-28" "2013-03-22" "2013-09-28" NA           "2013-03-22"
## [35171] "2011-11-22" "2011-10-31" "2011-11-14" "2011-11-22" "2013-03-22"
## [35176] "2012-01-21" "2011-10-31" "2011-10-31" "2011-10-31" "2011-10-31"
## [35181] "2012-01-21" "2012-04-22" "2012-04-22" "2014-01-18" "2012-01-31"
## [35186] "2014-01-18" "2012-01-31" "2014-01-18" "2012-04-22" "2014-01-18"
## [35191] "2013-12-30" "2013-04-17" "2012-01-31" "2013-04-17" "2013-04-17"
## [35196] "2012-04-22" "2014-01-18" "2013-04-17" "2013-04-17" "2013-12-30"
## [35201] "2012-01-31" "2013-12-30" "2012-10-31" NA           "2012-09-21"
## [35206] "2012-09-21" NA           "2012-09-21" NA           NA          
## [35211] "2012-10-31" NA           NA           "2012-10-31" "2012-10-31"
## [35216] NA           "2012-10-31" NA           NA           NA          
## [35221] "2011-05-18" "2011-05-18" NA           NA           "2011-05-18"
## [35226] NA           "2011-05-18" "2011-05-18" NA           NA          
## [35231] NA           NA           "2013-12-13" "2013-12-13" "2012-11-16"
## [35236] "2012-11-16" "2012-11-16" "2012-11-16" "2012-11-16" NA          
## [35241] NA           NA           NA           "2013-08-14" "2013-08-14"
## [35246] "2013-08-14" "2013-08-14" "2011-03-23" "2013-08-14" "2011-03-23"
## [35251] "2013-08-14" "2012-02-24" NA           NA           NA          
## [35256] NA           NA           NA           "2012-02-24" "2012-02-24"
## [35261] NA           NA           "2014-02-16" "2012-09-23" "2012-09-23"
## [35266] "2014-02-16" NA           "2014-02-24" "2012-09-23" NA          
## [35271] "2014-02-16" NA           "2014-02-23" "2014-02-23" "2012-09-23"
## [35276] NA           "2014-02-16" "2012-09-23" "2014-02-23" "2014-02-24"
## [35281] "2014-02-24" NA           "2012-09-23" "2014-02-23" NA          
## [35286] NA           NA           NA           "2014-02-24" NA          
## [35291] NA           NA           NA           NA           "2011-10-13"
## [35296] "2013-05-18" "2012-04-21" "2011-10-13" "2012-04-21" "2012-04-21"
## [35301] "2012-04-21" "2011-10-13" "2013-05-18" "2011-10-13" "2011-10-13"
## [35306] "2012-04-21" "2013-05-18" "2013-05-18" "2013-05-18" "2013-05-18"
## [35311] "2012-04-21" "2012-07-17" NA           "2011-09-13" "2012-07-17"
## [35316] "2011-09-13" NA           "2011-09-13" "2011-09-13" NA          
## [35321] "2011-09-13" "2012-07-17" "2014-01-15" "2012-03-20" "2012-03-20"
## [35326] NA           "2014-01-15" "2012-03-20" "2012-04-23" "2014-01-15"
## [35331] "2012-03-20" "2011-03-22" "2012-04-23" NA           "2011-03-22"
## [35336] "2014-01-15" "2012-03-20" "2012-04-23" "2014-01-15" "2012-04-23"
## [35341] NA           "2012-02-15" NA           "2012-02-15" "2012-02-15"
## [35346] "2012-02-15" NA           NA           NA           NA          
## [35351] NA           "2012-02-15" NA           NA           "2012-02-15"
## [35356] NA           "2011-08-15" "2011-08-15" "2011-07-30" "2011-11-30"
## [35361] "2011-07-30" "2011-03-24" "2011-11-30" NA           NA          
## [35366] NA           "2011-03-24" NA           "2011-08-15" "2011-08-15"
## [35371] "2011-03-24" "2011-08-15" "2011-07-30" "2011-07-30" "2011-07-30"
## [35376] NA           "2011-07-30" "2013-05-20" "2013-05-20" "2013-05-20"
## [35381] "2013-05-20" NA           NA           NA           "2013-05-20"
## [35386] "2011-04-27" "2013-11-18" "2011-04-27" "2012-06-17" "2013-11-18"
## [35391] NA           "2012-06-17" NA           "2011-04-27" "2012-06-23"
## [35396] "2013-11-18" "2012-06-17" "2012-06-23" "2013-11-22" "2013-11-22"
## [35401] "2013-11-22" "2013-11-22" "2011-03-31" "2013-11-18" NA          
## [35406] NA           "2011-09-29" "2011-04-27" "2011-03-31" "2013-11-22"
## [35411] "2011-04-27" NA           "2011-09-29" "2011-09-29" "2013-11-18"
## [35416] NA           NA           NA           NA           NA          
## [35421] "2011-03-13" "2011-03-13" "2011-03-13" "2011-03-13" "2011-03-13"
## [35426] NA           NA           NA           NA           NA          
## [35431] NA           NA           NA           NA           "2011-07-20"
## [35436] "2011-07-20" "2011-07-20" "2011-07-20" "2011-07-20" NA          
## [35441] NA           "2013-07-29" "2013-07-29" NA           "2013-07-29"
## [35446] "2013-07-29" "2013-07-29" "2013-07-29" NA           NA          
## [35451] NA           NA           "2011-08-28" "2011-08-28" "2011-08-28"
## [35456] NA           "2013-10-26" NA           NA           "2013-10-26"
## [35461] NA           NA           NA           NA           NA          
## [35466] NA           NA           "2012-01-24" "2012-01-24" "2012-01-24"
## [35471] "2012-01-24" "2012-01-24" "2012-01-24" "2013-06-25" "2013-06-25"
## [35476] "2013-06-25" "2013-06-25" "2011-04-26" "2011-06-23" "2011-06-23"
## [35481] "2011-06-23" "2011-06-23" "2011-04-26" "2011-11-14" "2013-11-29"
## [35486] "2011-11-14" "2011-11-14" "2011-11-14" "2011-11-14" "2013-11-29"
## [35491] NA           NA           NA           NA           NA          
## [35496] "2012-08-25" "2012-08-25" "2012-08-25" "2012-08-25" "2013-03-20"
## [35501] NA           "2013-03-20" "2013-03-20" NA           NA          
## [35506] NA           NA           "2011-10-24" NA           NA          
## [35511] "2011-10-24" "2011-10-24" "2012-04-22" "2012-05-24" "2012-05-24"
## [35516] NA           "2012-05-24" NA           NA           NA          
## [35521] NA           NA           NA           NA           "2012-05-24"
## [35526] "2012-04-22" "2011-08-18" "2011-08-18" "2011-08-18" NA          
## [35531] NA           NA           NA           NA           NA          
## [35536] "2013-01-16" NA           "2011-12-28" "2011-12-28" NA          
## [35541] "2011-12-28" "2013-01-16" NA           "2013-01-16" NA          
## [35546] NA           "2012-07-25" "2013-01-16" "2013-01-16" NA          
## [35551] NA           NA           "2011-12-28" NA           "2012-07-25"
## [35556] "2013-06-27" "2013-06-27" "2012-02-25" "2013-06-27" "2012-02-25"
## [35561] NA           "2012-05-29" NA           "2012-05-29" NA          
## [35566] NA           "2011-07-31" "2011-07-31" NA           "2011-07-31"
## [35571] NA           NA           NA           "2013-01-31" "2013-04-21"
## [35576] NA           "2013-04-19" "2013-04-19" NA           "2013-04-19"
## [35581] "2013-04-21" "2013-04-21" "2013-01-31" NA           NA          
## [35586] NA           "2012-10-16" NA           NA           NA          
## [35591] "2011-12-25" NA           NA           NA           NA          
## [35596] NA           NA           NA           "2011-12-25" "2012-10-16"
## [35601] NA           NA           NA           NA           NA          
## [35606] NA           NA           "2012-10-16" NA           NA          
## [35611] NA           NA           NA           NA           NA          
## [35616] NA           NA           NA           NA           "2012-06-13"
## [35621] NA           "2012-06-13" NA           "2012-06-13" NA          
## [35626] "2012-06-13" NA           "2012-06-13" NA           "2012-06-13"
## [35631] NA           NA           "2011-04-25" NA           NA          
## [35636] "2011-04-25" NA           "2012-08-17" "2012-08-17" "2012-08-17"
## [35641] "2012-08-17" "2012-08-17" "2012-08-17" NA           NA          
## [35646] "2011-08-14" NA           NA           "2011-08-14" NA          
## [35651] NA           "2011-08-14" NA           "2013-02-16" "2012-09-26"
## [35656] "2012-09-26" "2013-02-16" NA           "2011-09-19" "2011-09-19"
## [35661] "2011-01-30" "2011-01-30" "2011-01-30" NA           "2013-02-24"
## [35666] "2011-09-25" "2013-02-24" "2011-02-26" NA           "2011-09-25"
## [35671] NA           "2011-02-26" "2011-02-26" NA           NA          
## [35676] "2011-11-16" "2011-11-16" "2011-11-16" "2013-03-28" "2013-03-28"
## [35681] "2013-04-30" "2013-04-30" "2012-06-20" "2012-06-20" "2013-04-30"
## [35686] "2011-03-17" NA           "2011-03-17" NA           "2011-03-17"
## [35691] "2011-03-17" "2011-03-17" "2011-07-15" "2011-07-15" NA          
## [35696] NA           NA           NA           "2011-10-17" NA          
## [35701] NA           NA           "2011-07-15" NA           "2011-07-15"
## [35706] "2011-07-15" NA           "2011-10-17" NA           "2011-02-13"
## [35711] "2011-02-13" "2011-11-29" "2011-02-13" "2013-02-18" "2012-06-17"
## [35716] "2012-06-17" "2011-11-29" "2012-06-17" "2012-06-17" "2011-11-29"
## [35721] "2012-06-17" "2013-02-18" NA           NA           NA          
## [35726] NA           NA           NA           NA           "2012-11-24"
## [35731] "2012-02-29" "2012-11-24" "2012-02-29" "2012-02-29" "2012-07-24"
## [35736] "2012-02-29" NA           "2012-02-29" "2012-07-24" NA          
## [35741] NA           "2013-03-24" "2013-09-25" "2013-09-25" "2013-03-24"
## [35746] "2013-03-24" NA           "2013-03-24" NA           "2013-03-24"
## [35751] NA           NA           NA           NA           NA          
## [35756] "2012-01-14" "2012-01-14" "2012-01-14" "2011-09-14" "2012-09-14"
## [35761] "2011-09-14" "2011-09-14" "2012-09-14" "2011-09-14" "2012-09-14"
## [35766] "2011-09-14" "2013-06-14" "2013-09-28" "2011-05-31" "2013-06-14"
## [35771] "2013-06-14" "2013-09-20" "2013-09-28" "2013-09-20" "2011-05-31"
## [35776] "2013-06-14" "2013-06-14" "2011-05-31" "2013-06-14" NA          
## [35781] NA           "2012-05-23" "2012-05-23" "2012-05-24" "2012-05-23"
## [35786] NA           "2014-01-29" "2012-05-23" NA           "2012-05-23"
## [35791] "2012-05-24" "2014-01-29" NA           "2012-05-24" "2012-05-24"
## [35796] "2012-05-24" "2013-09-17" NA           NA           NA          
## [35801] NA           NA           NA           "2013-09-17" NA          
## [35806] NA           NA           "2013-09-17" NA           "2014-01-23"
## [35811] NA           "2014-01-23" NA           NA           NA          
## [35816] NA           "2011-11-13" NA           "2011-11-13" "2011-06-13"
## [35821] "2011-12-29" NA           "2011-06-13" "2011-11-13" "2011-06-13"
## [35826] NA           NA           NA           "2011-11-13" "2011-06-13"
## [35831] NA           NA           NA           NA           "2013-08-23"
## [35836] NA           "2013-03-25" "2011-06-13" "2011-12-29" "2011-05-22"
## [35841] "2013-08-23" "2011-03-13" NA           "2013-08-23" "2011-05-22"
## [35846] "2013-08-23" "2011-03-13" NA           "2011-05-22" "2013-08-23"
## [35851] "2013-03-25" "2011-03-13" "2011-11-13" "2012-01-22" "2012-01-22"
## [35856] "2012-01-22" "2012-01-22" "2012-01-22" NA           NA          
## [35861] NA           "2012-07-17" "2012-07-17" "2013-10-23" "2013-10-23"
## [35866] NA           NA           NA           NA           NA          
## [35871] NA           "2012-09-27" "2012-09-27" "2012-09-27" "2012-05-27"
## [35876] "2012-05-30" "2012-05-27" "2012-05-30" "2012-05-30" "2012-05-27"
## [35881] "2012-05-30" "2012-05-27" "2012-05-27" "2012-05-30" "2012-02-23"
## [35886] "2012-02-23" "2012-02-23" "2012-02-23" "2012-02-23" "2012-12-27"
## [35891] "2012-12-27" NA           "2012-12-27" NA           "2014-01-14"
## [35896] NA           NA           "2014-01-14" "2011-02-23" "2012-04-28"
## [35901] "2011-02-23" "2011-03-19" "2012-04-28" "2011-11-28" "2012-04-28"
## [35906] "2011-03-19" "2011-11-28" "2011-02-20" "2012-04-28" "2011-02-20"
## [35911] "2011-11-28" "2012-04-28" "2011-03-19" "2013-05-27" "2013-05-27"
## [35916] NA           NA           NA           NA           NA          
## [35921] "2012-05-30" "2012-05-30" "2012-05-30" "2012-05-30" "2013-07-26"
## [35926] "2012-05-30" "2012-05-30" "2013-07-26" "2013-07-26" "2012-02-13"
## [35931] "2012-02-13" NA           NA           NA           "2012-02-13"
## [35936] "2013-02-16" "2013-02-16" "2011-11-22" NA           "2011-11-22"
## [35941] "2012-06-18" NA           "2011-11-22" "2013-02-16" NA          
## [35946] NA           "2012-06-18" "2011-11-22" "2012-06-18" "2011-11-22"
## [35951] NA           "2013-02-16" NA           "2011-11-22" "2013-02-16"
## [35956] "2012-10-20" "2012-10-20" "2012-10-20" "2012-10-20" "2012-10-20"
## [35961] "2012-04-14" "2012-04-14" "2012-04-14" "2012-04-14" "2013-11-28"
## [35966] "2013-11-28" "2013-12-31" "2012-05-16" "2013-12-31" "2012-05-16"
## [35971] "2013-12-31" "2012-05-16" "2013-12-23" "2012-05-16" "2013-12-23"
## [35976] "2013-12-23" "2013-12-23" "2013-12-31" "2013-12-23" "2012-05-16"
## [35981] "2013-12-31" NA           NA           NA           NA          
## [35986] NA           "2011-08-14" "2011-08-14" NA           "2011-08-14"
## [35991] "2011-05-14" NA           "2011-08-14" NA           "2011-05-14"
## [35996] "2011-08-14" NA           NA           NA           NA          
## [36001] "2011-05-14" NA           NA           "2012-01-25" NA          
## [36006] NA           NA           NA           "2012-01-25" NA          
## [36011] NA           NA           "2012-04-21" "2012-04-21" "2012-04-21"
## [36016] "2012-04-21" "2012-04-21" "2013-10-24" "2013-10-24" "2012-02-28"
## [36021] "2013-04-20" "2012-02-28" "2012-02-28" "2013-10-24" "2013-04-20"
## [36026] "2013-04-20" "2012-02-28" "2013-10-24" "2013-10-24" "2012-02-28"
## [36031] "2011-04-15" "2012-03-26" "2011-04-15" "2011-04-15" "2012-03-26"
## [36036] "2012-03-26" "2012-03-26" "2011-04-15" "2011-04-15" "2012-03-26"
## [36041] NA           NA           NA           NA           NA          
## [36046] NA           NA           "2011-07-17" NA           "2012-11-29"
## [36051] NA           "2011-07-17" "2012-11-29" "2011-07-17" NA          
## [36056] NA           "2011-02-19" "2013-06-28" "2013-06-28" "2013-09-24"
## [36061] "2013-09-24" "2011-02-19" "2013-06-28" "2013-06-28" "2013-06-28"
## [36066] "2013-06-28" "2013-09-24" NA           "2013-02-25" "2013-02-25"
## [36071] NA           NA           NA           "2012-04-27" "2011-04-24"
## [36076] "2012-04-27" NA           "2013-10-20" NA           NA          
## [36081] "2011-04-24" "2012-04-27" "2011-04-24" NA           "2013-10-20"
## [36086] NA           NA           NA           NA           "2012-08-31"
## [36091] NA           "2012-08-31" NA           NA           "2012-08-31"
## [36096] "2012-08-31" NA           NA           "2012-08-31" NA          
## [36101] NA           NA           "2012-08-31" NA           NA          
## [36106] NA           NA           NA           "2013-06-20" NA          
## [36111] NA           NA           NA           "2013-06-20" "2012-07-28"
## [36116] "2012-07-28" "2011-10-21" "2012-05-23" "2012-07-28" "2012-07-28"
## [36121] "2011-10-21" "2012-05-23" "2012-07-28" "2012-07-28" "2011-10-21"
## [36126] "2013-04-18" NA           NA           NA           NA          
## [36131] "2013-04-18" "2013-04-18" NA           "2013-04-18" "2013-04-18"
## [36136] NA           NA           NA           NA           "2013-12-31"
## [36141] "2013-12-31" NA           NA           NA           "2013-12-31"
## [36146] NA           NA           "2012-09-25" "2012-03-18" "2012-09-25"
## [36151] "2012-09-25" "2012-03-18" "2012-03-18" "2012-03-18" "2012-09-25"
## [36156] "2011-03-23" "2013-05-31" "2011-03-23" "2013-05-31" "2013-05-31"
## [36161] "2011-03-23" "2013-05-31" "2013-05-31" "2012-10-27" "2012-10-27"
## [36166] "2012-10-17" "2013-10-24" "2012-10-27" "2012-10-27" "2012-10-17"
## [36171] "2012-10-17" "2013-10-24" "2011-03-17" "2012-10-27" "2012-10-27"
## [36176] "2012-10-27" "2012-10-17" "2012-10-27" "2011-03-17" "2012-10-17"
## [36181] "2012-10-27" NA           "2013-10-24" NA           "2013-01-22"
## [36186] "2013-01-22" "2012-09-13" "2013-01-22" "2012-09-13" "2013-01-22"
## [36191] "2013-01-22" "2012-09-13" "2012-09-13" "2012-09-13" "2012-09-13"
## [36196] "2013-07-31" "2013-07-31" "2013-07-31" "2013-07-31" "2013-07-31"
## [36201] "2013-05-18" "2013-05-26" "2013-05-18" "2013-05-26" "2012-07-18"
## [36206] "2013-01-21" "2013-01-21" "2012-07-18" "2012-07-18" "2013-06-21"
## [36211] "2013-01-13" "2013-01-13" "2013-06-21" "2013-06-21" "2011-09-21"
## [36216] NA           "2011-09-21" NA           NA           "2011-07-27"
## [36221] NA           NA           NA           NA           NA          
## [36226] "2011-07-27" "2011-09-21" NA           "2011-07-27" NA          
## [36231] NA           "2013-12-13" "2013-12-13" "2011-11-25" "2013-12-15"
## [36236] "2013-12-15" "2011-11-25" NA           NA           NA          
## [36241] NA           NA           "2014-01-30" "2014-01-30" "2014-01-30"
## [36246] "2014-01-30" "2014-01-30" "2013-11-23" "2013-11-23" "2012-11-13"
## [36251] "2012-11-13" "2012-11-13" "2013-06-30" "2012-02-22" "2013-06-30"
## [36256] "2012-02-22" "2012-10-19" "2013-06-30" "2012-10-19" "2012-02-22"
## [36261] "2012-10-19" "2012-10-19" "2012-10-19" NA           "2011-06-27"
## [36266] NA           NA           "2011-06-27" NA           NA          
## [36271] NA           "2011-06-27" "2011-06-27" NA           NA          
## [36276] "2011-03-22" NA           "2011-03-22" "2011-03-22" "2011-03-22"
## [36281] NA           NA           "2013-10-27" NA           "2013-01-30"
## [36286] NA           NA           "2013-10-27" "2013-01-30" "2013-01-30"
## [36291] NA           NA           "2013-10-27" "2013-10-27" NA          
## [36296] NA           "2013-01-30" "2013-01-30" "2011-11-26" NA          
## [36301] "2011-11-26" NA           NA           NA           NA          
## [36306] "2011-11-26" "2011-11-26" NA           NA           NA          
## [36311] NA           "2011-11-26" NA           NA           NA          
## [36316] "2012-04-23" "2012-04-23" "2012-04-23" "2012-04-23" "2012-04-23"
## [36321] "2013-08-23" "2013-08-23" "2013-08-23" "2012-06-30" "2012-06-30"
## [36326] "2012-06-30" "2012-06-30" "2012-06-30" "2013-04-17" NA          
## [36331] NA           "2013-04-17" "2013-04-17" "2013-04-17" "2013-04-17"
## [36336] NA           NA           "2013-04-17" NA           NA          
## [36341] NA           NA           NA           NA           NA          
## [36346] NA           NA           NA           NA           NA          
## [36351] NA           NA           NA           NA           NA          
## [36356] "2013-05-13" "2014-01-17" "2014-01-17" NA           NA          
## [36361] "2013-05-13" NA           NA           NA           NA          
## [36366] NA           "2013-04-22" "2013-04-14" "2013-04-19" "2013-04-22"
## [36371] NA           "2013-04-14" "2013-04-19" NA           "2013-04-14"
## [36376] NA           "2013-04-19" "2013-04-14" "2013-04-22" NA          
## [36381] "2013-04-19" "2013-04-19" NA           "2013-04-22" "2013-04-14"
## [36386] "2013-04-22" NA           NA           NA           NA          
## [36391] NA           NA           NA           NA           NA          
## [36396] NA           NA           "2011-03-14" NA           "2011-03-14"
## [36401] "2011-03-14" "2011-03-14" NA           NA           "2011-03-14"
## [36406] NA           "2012-04-13" "2013-12-29" "2012-04-13" "2013-12-29"
## [36411] "2012-04-13" "2011-11-14" "2011-11-14" "2011-11-14" NA          
## [36416] "2012-01-21" NA           "2012-01-21" "2012-01-21" "2011-01-30"
## [36421] NA           "2011-01-30" "2012-01-21" "2011-01-30" NA          
## [36426] "2011-01-30" "2012-01-21" NA           "2013-01-15" "2012-01-15"
## [36431] "2012-01-15" "2013-01-15" NA           NA           "2013-01-15"
## [36436] "2013-01-15" "2013-01-15" "2012-05-22" "2012-05-22" "2012-05-20"
## [36441] "2012-05-20" "2012-09-19" NA           NA           "2012-09-19"
## [36446] "2011-02-28" "2011-02-28" "2012-05-20" "2011-02-28" "2012-05-22"
## [36451] "2011-02-28" "2012-05-20" "2012-09-19" "2012-05-22" "2011-07-16"
## [36456] "2011-07-16" "2011-05-18" "2011-05-18" "2011-05-18" "2011-05-18"
## [36461] "2011-05-18" "2011-08-18" "2011-08-18" "2011-08-18" "2012-11-13"
## [36466] "2012-11-13" NA           "2012-11-13" NA           "2011-06-19"
## [36471] "2011-06-19" NA           "2011-06-19" NA           NA          
## [36476] NA           NA           NA           "2011-03-31" NA          
## [36481] NA           "2011-03-31" NA           NA           NA          
## [36486] NA           "2011-03-31" NA           NA           NA          
## [36491] NA           NA           NA           NA           NA          
## [36496] NA           "2013-05-16" NA           "2012-10-28" "2012-10-28"
## [36501] NA           NA           NA           NA           NA          
## [36506] NA           "2013-05-16" "2011-02-20" "2011-02-20" "2011-02-20"
## [36511] "2012-10-26" "2011-02-20" "2012-10-26" "2011-02-20" "2012-10-26"
## [36516] "2011-06-30" "2011-06-30" "2011-06-30" "2011-06-30" "2011-11-28"
## [36521] "2011-11-28" "2011-11-28" "2011-06-30" NA           "2011-11-28"
## [36526] "2011-11-28" NA           NA           NA           NA          
## [36531] "2012-03-30" NA           NA           "2013-02-13" NA          
## [36536] NA           "2013-02-13" "2012-03-30" "2012-03-30" "2013-02-13"
## [36541] "2013-08-25" "2013-08-25" "2012-07-26" "2013-08-25" "2012-07-26"
## [36546] "2013-05-14" "2012-02-19" "2012-02-19" "2013-05-14" "2012-02-19"
## [36551] "2013-05-14" "2012-02-19" NA           NA           NA          
## [36556] NA           NA           NA           NA           NA          
## [36561] NA           NA           NA           NA           "2011-11-27"
## [36566] NA           "2011-11-27" NA           NA           NA          
## [36571] NA           "2012-10-13" "2012-10-13" NA           NA          
## [36576] NA           "2012-01-26" "2012-10-13" "2012-01-26" NA          
## [36581] NA           NA           NA           NA           NA          
## [36586] NA           NA           NA           "2013-04-24" NA          
## [36591] NA           "2013-04-24" NA           NA           "2013-04-24"
## [36596] NA           NA           "2013-04-24" "2013-04-24" NA          
## [36601] NA           NA           NA           NA           "2011-04-17"
## [36606] "2011-04-17" "2012-07-27" "2012-07-27" "2013-08-27" NA          
## [36611] "2013-08-27" NA           NA           "2013-08-27" "2013-08-27"
## [36616] NA           NA           NA           NA           NA          
## [36621] NA           NA           NA           NA           "2011-02-27"
## [36626] NA           "2011-02-27" NA           NA           NA          
## [36631] NA           NA           "2011-01-26" "2011-01-26" "2011-01-26"
## [36636] "2011-01-26" "2011-01-26" "2011-08-20" "2011-08-20" "2011-10-21"
## [36641] "2011-08-20" "2011-10-21" "2011-10-21" "2011-08-20" NA          
## [36646] "2012-02-26" NA           "2013-07-28" "2013-07-28" "2012-02-26"
## [36651] "2012-02-26" "2013-07-28" "2013-07-28" "2013-07-28" NA          
## [36656] "2011-08-23" "2011-08-23" "2011-08-23" NA           "2013-11-20"
## [36661] NA           "2013-11-20" NA           NA           NA          
## [36666] "2013-11-20" NA           NA           NA           "2012-08-17"
## [36671] "2013-09-17" "2012-08-17" NA           "2013-09-17" "2013-09-17"
## [36676] "2013-09-17" "2013-09-17" NA           "2014-01-14" NA          
## [36681] NA           "2014-01-14" "2012-04-30" NA           "2014-01-14"
## [36686] "2012-04-30" "2012-04-30" NA           "2011-04-16" "2011-04-16"
## [36691] "2013-08-16" "2011-03-20" "2013-08-16" "2011-03-20" "2013-08-16"
## [36696] "2013-08-16" NA           NA           NA           NA          
## [36701] NA           NA           NA           "2011-04-27" "2011-04-27"
## [36706] "2011-04-27" "2011-04-27" NA           "2011-01-30" "2011-01-30"
## [36711] NA           NA           NA           NA           NA          
## [36716] NA           "2011-01-30" NA           "2013-02-25" "2013-02-25"
## [36721] "2013-02-26" "2013-02-26" "2013-02-25" "2013-02-26" "2013-02-26"
## [36726] "2013-02-25" "2013-02-26" "2013-02-25" "2013-02-25" "2013-02-26"
## [36731] NA           "2013-04-25" "2013-04-30" "2013-04-25" "2013-04-25"
## [36736] NA           "2012-03-19" "2013-04-25" "2013-04-21" "2012-03-19"
## [36741] "2012-03-19" "2012-06-14" NA           NA           "2012-03-19"
## [36746] "2013-04-21" "2013-01-25" NA           "2013-04-30" NA          
## [36751] "2013-04-30" "2012-06-14" "2013-04-25" "2013-04-21" "2013-04-30"
## [36756] "2013-04-21" "2013-04-30" "2013-04-21" "2013-01-25" "2014-01-24"
## [36761] "2014-01-24" "2014-01-14" "2013-03-21" NA           "2014-01-24"
## [36766] "2014-01-24" "2014-01-14" "2014-01-14" "2014-01-24" "2014-01-14"
## [36771] "2013-03-21" NA           "2014-01-14" "2013-03-23" "2013-03-23"
## [36776] "2013-03-23" "2013-03-23" "2013-03-23" NA           NA          
## [36781] NA           NA           NA           NA           NA          
## [36786] NA           NA           NA           NA           NA          
## [36791] NA           "2011-08-27" NA           "2011-08-27" "2013-11-22"
## [36796] "2011-08-27" NA           NA           "2013-11-22" NA          
## [36801] NA           "2013-11-22" NA           NA           NA          
## [36806] NA           NA           NA           NA           "2013-11-22"
## [36811] NA           NA           NA           NA           "2013-11-22"
## [36816] NA           NA           NA           "2013-04-25" NA          
## [36821] "2013-04-25" NA           NA           NA           NA          
## [36826] "2011-09-19" "2011-09-13" "2011-09-19" NA           NA          
## [36831] "2011-09-13" NA           "2011-09-13" NA           NA          
## [36836] NA           NA           "2011-09-19" NA           NA          
## [36841] NA           NA           NA           "2011-10-26" NA          
## [36846] "2011-10-26" NA           NA           "2012-04-26" "2013-03-23"
## [36851] "2013-03-23" "2013-03-23" NA           "2013-03-23" "2013-03-23"
## [36856] NA           "2013-03-23" "2012-04-26" NA           "2013-07-21"
## [36861] "2012-03-15" "2012-01-22" "2014-01-14" "2013-07-21" "2012-01-22"
## [36866] "2012-01-22" "2012-12-24" "2013-07-21" "2012-12-24" "2014-01-14"
## [36871] "2014-01-14" "2012-03-15" "2013-07-21" "2012-12-24" "2012-03-15"
## [36876] "2012-01-22" "2012-12-24" "2014-01-14" "2013-07-21" "2012-12-24"
## [36881] "2014-01-14" "2012-01-22" "2013-10-24" "2013-10-24" "2013-10-24"
## [36886] "2012-02-23" "2012-02-23" "2012-07-23" "2012-12-23" "2012-07-23"
## [36891] "2012-07-23" "2012-12-23" "2011-01-26" "2011-01-26" NA          
## [36896] NA           "2013-09-29" NA           "2013-09-29" NA          
## [36901] NA           NA           "2013-01-16" NA           NA          
## [36906] NA           NA           NA           "2013-09-29" "2013-09-29"
## [36911] "2013-09-29" NA           "2013-01-16" "2013-09-23" NA          
## [36916] "2013-09-23" NA           NA           "2013-09-23" NA          
## [36921] NA           NA           NA           NA           NA          
## [36926] "2011-09-26" "2011-09-26" NA           "2011-09-28" "2011-09-28"
## [36931] NA           "2011-09-28" "2011-09-26" "2011-09-26" NA          
## [36936] NA           "2011-09-26" "2011-09-20" "2011-09-20" "2011-09-20"
## [36941] "2013-01-24" "2013-01-24" "2013-01-24" "2012-09-18" "2012-09-18"
## [36946] "2012-06-29" "2012-06-29" "2012-09-18" "2013-09-19" NA          
## [36951] "2013-09-19" NA           "2013-09-19" NA           NA          
## [36956] "2013-09-19" NA           "2013-09-19" "2011-05-27" "2013-05-19"
## [36961] "2011-08-16" "2011-08-16" "2013-04-25" "2011-08-16" "2011-05-27"
## [36966] "2013-05-19" "2013-04-25" "2013-05-19" "2013-06-28" "2011-05-26"
## [36971] "2011-05-26" NA           "2011-05-26" NA           "2013-06-28"
## [36976] "2014-02-16" "2011-05-26" "2011-05-23" "2014-02-16" NA          
## [36981] "2011-05-26" "2013-06-28" "2014-02-16" "2011-05-23" "2014-02-16"
## [36986] "2014-02-16" "2011-05-23" "2011-05-23" "2011-05-23" "2011-04-23"
## [36991] "2013-11-22" "2013-11-22" "2013-11-22" "2011-04-23" "2012-10-13"
## [36996] "2012-10-13" "2012-10-13" "2012-10-13" "2012-10-13" "2013-04-28"
## [37001] "2013-10-25" "2013-10-25" "2013-10-25" "2013-04-28" "2013-07-25"
## [37006] "2012-09-28" "2012-09-28" "2013-07-25" "2012-09-28" "2012-09-28"
## [37011] "2012-09-28" NA           "2011-06-15" NA           "2011-06-15"
## [37016] "2011-04-14" "2011-04-14" "2011-03-30" "2011-03-30" "2012-11-20"
## [37021] "2012-11-20" "2011-04-14" "2011-04-14" "2011-03-30" "2011-04-14"
## [37026] NA           NA           NA           NA           NA          
## [37031] NA           NA           NA           NA           NA          
## [37036] NA           NA           "2011-05-14" "2011-05-14" "2011-05-14"
## [37041] "2012-11-14" NA           NA           NA           "2012-11-14"
## [37046] NA           NA           NA           NA           "2012-11-16"
## [37051] NA           "2012-11-16" NA           NA           NA          
## [37056] NA           NA           NA           NA           NA          
## [37061] NA           NA           NA           NA           "2013-09-21"
## [37066] "2013-09-21" "2012-03-31" "2012-03-27" "2013-07-14" "2012-03-31"
## [37071] "2013-07-14" "2012-03-27" "2012-03-27" "2012-03-31" "2012-03-27"
## [37076] "2012-03-31" "2013-07-14" "2013-07-14" "2013-07-14" "2013-07-14"
## [37081] NA           "2013-06-25" NA           NA           "2013-12-15"
## [37086] "2013-12-15" NA           "2014-02-14" "2013-09-26" "2013-09-26"
## [37091] "2014-02-14" "2013-06-25" "2013-09-26" NA           NA          
## [37096] "2011-09-30" "2011-09-30" NA           "2012-01-20" "2011-09-30"
## [37101] "2011-09-30" NA           "2012-01-20" "2011-09-30" "2012-01-20"
## [37106] "2013-10-17" "2013-05-27" "2013-05-27" "2013-10-17" "2013-08-25"
## [37111] "2012-08-17" "2013-10-17" "2013-05-27" "2013-05-27" "2012-08-17"
## [37116] "2013-05-27" "2013-08-25" "2012-08-17" "2013-08-25" "2013-11-21"
## [37121] "2013-11-21" "2013-11-21" "2013-11-21" "2013-11-21" "2013-11-21"
## [37126] "2011-06-24" "2011-06-24" "2011-10-31" "2011-06-24" "2011-10-31"
## [37131] "2011-10-15" "2011-10-31" NA           NA           "2011-10-31"
## [37136] "2011-10-31" "2011-03-16" "2011-03-16" "2011-10-31" "2011-10-15"
## [37141] "2011-10-15" NA           "2011-03-16" "2011-03-16" "2011-03-16"
## [37146] NA           NA           NA           NA           NA          
## [37151] "2013-12-30" "2013-12-30" "2012-09-15" "2012-09-20" "2012-09-15"
## [37156] "2012-09-20" "2012-09-15" "2012-09-20" NA           NA          
## [37161] NA           NA           NA           "2011-11-30" "2011-11-30"
## [37166] "2011-11-30" "2011-11-30" "2011-11-30" "2013-09-19" "2013-09-19"
## [37171] "2013-09-19" "2011-08-31" "2011-08-31" "2013-12-17" NA          
## [37176] NA           "2013-12-17" "2011-08-31" NA           NA          
## [37181] NA           "2013-01-24" NA           NA           NA          
## [37186] NA           "2011-08-31" "2011-08-31" NA           NA          
## [37191] NA           NA           "2012-05-26" "2013-01-24" "2011-08-31"
## [37196] NA           NA           NA           "2012-05-26" "2012-05-26"
## [37201] NA           NA           NA           "2013-05-29" "2013-05-29"
## [37206] "2013-05-29" "2013-06-14" "2013-06-19" "2013-06-19" "2013-06-14"
## [37211] "2013-06-19" "2013-06-19" "2013-05-29" "2013-06-14" "2013-05-29"
## [37216] "2013-06-19" "2013-05-29" "2013-06-14" "2013-06-14" NA          
## [37221] NA           NA           "2014-01-18" "2014-01-18" NA          
## [37226] "2014-01-17" "2014-01-18" "2014-01-17" "2014-01-17" "2014-01-17"
## [37231] NA           "2011-11-18" NA           "2014-01-18" NA          
## [37236] "2014-01-17" NA           "2011-11-18" "2014-01-17" "2014-01-18"
## [37241] "2011-11-18" "2014-01-18" "2013-08-24" NA           "2013-08-24"
## [37246] "2013-07-14" "2013-07-14" NA           NA           NA          
## [37251] NA           NA           "2013-07-14" NA           NA          
## [37256] NA           NA           "2013-03-28" "2013-03-28" "2013-03-28"
## [37261] "2014-01-19" "2014-01-19" "2014-01-19" "2013-03-28" "2014-01-19"
## [37266] "2014-01-19" "2013-03-28" "2014-01-19" NA           NA          
## [37271] "2013-06-27" NA           "2013-06-27" NA           "2013-06-27"
## [37276] NA           NA           "2011-07-18" "2013-07-23" "2011-07-17"
## [37281] "2013-07-18" NA           NA           NA           "2013-07-23"
## [37286] "2011-07-17" "2011-07-17" "2011-07-17" NA           NA          
## [37291] "2013-07-18" "2011-10-28" "2011-07-18" "2011-10-28" NA          
## [37296] "2011-07-17" "2012-07-21" "2012-07-21" "2011-08-18" "2011-06-26"
## [37301] "2014-01-25" "2011-06-26" "2011-06-26" "2011-06-26" NA          
## [37306] NA           "2011-06-26" NA           NA           "2013-01-21"
## [37311] NA           "2011-06-26" NA           NA           NA          
## [37316] NA           "2011-04-23" "2014-01-25" "2011-08-18" NA          
## [37321] "2013-01-21" "2011-04-23" NA           NA           NA          
## [37326] NA           NA           "2012-06-14" "2012-06-14" "2012-06-16"
## [37331] "2012-06-16" NA           NA           "2014-01-13" "2014-01-13"
## [37336] "2014-01-13" "2013-10-26" "2014-01-13" "2013-10-26" "2013-10-26"
## [37341] "2014-01-13" "2013-02-28" "2013-02-28" NA           "2013-02-28"
## [37346] NA           NA           NA           NA           "2013-02-28"
## [37351] NA           "2013-02-28" NA           NA           "2013-10-23"
## [37356] "2013-10-23" "2013-10-23" "2013-06-18" "2013-06-18" "2013-10-17"
## [37361] "2013-10-17" "2013-05-20" "2013-05-20" NA           NA          
## [37366] NA           NA           "2013-05-20" NA           NA          
## [37371] NA           NA           "2011-12-27" "2011-12-27" NA          
## [37376] "2011-12-27" "2011-09-14" "2011-09-14" NA           "2011-09-14"
## [37381] "2012-10-16" "2012-10-16" "2013-02-23" "2013-02-23" "2012-10-16"
## [37386] "2012-10-16" "2013-02-23" "2012-10-16" NA           NA          
## [37391] NA           NA           NA           NA           "2012-07-14"
## [37396] NA           "2012-07-14" NA           NA           NA          
## [37401] NA           NA           "2013-09-24" "2013-08-14" "2012-09-24"
## [37406] "2013-09-24" "2012-09-24" "2012-09-24" "2012-09-24" "2013-08-14"
## [37411] "2012-09-24" "2013-09-24" "2013-08-14" "2011-10-16" NA          
## [37416] NA           NA           NA           NA           NA          
## [37421] "2011-10-16" "2011-10-16" "2011-10-16" NA           NA          
## [37426] "2012-09-24" "2012-09-24" "2012-09-24" "2012-09-24" "2012-09-24"
## [37431] "2012-05-22" NA           NA           "2012-04-30" "2012-04-30"
## [37436] "2011-10-21" "2011-10-21" "2011-10-21" "2011-10-21" NA          
## [37441] NA           "2012-05-22" "2011-02-18" NA           "2011-02-18"
## [37446] "2012-05-22" "2011-10-21" "2011-02-18" "2011-10-21" "2012-05-22"
## [37451] "2012-08-15" "2012-05-17" "2012-08-15" "2012-08-15" "2012-05-17"
## [37456] "2012-05-17" "2012-05-17" "2011-10-31" "2011-10-31" "2011-10-31"
## [37461] "2011-10-31" "2012-05-17" "2011-10-31" "2013-08-29" NA          
## [37466] NA           "2013-08-29" NA           "2014-01-28" NA          
## [37471] "2013-08-29" NA           NA           NA           NA          
## [37476] "2014-01-28" NA           NA           NA           "2013-08-29"
## [37481] NA           "2014-01-28" "2013-08-29" "2014-01-28" NA          
## [37486] NA           NA           NA           NA           NA          
## [37491] NA           NA           NA           NA           "2012-02-16"
## [37496] "2012-02-16" NA           "2012-02-16" "2012-07-15" NA          
## [37501] "2012-07-15" "2012-07-15" NA           "2012-07-15" "2013-08-16"
## [37506] "2013-08-16" NA           NA           "2013-08-16" NA          
## [37511] NA           NA           "2013-08-14" "2012-04-15" NA          
## [37516] "2013-08-14" "2013-08-14" "2012-04-15" NA           NA          
## [37521] "2011-03-15" "2011-03-15" "2011-03-15" "2011-09-13" "2011-03-15"
## [37526] "2011-09-13" "2011-03-15" "2011-03-15" "2011-09-13" "2011-06-13"
## [37531] "2011-06-13" "2011-06-13" "2011-06-13" "2011-06-13" "2012-03-25"
## [37536] "2012-03-25" NA           NA           NA           NA          
## [37541] NA           "2012-03-25" NA           "2012-11-16" NA          
## [37546] NA           NA           NA           NA           "2012-11-16"
## [37551] NA           NA           "2012-11-16" "2014-02-13" "2014-02-13"
## [37556] "2014-02-13" "2014-02-13" "2013-08-25" "2013-08-25" "2012-01-18"
## [37561] "2012-01-18" "2012-01-18" "2012-10-20" "2012-10-20" NA          
## [37566] "2012-08-19" NA           "2012-01-28" "2012-08-19" "2012-01-28"
## [37571] NA           "2012-08-19" "2012-08-19" "2012-08-19" NA          
## [37576] NA           NA           NA           NA           "2013-05-14"
## [37581] "2013-05-14" "2013-05-14" "2013-05-14" "2013-05-14" NA          
## [37586] "2013-12-31" "2013-12-31" NA           "2013-12-31" "2011-02-24"
## [37591] "2011-02-24" NA           NA           NA           NA          
## [37596] NA           NA           NA           NA           NA          
## [37601] NA           NA           NA           NA           NA          
## [37606] NA           "2013-10-21" "2013-10-21" "2013-10-23" "2012-05-25"
## [37611] "2013-10-21" "2012-05-25" "2011-09-22" "2013-10-23" "2011-09-22"
## [37616] "2013-10-21" "2013-10-23" "2013-10-23" "2011-09-22" "2012-08-31"
## [37621] "2012-08-31" NA           NA           NA           "2013-02-20"
## [37626] "2011-03-25" "2011-03-25" NA           NA           "2011-03-25"
## [37631] NA           "2011-03-25" "2013-02-20" NA           "2013-02-20"
## [37636] NA           NA           NA           NA           NA          
## [37641] NA           "2012-11-17" NA           NA           "2012-11-17"
## [37646] NA           NA           NA           NA           NA          
## [37651] "2012-10-24" NA           NA           NA           NA          
## [37656] NA           "2012-10-24" "2012-10-24" NA           "2012-10-24"
## [37661] NA           NA           NA           "2012-10-24" "2013-12-24"
## [37666] "2013-12-24" "2013-12-24" "2014-01-16" "2014-01-16" "2013-05-22"
## [37671] NA           NA           "2011-10-14" "2011-07-18" NA          
## [37676] NA           "2013-05-22" "2013-05-22" NA           "2013-05-22"
## [37681] NA           "2011-10-14" "2013-05-22" NA           "2011-10-14"
## [37686] "2011-10-14" "2011-07-18" "2013-05-22" "2011-10-14" "2011-10-14"
## [37691] NA           NA           NA           NA           NA          
## [37696] NA           "2011-02-15" NA           NA           NA          
## [37701] "2011-02-15" NA           "2011-10-21" NA           "2011-10-21"
## [37706] "2011-10-21" NA           NA           "2011-08-28" "2011-08-28"
## [37711] "2011-08-28" "2011-07-26" "2011-07-26" "2011-07-16" "2011-07-16"
## [37716] NA           NA           NA           NA           NA          
## [37721] NA           NA           NA           NA           NA          
## [37726] "2011-09-13" NA           NA           NA           NA          
## [37731] "2011-09-18" NA           "2014-02-16" "2011-09-13" NA          
## [37736] "2014-02-16" "2011-09-18" "2013-06-27" NA           "2013-06-27"
## [37741] "2011-09-18" NA           "2013-06-27" "2011-09-13" NA          
## [37746] "2011-11-22" NA           NA           NA           "2011-11-15"
## [37751] NA           "2011-11-22" "2011-11-15" "2011-11-15" "2011-11-22"
## [37756] NA           NA           NA           "2011-12-31" "2011-12-31"
## [37761] "2011-12-31" "2011-12-31" NA           NA           NA          
## [37766] "2011-12-31" "2012-02-22" NA           "2011-12-31" NA          
## [37771] NA           "2012-02-22" "2012-02-22" NA           NA          
## [37776] NA           NA           "2011-12-21" NA           NA          
## [37781] "2011-12-21" NA           NA           "2011-12-21" "2011-12-21"
## [37786] NA           "2011-12-21" "2012-11-20" "2012-11-20" "2012-11-20"
## [37791] "2012-11-20" "2012-11-20" "2012-11-20" "2013-05-17" "2011-12-18"
## [37796] NA           "2013-05-17" NA           NA           "2011-12-18"
## [37801] "2013-01-26" "2013-01-26" "2013-01-26" NA           NA          
## [37806] "2013-10-25" "2013-10-25" NA           "2013-10-25" NA          
## [37811] "2013-10-25" NA           "2013-10-25" "2012-05-27" "2013-11-29"
## [37816] "2013-11-19" "2013-11-29" "2013-11-19" "2012-05-27" "2012-05-27"
## [37821] "2013-11-29" "2013-11-19" NA           NA           NA          
## [37826] NA           NA           NA           NA           NA          
## [37831] NA           "2012-07-29" "2012-10-25" "2012-07-29" "2012-10-15"
## [37836] NA           NA           "2012-10-15" NA           "2012-10-25"
## [37841] "2013-02-25" NA           "2013-02-25" "2013-02-25" NA          
## [37846] "2013-02-25" "2013-02-25" "2012-09-28" "2012-09-28" "2012-09-28"
## [37851] NA           "2012-05-24" NA           NA           "2012-09-28"
## [37856] NA           NA           "2012-05-24" NA           "2012-09-28"
## [37861] "2012-11-21" NA           NA           "2012-11-21" NA          
## [37866] NA           "2012-11-21" "2011-08-30" "2014-01-24" "2011-08-30"
## [37871] "2011-08-30" NA           "2014-01-24" "2011-08-30" "2012-07-30"
## [37876] "2012-08-22" "2014-01-24" "2012-07-30" "2012-07-30" NA          
## [37881] "2011-06-26" "2012-08-22" "2011-08-30" "2012-08-22" "2012-07-30"
## [37886] "2012-08-22" "2012-07-30" NA           "2011-06-26" "2012-08-22"
## [37891] NA           "2013-03-18" "2013-03-18" "2013-03-18" "2013-03-18"
## [37896] "2013-03-18" "2011-05-18" "2013-10-18" "2011-05-18" "2013-10-18"
## [37901] "2013-10-18" "2013-10-18" NA           "2013-10-18" "2011-05-18"
## [37906] "2011-05-18" NA           NA           NA           NA          
## [37911] NA           NA           "2013-05-27" NA           "2013-05-27"
## [37916] "2013-05-27" NA           NA           NA           NA          
## [37921] NA           NA           NA           "2013-11-30" NA          
## [37926] NA           NA           NA           NA           "2013-11-30"
## [37931] NA           NA           NA           NA           NA          
## [37936] "2013-02-15" "2012-03-31" NA           NA           NA          
## [37941] NA           NA           "2012-09-16" NA           "2012-09-16"
## [37946] NA           "2011-06-27" "2012-03-31" "2011-06-27" "2012-09-16"
## [37951] "2011-06-27" "2011-06-27" "2011-06-27" "2013-02-15" "2012-09-16"
## [37956] "2012-09-16" "2011-01-30" "2011-01-30" "2011-01-30" "2011-01-30"
## [37961] "2011-01-30" "2011-01-30" "2013-11-21" NA           "2013-11-21"
## [37966] NA           NA           NA           "2013-11-21" NA          
## [37971] NA           NA           "2013-11-21" NA           NA          
## [37976] NA           "2013-11-21" NA           NA           NA          
## [37981] NA           NA           NA           NA           NA          
## [37986] NA           NA           NA           "2013-11-28" "2013-11-28"
## [37991] "2013-11-28" "2013-11-28" "2013-11-28" "2013-10-30" "2013-10-30"
## [37996] "2013-09-28" "2013-10-30" "2013-12-16" "2013-10-21" "2013-10-21"
## [38001] "2013-10-30" "2013-10-30" "2013-09-28" "2013-10-21" "2013-12-16"
## [38006] "2013-10-21" "2013-10-21" "2013-09-28" "2013-11-20" "2013-06-28"
## [38011] "2013-06-28" "2013-06-28" "2013-06-28" "2013-11-20" "2013-06-28"
## [38016] "2013-06-28" "2012-03-26" "2012-05-14" "2012-03-26" "2012-05-14"
## [38021] "2012-05-14" "2012-05-14" "2012-05-14" NA           NA          
## [38026] "2013-05-29" "2013-05-29" NA           NA           NA          
## [38031] "2013-05-29" "2012-09-17" NA           NA           "2013-05-29"
## [38036] "2011-07-19" "2013-05-29" NA           "2012-09-17" "2012-09-17"
## [38041] "2011-07-19" "2013-05-29" "2011-04-28" "2011-04-28" "2011-04-28"
## [38046] "2011-04-28" "2011-04-28" NA           NA           NA          
## [38051] NA           NA           NA           NA           NA          
## [38056] NA           NA           NA           NA           NA          
## [38061] NA           NA           NA           NA           NA          
## [38066] NA           NA           NA           "2011-08-17" NA          
## [38071] NA           NA           NA           NA           NA          
## [38076] "2011-08-17" NA           NA           "2012-06-27" NA          
## [38081] NA           NA           "2012-06-27" NA           "2012-06-27"
## [38086] NA           NA           NA           NA           NA          
## [38091] NA           NA           NA           NA           NA          
## [38096] NA           NA           NA           "2011-09-22" "2011-09-22"
## [38101] "2011-09-22" "2012-09-29" "2012-09-29" "2012-09-25" "2012-09-25"
## [38106] NA           NA           NA           NA           NA          
## [38111] NA           NA           NA           NA           NA          
## [38116] NA           NA           "2013-04-29" NA           NA          
## [38121] NA           NA           "2013-04-29" NA           "2013-04-29"
## [38126] NA           NA           "2013-04-29" "2012-10-17" "2012-10-17"
## [38131] "2012-10-17" "2013-04-18" "2012-10-17" "2012-10-17" "2013-04-18"
## [38136] "2013-06-21" "2013-06-21" NA           "2013-06-21" "2013-06-21"
## [38141] NA           NA           "2013-06-21" "2012-07-23" "2011-01-26"
## [38146] "2012-07-23" "2011-01-26" "2011-01-26" "2011-01-26" "2012-07-23"
## [38151] NA           NA           NA           NA           NA          
## [38156] NA           NA           NA           "2013-09-28" NA          
## [38161] NA           NA           "2012-10-26" "2012-10-26" "2013-09-28"
## [38166] "2012-12-29" NA           NA           "2012-12-29" NA          
## [38171] "2013-09-28" "2011-03-23" "2011-03-23" "2013-03-17" NA          
## [38176] "2011-03-23" "2013-03-17" "2013-03-17" "2011-03-23" "2013-03-17"
## [38181] "2011-03-23" "2013-03-17" "2013-03-17" NA           "2011-05-19"
## [38186] "2011-05-19" "2011-05-19" "2011-05-19" "2012-02-29" "2011-05-19"
## [38191] "2012-02-29" "2011-05-19" "2012-02-29" "2012-02-29" "2013-12-18"
## [38196] "2013-12-18" "2013-12-18" "2013-12-18" "2013-12-18" "2013-06-28"
## [38201] NA           "2013-06-20" "2013-06-28" "2013-06-28" "2011-01-29"
## [38206] "2013-06-20" "2013-06-20" "2013-06-28" "2013-06-28" NA          
## [38211] "2013-06-20" "2013-12-16" "2011-01-29" "2013-06-20" "2011-01-27"
## [38216] NA           NA           "2011-01-27" NA           "2013-12-16"
## [38221] NA           "2012-03-26" NA           NA           NA          
## [38226] NA           NA           NA           NA           "2012-03-26"
## [38231] "2011-09-25" "2011-09-25" "2011-09-25" "2013-05-27" "2013-05-27"
## [38236] "2013-05-27" NA           NA           NA           "2013-05-27"
## [38241] "2013-05-27" NA           "2013-05-27" NA           "2011-01-25"
## [38246] NA           "2011-01-25" NA           NA           NA          
## [38251] "2011-11-16" "2011-11-16" NA           "2011-11-16" "2011-12-15"
## [38256] "2012-05-30" "2011-12-15" "2011-12-15" "2011-12-15" "2011-11-16"
## [38261] "2011-11-16" "2011-12-15" NA           "2012-05-30" "2012-05-30"
## [38266] NA           NA           NA           NA           NA          
## [38271] "2012-11-29" "2012-11-29" "2012-12-26" "2012-12-26" "2012-08-28"
## [38276] "2012-08-28" NA           NA           "2012-08-28" "2012-08-28"
## [38281] "2012-08-28" "2012-09-29" NA           "2012-09-29" NA          
## [38286] "2012-09-29" "2012-09-29" "2012-09-29" "2012-09-29" NA          
## [38291] "2013-09-27" "2013-09-27" "2012-05-23" "2013-09-27" "2012-05-23"
## [38296] NA           "2013-09-27" "2011-12-16" "2013-09-27" "2011-12-16"
## [38301] "2013-09-27" "2012-05-23" NA           NA           NA          
## [38306] NA           NA           NA           NA           "2012-08-18"
## [38311] "2012-08-18" NA           "2012-04-20" "2013-05-20" NA          
## [38316] "2012-04-20" "2013-05-20" "2012-04-20" NA           NA          
## [38321] NA           NA           NA           "2013-05-20" NA          
## [38326] "2013-05-19" "2011-10-31" "2011-10-31" "2013-05-19" "2011-10-31"
## [38331] "2013-05-19" "2011-10-31" "2013-05-19" "2011-10-31" "2013-05-19"
## [38336] "2011-10-31" "2012-07-22" "2011-10-20" "2012-07-22" "2011-10-20"
## [38341] NA           "2012-07-22" "2012-07-22" "2011-10-20" NA          
## [38346] "2013-09-14" NA           "2013-09-14" "2013-09-14" "2013-10-28"
## [38351] "2013-10-28" "2012-12-24" "2012-08-27" "2013-10-28" "2013-10-28"
## [38356] "2012-08-27" "2012-12-24" "2012-08-27" "2012-12-24" "2012-08-27"
## [38361] "2013-10-28" "2012-08-27" "2012-12-24" "2012-12-24" "2013-08-16"
## [38366] NA           NA           NA           "2013-08-16" NA          
## [38371] "2013-08-16" "2013-08-16" "2013-08-16" NA           "2011-12-28"
## [38376] "2011-12-28" "2011-12-28" "2011-12-28" NA           NA          
## [38381] NA           NA           "2012-10-27" NA           "2012-10-26"
## [38386] NA           "2014-02-16" "2014-02-16" "2014-02-16" "2012-10-26"
## [38391] "2014-02-16" "2012-10-22" "2012-10-22" "2014-02-16" "2012-10-27"
## [38396] "2013-09-23" NA           NA           "2013-09-23" "2013-10-25"
## [38401] NA           "2013-09-23" "2013-10-25" NA           "2013-09-23"
## [38406] NA           "2013-09-23" "2013-09-23" "2012-03-29" NA          
## [38411] "2012-03-29" "2012-03-29" NA           NA           NA          
## [38416] NA           NA           "2013-04-26" "2013-04-26" NA          
## [38421] "2013-04-26" NA           NA           NA           NA          
## [38426] NA           NA           NA           NA           NA          
## [38431] NA           "2011-03-25" "2011-03-25" "2011-03-25" "2011-03-25"
## [38436] "2011-03-25" NA           "2011-03-25" NA           NA          
## [38441] "2013-03-19" "2013-03-19" "2013-03-19" "2013-03-19" "2013-03-19"
## [38446] NA           NA           NA           NA           "2011-03-26"
## [38451] "2012-10-25" "2012-10-25" "2012-10-25" "2011-03-26" "2011-03-26"
## [38456] "2011-03-26" "2012-10-25" "2011-03-26" "2012-10-25" "2012-11-27"
## [38461] "2013-04-30" "2013-04-30" "2012-11-27" "2012-11-27" "2013-04-30"
## [38466] "2012-11-27" "2012-11-27" NA           NA           NA          
## [38471] NA           "2012-11-19" "2012-11-19" "2012-12-15" "2012-12-15"
## [38476] NA           NA           "2011-10-26" "2011-10-26" "2012-06-17"
## [38481] "2012-06-17" "2012-06-17" "2011-10-26" "2012-06-17" "2011-05-22"
## [38486] "2011-05-27" "2011-05-27" "2012-06-17" "2011-05-19" "2011-10-22"
## [38491] "2011-05-19" "2011-05-22" "2011-10-22" "2011-10-22" NA          
## [38496] NA           NA           "2011-07-24" "2012-03-23" "2012-03-23"
## [38501] "2012-03-23" "2012-03-23" "2011-07-24" "2012-03-23" "2012-03-23"
## [38506] "2011-07-24" NA           "2011-09-24" NA           NA          
## [38511] NA           NA           "2011-09-24" NA           "2011-06-26"
## [38516] "2013-07-29" "2011-06-26" "2011-06-26" "2011-06-26" "2013-12-25"
## [38521] "2013-07-29" "2013-12-25" "2013-07-29" "2013-12-25" "2011-06-26"
## [38526] "2013-12-25" "2013-12-25" "2013-12-16" "2012-03-27" "2013-12-16"
## [38531] "2013-12-16" "2012-03-27" "2013-12-16" NA           "2012-03-27"
## [38536] NA           NA           "2013-12-16" NA           "2011-07-28"
## [38541] NA           NA           "2011-07-28" "2012-07-23" "2012-09-15"
## [38546] "2011-07-28" NA           "2012-07-23" "2012-09-15" NA          
## [38551] NA           NA           NA           NA           "2012-12-21"
## [38556] "2013-12-24" NA           NA           NA           NA          
## [38561] "2012-12-21" NA           "2012-12-21" "2013-12-24" "2013-12-24"
## [38566] "2011-02-17" "2011-02-17" "2011-02-17" "2011-02-17" NA          
## [38571] NA           "2011-07-19" NA           "2012-12-15" "2011-06-14"
## [38576] "2012-12-15" "2011-07-19" "2011-06-14" NA           NA          
## [38581] "2012-06-30" "2012-06-30" NA           NA           "2012-06-30"
## [38586] "2012-06-30" "2012-06-30" NA           NA           NA          
## [38591] NA           "2011-03-28" "2011-03-31" "2011-03-28" "2011-03-28"
## [38596] "2011-03-28" "2011-03-31" "2011-03-31" "2011-03-28" "2011-03-31"
## [38601] "2011-03-31" NA           NA           NA           NA          
## [38606] "2012-01-14" "2012-01-14" NA           NA           NA          
## [38611] "2012-01-14" NA           NA           "2012-01-14" "2012-01-14"
## [38616] "2012-01-14" NA           NA           NA           NA          
## [38621] "2011-02-17" "2011-02-17" "2011-02-17" NA           "2012-11-22"
## [38626] NA           "2012-11-22" "2011-02-25" "2011-02-25" "2012-11-22"
## [38631] "2011-02-25" "2012-11-22" NA           "2012-11-22" NA          
## [38636] NA           "2013-09-15" NA           "2013-09-15" NA          
## [38641] "2013-09-15" NA           NA           "2011-07-27" NA          
## [38646] NA           NA           "2011-07-27" NA           "2011-07-27"
## [38651] "2011-07-27" "2011-07-27" NA           "2011-07-27" "2011-05-15"
## [38656] "2011-05-15" "2011-05-15" "2013-05-24" "2013-05-24" "2013-05-24"
## [38661] NA           NA           "2013-05-24" NA           "2013-05-24"
## [38666] NA           NA           NA           NA           NA          
## [38671] NA           NA           NA           NA           "2013-10-24"
## [38676] "2013-10-24" NA           NA           "2013-10-24" NA          
## [38681] NA           NA           NA           NA           NA          
## [38686] NA           NA           NA           NA           "2012-10-19"
## [38691] NA           "2012-10-19" NA           NA           NA          
## [38696] NA           NA           NA           NA           "2013-05-19"
## [38701] NA           NA           NA           "2013-05-19" NA          
## [38706] NA           NA           "2013-06-22" NA           NA          
## [38711] "2013-06-22" "2013-06-22" NA           "2013-06-22" "2013-06-22"
## [38716] NA           NA           "2013-07-18" NA           "2013-07-18"
## [38721] NA           NA           NA           "2013-07-18" NA          
## [38726] NA           "2012-07-17" NA           "2012-07-17" NA          
## [38731] "2012-07-17" NA           NA           "2012-07-17" NA          
## [38736] "2012-07-17" "2012-10-30" "2012-10-30" "2012-10-30" "2011-12-22"
## [38741] NA           "2013-12-25" NA           "2011-12-22" NA          
## [38746] NA           NA           "2011-12-22" "2013-12-25" NA          
## [38751] "2011-12-22" "2011-12-22" "2013-12-25" "2012-10-31" "2012-10-31"
## [38756] NA           NA           "2012-10-31" "2012-10-31" "2012-10-31"
## [38761] "2012-10-17" "2012-10-30" "2012-10-17" "2012-10-30" "2012-10-22"
## [38766] "2012-10-30" "2012-10-22" "2012-10-30" "2012-10-30" "2013-11-23"
## [38771] NA           "2013-11-23" "2012-06-13" "2013-11-23" "2012-06-13"
## [38776] "2012-06-13" NA           "2013-11-23" "2012-07-26" "2012-02-20"
## [38781] NA           "2012-07-30" "2012-02-20" "2012-07-26" NA          
## [38786] "2012-07-30" "2012-07-23" "2012-02-20" NA           "2012-07-30"
## [38791] NA           "2012-07-23" NA           NA           NA          
## [38796] NA           "2012-07-23" "2012-07-26" NA           "2013-12-28"
## [38801] NA           NA           "2013-12-28" NA           "2013-12-28"
## [38806] NA           NA           NA           NA           NA          
## [38811] "2012-06-20" "2013-08-22" "2012-10-14" NA           "2013-08-22"
## [38816] NA           NA           "2011-05-30" NA           NA          
## [38821] "2011-05-30" "2012-10-14" NA           NA           "2011-05-30"
## [38826] "2012-06-20" "2011-05-30" "2011-05-30" NA           "2012-06-20"
## [38831] "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18"
## [38836] "2011-03-17" "2013-11-28" "2011-03-17" "2011-03-17" "2011-03-17"
## [38841] "2013-11-28" NA           NA           NA           NA          
## [38846] NA           "2011-11-20" NA           NA           "2011-11-20"
## [38851] NA           "2011-11-17" "2011-11-17" "2011-11-20" "2011-11-17"
## [38856] NA           NA           NA           "2011-11-24" "2011-11-24"
## [38861] "2011-11-24" NA           "2011-11-24" NA           "2011-11-24"
## [38866] NA           NA           NA           NA           NA          
## [38871] NA           NA           NA           NA           "2012-09-26"
## [38876] NA           NA           "2012-09-26" "2012-09-26" "2013-09-14"
## [38881] "2013-09-14" "2013-09-14" "2013-02-22" "2011-10-29" "2013-09-14"
## [38886] "2012-03-14" "2011-07-13" "2012-03-14" "2013-02-22" "2013-09-14"
## [38891] "2011-10-29" "2013-02-22" "2011-10-29" "2012-03-14" "2011-10-29"
## [38896] "2011-10-29" "2011-07-13" NA           NA           NA          
## [38901] NA           "2011-03-16" NA           NA           NA          
## [38906] "2011-03-16" NA           NA           NA           NA          
## [38911] NA           NA           NA           NA           "2012-11-21"
## [38916] "2012-03-28" "2012-11-21" "2012-03-28" "2012-11-21" "2012-11-21"
## [38921] "2012-03-28" "2012-11-21" "2011-01-29" "2011-11-25" "2011-01-29"
## [38926] "2011-01-29" "2011-11-25" "2011-01-29" "2011-11-25" "2011-11-25"
## [38931] "2011-01-29" "2011-11-25" "2011-01-29" "2012-02-23" NA          
## [38936] NA           "2012-02-29" NA           NA           NA          
## [38941] NA           "2012-02-29" NA           "2013-12-21" NA          
## [38946] "2011-07-26" "2012-02-29" NA           NA           "2013-12-21"
## [38951] NA           "2013-12-21" "2011-07-26" "2012-02-29" "2013-12-21"
## [38956] "2012-02-23" "2011-07-26" "2012-02-23" NA           "2013-12-21"
## [38961] "2012-02-23" "2012-02-29" "2012-02-23" "2013-12-21" NA          
## [38966] NA           NA           NA           NA           "2012-01-26"
## [38971] "2011-07-15" "2011-07-15" "2012-01-26" NA           "2011-07-15"
## [38976] "2011-07-15" "2012-01-26" NA           NA           "2011-10-25"
## [38981] "2011-10-25" NA           NA           NA           NA          
## [38986] "2011-10-25" NA           NA           NA           NA          
## [38991] "2012-11-22" "2012-11-22" "2013-04-30" NA           NA          
## [38996] "2013-04-30" "2013-04-30" "2012-11-22" "2012-11-22" NA          
## [39001] "2013-04-30" "2012-11-22" "2012-11-22" NA           NA          
## [39006] NA           NA           "2013-04-30" "2011-09-19" NA          
## [39011] NA           NA           "2011-09-19" NA           "2013-06-22"
## [39016] "2013-06-22" "2013-06-22" "2013-06-22" "2013-06-22" "2011-07-23"
## [39021] "2011-07-23" "2011-07-23" NA           NA           "2012-08-29"
## [39026] "2012-08-29" "2012-08-29" "2012-08-29" "2012-12-23" "2012-12-23"
## [39031] "2011-05-29" "2011-05-29" "2011-05-29" "2012-08-19" "2011-10-18"
## [39036] "2012-08-19" "2011-02-19" "2011-10-18" "2012-04-19" "2012-04-19"
## [39041] "2011-02-19" "2011-10-18" "2011-02-19" "2011-02-19" "2012-01-21"
## [39046] "2013-08-21" "2012-01-21" "2013-08-21" "2012-01-21" "2013-08-21"
## [39051] "2013-08-21" NA           NA           NA           NA          
## [39056] NA           NA           NA           NA           NA          
## [39061] NA           NA           NA           NA           NA          
## [39066] NA           NA           NA           NA           "2011-10-23"
## [39071] NA           NA           NA           "2011-10-23" NA          
## [39076] NA           "2013-03-13" "2011-10-23" "2011-10-14" "2013-03-13"
## [39081] NA           "2011-10-14" "2011-10-14" NA           "2011-02-22"
## [39086] "2014-02-13" "2013-11-16" "2014-02-13" "2011-02-22" "2013-11-16"
## [39091] "2013-11-16" "2011-02-22" "2011-02-22" "2013-11-16" "2013-11-16"
## [39096] "2013-11-16" "2014-02-13" NA           "2011-12-14" "2013-11-15"
## [39101] "2011-12-14" "2011-12-14" NA           NA           "2012-09-29"
## [39106] NA           NA           NA           "2013-11-15" "2012-09-29"
## [39111] "2013-07-19" "2013-07-19" "2013-07-19" "2013-07-19" "2013-07-13"
## [39116] NA           NA           "2013-07-13" "2013-07-13" "2013-08-16"
## [39121] NA           "2013-08-16" "2013-08-16" "2013-08-16" "2013-08-16"
## [39126] NA           NA           NA           "2013-07-30" "2013-07-30"
## [39131] "2011-10-20" "2011-10-20" "2012-11-28" "2012-11-28" "2012-11-28"
## [39136] NA           NA           NA           NA           NA          
## [39141] NA           NA           NA           NA           NA          
## [39146] NA           NA           NA           NA           NA          
## [39151] NA           NA           NA           NA           NA          
## [39156] NA           NA           NA           "2013-01-21" "2013-01-21"
## [39161] "2013-01-21" NA           NA           NA           NA          
## [39166] "2013-01-21" NA           "2013-01-21" NA           "2013-01-21"
## [39171] "2012-08-30" "2012-11-25" "2012-11-25" "2012-08-30" "2012-08-30"
## [39176] "2011-11-22" "2011-11-21" "2011-11-21" "2011-11-22" "2012-11-25"
## [39181] "2011-11-22" "2011-11-22" "2011-11-21" "2012-11-25" "2011-11-21"
## [39186] "2011-07-22" "2011-07-22" "2011-07-22" "2013-06-30" "2013-06-30"
## [39191] NA           NA           NA           NA           "2013-03-14"
## [39196] NA           "2013-03-14" NA           NA           NA          
## [39201] "2013-03-14" "2013-03-14" NA           NA           NA          
## [39206] NA           NA           NA           NA           NA          
## [39211] NA           "2013-07-19" "2013-07-19" "2013-07-19" "2013-12-27"
## [39216] "2013-12-27" "2013-12-27" "2013-12-27" "2013-08-14" NA          
## [39221] "2013-08-14" NA           "2013-08-14" "2013-08-14" "2013-08-14"
## [39226] "2011-05-30" "2011-05-30" "2013-06-28" "2013-06-28" "2011-05-30"
## [39231] "2011-05-30" "2011-05-30" "2014-01-22" "2013-09-20" "2014-01-21"
## [39236] NA           "2014-01-22" "2013-09-20" "2014-01-21" NA          
## [39241] "2012-06-27" "2012-06-27" NA           NA           "2012-06-27"
## [39246] NA           NA           "2012-05-29" "2012-05-29" "2013-11-27"
## [39251] "2013-11-27" "2012-01-22" "2012-05-29" "2012-05-29" "2012-05-29"
## [39256] "2013-11-27" "2012-01-22" "2012-05-29" "2012-04-25" "2012-04-25"
## [39261] "2012-04-25" "2012-01-22" NA           NA           NA          
## [39266] NA           NA           NA           NA           NA          
## [39271] NA           NA           NA           NA           NA          
## [39276] "2013-02-16" "2013-02-16" "2013-02-16" "2011-05-21" "2011-05-21"
## [39281] "2011-05-21" "2011-05-21" "2011-05-21" "2011-05-21" NA          
## [39286] NA           NA           "2012-04-27" "2012-04-27" "2012-04-27"
## [39291] NA           "2012-04-27" NA           NA           "2013-11-21"
## [39296] "2013-06-23" "2013-06-23" "2013-06-23" "2013-11-21" "2013-06-23"
## [39301] "2013-06-23" "2013-06-23" NA           NA           "2012-10-29"
## [39306] "2012-03-25" "2012-03-25" NA           "2012-03-25" NA          
## [39311] "2012-03-25" "2014-01-20" "2012-08-28" "2012-03-25" NA          
## [39316] NA           "2012-03-25" NA           "2012-10-29" "2012-10-29"
## [39321] "2012-10-29" NA           "2012-08-28" "2014-01-27" "2012-10-29"
## [39326] "2014-01-27" NA           "2012-10-29" NA           "2014-01-20"
## [39331] "2011-11-24" "2011-12-30" "2011-12-30" "2011-12-30" "2011-12-30"
## [39336] "2011-12-30" "2011-06-29" "2011-06-29" "2011-12-30" "2011-11-24"
## [39341] "2011-06-29" "2011-06-29" "2011-11-24" "2011-06-29" "2011-07-14"
## [39346] "2011-07-14" "2011-07-14" "2012-03-25" NA           NA          
## [39351] "2012-04-14" "2012-03-14" "2012-03-14" "2012-03-25" NA          
## [39356] "2012-04-14" "2012-04-14" "2012-04-14" "2012-03-14" "2012-04-14"
## [39361] NA           NA           "2011-12-20" "2012-08-17" NA          
## [39366] NA           "2011-12-25" NA           "2011-12-25" NA          
## [39371] "2012-08-17" "2011-12-25" NA           "2012-08-17" NA          
## [39376] "2011-12-20" "2011-12-20" "2012-08-17" "2012-08-17" NA          
## [39381] "2012-08-17" "2011-05-24" "2011-05-24" "2011-05-24" "2011-05-24"
## [39386] "2011-05-24" NA           NA           NA           NA          
## [39391] "2013-09-28" NA           NA           "2013-11-29" NA          
## [39396] "2013-09-28" NA           "2013-09-28" "2013-06-22" NA          
## [39401] "2013-06-22" NA           NA           NA           "2013-11-29"
## [39406] "2011-04-20" "2013-03-30" "2013-03-30" "2011-04-20" "2013-03-30"
## [39411] "2013-03-30" "2011-04-20" "2011-04-20" "2011-04-20" "2013-03-30"
## [39416] NA           NA           NA           NA           NA          
## [39421] NA           NA           NA           NA           NA          
## [39426] NA           NA           NA           NA           NA          
## [39431] NA           NA           NA           NA           NA          
## [39436] NA           NA           "2012-09-13" "2013-03-30" "2013-03-30"
## [39441] "2012-09-13" "2013-03-30" "2012-09-13" "2012-05-22" "2012-05-22"
## [39446] NA           NA           NA           "2011-09-16" "2011-09-16"
## [39451] NA           "2011-09-16" "2011-09-16" NA           "2011-09-16"
## [39456] "2011-09-16" "2012-09-18" "2012-09-18" NA           "2011-12-20"
## [39461] "2012-03-31" NA           NA           "2011-08-19" "2011-11-15"
## [39466] "2011-08-19" "2011-08-19" NA           "2011-08-27" "2011-08-27"
## [39471] NA           NA           NA           NA           "2011-12-20"
## [39476] "2011-11-15" NA           NA           NA           NA          
## [39481] "2012-03-31" "2011-12-20" "2011-12-20" NA           NA          
## [39486] "2011-08-27" "2011-12-20" NA           NA           NA          
## [39491] NA           NA           NA           NA           NA          
## [39496] NA           NA           NA           NA           NA          
## [39501] NA           "2012-03-19" "2012-03-19" NA           NA          
## [39506] NA           NA           NA           "2012-08-30" NA          
## [39511] "2011-07-30" NA           NA           NA           "2012-08-30"
## [39516] NA           "2012-08-30" NA           "2011-07-30" NA          
## [39521] "2012-02-28" NA           NA           "2012-02-28" "2013-12-13"
## [39526] NA           NA           "2012-02-28" NA           "2013-12-13"
## [39531] NA           "2013-12-13" "2012-02-28" "2012-02-28" NA          
## [39536] NA           NA           NA           NA           "2013-02-18"
## [39541] "2012-12-14" "2012-12-14" NA           "2013-02-18" "2014-01-17"
## [39546] "2012-02-19" NA           "2014-01-17" "2012-02-19" "2012-02-19"
## [39551] NA           "2012-02-19" "2012-02-19" "2012-02-19" "2011-09-28"
## [39556] NA           NA           NA           "2011-09-28" "2011-09-28"
## [39561] NA           NA           "2012-06-20" "2012-06-20" "2012-06-20"
## [39566] "2011-12-15" "2011-12-15" "2013-12-21" "2011-12-15" NA          
## [39571] "2013-12-21" NA           NA           NA           "2013-12-21"
## [39576] "2011-12-15" NA           "2011-12-15" "2012-01-20" "2011-05-30"
## [39581] "2011-05-30" "2011-05-30" "2012-01-20" NA           NA          
## [39586] NA           "2011-12-24" "2011-12-24" "2013-09-16" "2013-09-16"
## [39591] "2013-09-16" "2013-09-16" "2013-08-14" "2013-08-14" "2011-10-29"
## [39596] "2011-10-29" NA           "2012-12-14" "2011-03-31" "2011-03-31"
## [39601] NA           "2012-12-14" "2012-12-14" "2012-12-14" "2012-01-30"
## [39606] "2012-12-14" "2012-01-30" "2011-03-31" "2012-01-30" NA          
## [39611] "2012-12-14" "2011-03-26" "2011-03-26" "2011-03-26" "2011-03-26"
## [39616] "2011-03-26" NA           NA           "2011-12-17" "2011-12-17"
## [39621] NA           "2013-09-27" NA           "2013-09-27" "2013-10-21"
## [39626] "2013-09-27" "2013-10-21" NA           NA           "2011-03-15"
## [39631] "2012-05-29" "2012-05-29" "2012-05-28" "2012-05-28" "2012-05-28"
## [39636] "2011-03-15" "2012-05-28" "2012-05-28" "2012-05-28" "2011-02-25"
## [39641] NA           "2011-02-25" NA           NA           NA          
## [39646] NA           NA           NA           NA           "2011-02-25"
## [39651] "2011-11-26" "2011-06-30" "2012-01-22" "2012-01-22" "2011-06-30"
## [39656] "2011-06-30" "2011-11-26" "2012-12-21" "2013-08-13" "2012-12-21"
## [39661] "2013-08-13" "2013-10-21" "2013-08-13" "2013-08-13" "2013-08-13"
## [39666] "2013-06-22" "2012-12-21" "2013-08-13" "2013-10-21" "2013-06-22"
## [39671] "2013-06-22" "2013-06-22" "2013-06-22" "2011-07-30" "2011-07-30"
## [39676] "2011-07-30" NA           NA           "2012-01-18" "2012-01-18"
## [39681] "2011-05-20" "2011-05-20" "2011-05-20" "2011-05-20" "2011-05-20"
## [39686] "2011-02-17" "2011-02-17" "2013-10-27" "2011-02-17" "2013-10-27"
## [39691] "2011-02-17" "2012-07-28" "2012-07-28" NA           "2012-07-28"
## [39696] "2012-07-28" "2012-07-28" "2012-07-28" NA           NA          
## [39701] "2014-01-21" NA           "2014-01-21" "2014-01-21" "2014-01-21"
## [39706] NA           "2014-01-21" NA           NA           NA          
## [39711] "2012-08-27" "2012-08-27" NA           NA           NA          
## [39716] NA           "2012-08-27" NA           "2012-08-27" NA          
## [39721] NA           NA           NA           "2012-08-27" "2013-09-18"
## [39726] "2013-09-18" "2013-09-18" "2012-12-29" "2013-09-18" "2013-09-18"
## [39731] "2012-12-29" "2012-12-29" "2012-06-23" NA           "2012-06-23"
## [39736] "2011-11-25" NA           "2012-06-23" "2012-06-23" NA          
## [39741] "2012-06-23" "2011-11-25" "2012-10-15" "2012-10-15" "2012-09-24"
## [39746] "2012-10-15" "2012-10-15" "2012-10-15" "2012-09-24" "2011-11-19"
## [39751] "2011-11-19" NA           NA           NA           NA          
## [39756] NA           "2013-06-13" "2013-06-13" NA           "2013-11-30"
## [39761] "2013-11-30" NA           "2013-11-30" NA           "2013-11-30"
## [39766] "2013-11-30" "2011-05-26" "2011-02-27" "2011-05-26" "2011-05-26"
## [39771] "2011-02-27" NA           "2014-01-14" NA           NA          
## [39776] "2014-01-14" "2014-01-14" "2014-01-14" "2013-04-25" "2013-04-25"
## [39781] NA           "2011-12-24" NA           NA           NA          
## [39786] "2011-12-24" "2011-12-24" NA           NA           "2013-03-21"
## [39791] "2013-03-21" NA           "2013-03-21" "2013-05-28" "2013-05-28"
## [39796] "2012-11-16" "2012-11-16" "2012-11-16" "2012-11-16" "2012-11-16"
## [39801] "2012-11-16" "2012-06-30" "2012-06-30" "2012-06-30" "2011-01-25"
## [39806] "2012-06-30" "2011-01-25" NA           NA           NA          
## [39811] NA           NA           NA           NA           NA          
## [39816] NA           "2012-10-22" "2012-10-22" NA           "2012-10-22"
## [39821] NA           NA           NA           NA           "2011-06-19"
## [39826] NA           NA           NA           "2011-06-19" NA          
## [39831] "2011-06-19" "2011-06-19" "2011-06-19" NA           "2011-05-18"
## [39836] "2011-05-18" "2011-05-18" "2012-11-21" "2012-11-21" "2012-11-21"
## [39841] "2012-11-21" "2012-11-21" NA           NA           NA          
## [39846] NA           NA           NA           NA           NA          
## [39851] NA           NA           NA           NA           NA          
## [39856] NA           NA           "2011-07-18" "2011-07-18" "2013-04-21"
## [39861] "2011-07-28" "2013-04-21" "2011-07-28" "2011-07-28" "2013-04-21"
## [39866] "2011-07-28" "2011-07-18" "2011-07-18" "2011-07-28" "2013-04-21"
## [39871] "2013-04-21" "2013-04-21" "2011-07-18" "2013-08-15" "2013-08-15"
## [39876] "2013-08-15" "2013-08-15" "2012-05-24" "2012-05-24" "2012-01-30"
## [39881] "2012-01-30" "2013-12-15" "2013-12-15" "2012-01-30" "2012-01-30"
## [39886] "2012-01-30" NA           NA           "2013-12-15" "2012-01-30"
## [39891] NA           "2013-04-24" NA           "2013-04-24" NA          
## [39896] NA           "2013-05-18" "2013-05-18" NA           NA          
## [39901] NA           NA           "2012-12-29" "2012-12-29" NA          
## [39906] NA           NA           "2013-10-30" NA           "2013-10-30"
## [39911] "2013-10-30" "2012-02-18" "2012-02-18" "2012-02-18" "2012-02-18"
## [39916] NA           NA           NA           "2012-02-18" NA          
## [39921] NA           NA           "2013-10-27" NA           "2013-10-27"
## [39926] "2011-07-24" "2011-07-24" NA           "2011-04-21" NA          
## [39931] "2011-07-24" "2011-07-24" "2011-04-21" "2011-04-21" "2011-04-21"
## [39936] "2011-07-24" "2011-04-21" "2011-07-24" "2011-04-21" "2012-12-27"
## [39941] "2012-12-27" "2013-11-14" "2013-11-14" NA           "2014-01-31"
## [39946] NA           "2014-01-31" "2013-11-14" "2014-01-31" NA          
## [39951] NA           "2014-01-28" NA           "2012-01-14" "2014-01-31"
## [39956] "2012-01-14" "2014-01-28" NA           NA           "2014-01-28"
## [39961] "2014-01-28" NA           "2014-01-28" "2011-02-22" "2011-02-22"
## [39966] "2011-02-22" NA           "2011-06-16" "2011-06-16" NA          
## [39971] NA           NA           NA           NA           NA          
## [39976] NA           NA           NA           NA           NA          
## [39981] "2013-01-30" "2012-02-24" "2013-01-30" "2013-01-30" "2013-11-24"
## [39986] "2013-11-24" "2013-01-30" "2013-01-30" "2012-02-24" "2012-02-24"
## [39991] "2011-10-18" "2011-10-18" "2011-10-18" "2011-10-18" "2011-10-18"
## [39996] NA           NA           NA           NA           "2011-08-25"
## [40001] "2011-08-25" "2011-08-25" NA           "2011-08-25" NA          
## [40006] NA           NA           NA           "2012-03-27" "2012-03-27"
## [40011] "2011-06-30" "2012-03-27" NA           NA           NA          
## [40016] "2012-03-27" NA           "2012-03-27" "2012-03-27" NA          
## [40021] "2011-06-30" "2011-06-30" "2011-06-30" NA           "2011-07-27"
## [40026] "2011-07-27" "2013-12-21" NA           "2013-12-21" NA          
## [40031] "2013-12-21" NA           "2013-12-21" NA           "2013-12-21"
## [40036] NA           NA           "2011-08-26" "2011-08-26" "2013-07-23"
## [40041] "2011-08-26" "2013-07-23" "2013-07-23" "2011-08-26" "2013-08-25"
## [40046] "2013-08-25" "2013-08-25" "2013-01-14" "2012-02-27" NA          
## [40051] "2012-02-27" "2012-02-27" "2013-01-14" "2012-02-27" "2012-02-27"
## [40056] NA           "2013-01-14" "2011-02-26" "2011-02-26" "2011-02-26"
## [40061] "2011-02-26" "2013-03-21" "2013-03-21" "2013-03-21" "2013-08-23"
## [40066] "2012-04-23" "2013-08-23" "2012-10-27" "2012-04-23" "2013-03-21"
## [40071] "2012-04-23" "2013-03-21" "2012-10-27" "2012-10-27" "2012-10-27"
## [40076] "2012-10-27" "2013-12-28" "2013-12-28" NA           NA          
## [40081] NA           "2013-12-28" "2012-03-20" "2011-11-24" "2013-11-29"
## [40086] "2012-03-20" "2011-11-24" "2013-11-29" "2011-11-24" "2011-11-24"
## [40091] "2012-03-20" "2011-11-24" "2013-11-29" NA           NA          
## [40096] "2011-07-25" "2011-07-25" NA           NA           "2013-01-15"
## [40101] NA           "2013-01-15" "2013-01-15" "2011-11-14" "2012-11-24"
## [40106] "2011-11-14" "2012-11-24" "2011-11-14" "2011-11-14" "2011-11-14"
## [40111] "2013-03-23" "2013-03-23" "2013-03-23" "2012-07-21" "2012-08-28"
## [40116] "2012-08-29" "2012-08-28" "2013-02-14" "2012-07-21" "2012-08-28"
## [40121] "2012-12-17" "2013-02-14" "2012-08-29" "2012-07-21" "2012-12-17"
## [40126] "2012-08-29" "2012-08-29" "2012-12-17" "2012-12-17" "2012-12-17"
## [40131] "2012-08-21" "2012-08-21" "2012-08-28" "2012-08-14" "2012-08-14"
## [40136] "2012-08-14" "2012-08-14" "2011-05-26" "2011-05-26" "2012-08-14"
## [40141] NA           NA           NA           "2011-12-30" "2011-12-30"
## [40146] "2011-12-30" NA           NA           "2011-06-13" "2011-06-13"
## [40151] "2013-12-29" "2013-12-29" "2013-12-29" "2013-09-29" "2013-10-21"
## [40156] NA           "2013-09-24" "2013-09-24" "2013-10-21" "2013-09-29"
## [40161] "2013-09-29" NA           "2013-09-24" "2013-10-21" NA          
## [40166] "2013-09-29" "2011-06-27" NA           "2011-08-27" NA          
## [40171] "2011-08-27" "2011-08-27" "2011-06-27" NA           NA          
## [40176] "2011-06-27" "2011-06-27" "2011-06-27" "2011-08-27" "2011-06-27"
## [40181] "2011-08-27" "2011-08-27" NA           NA           NA          
## [40186] "2013-10-21" NA           NA           "2013-10-21" NA          
## [40191] NA           NA           NA           NA           "2012-05-16"
## [40196] "2012-05-16" "2011-11-17" NA           NA           NA          
## [40201] NA           NA           NA           NA           "2011-11-17"
## [40206] NA           NA           "2011-11-17" "2011-11-17" NA          
## [40211] NA           "2011-11-17" NA           "2011-11-17" NA          
## [40216] NA           NA           NA           NA           NA          
## [40221] "2013-11-25" "2013-11-25" NA           NA           NA          
## [40226] NA           "2013-11-25" NA           "2012-04-13" NA          
## [40231] "2012-11-13" NA           NA           NA           "2012-04-13"
## [40236] "2012-04-13" "2012-04-13" NA           NA           NA          
## [40241] NA           NA           NA           "2012-04-13" "2012-04-13"
## [40246] "2012-11-13" NA           NA           "2012-11-13" "2012-11-13"
## [40251] "2012-11-13" NA           NA           NA           "2012-02-24"
## [40256] "2012-02-24" "2012-12-18" "2012-12-18" "2012-02-24" "2012-12-18"
## [40261] "2011-11-19" "2011-02-13" "2011-11-17" "2011-11-19" "2011-02-13"
## [40266] "2011-11-17" "2011-11-17" "2011-02-13" "2011-11-19" "2013-12-15"
## [40271] "2013-12-15" "2011-11-19" "2012-04-25" "2013-12-15" "2013-12-15"
## [40276] "2012-04-25" "2011-11-19" "2011-11-19" "2013-12-15" NA          
## [40281] NA           NA           "2014-02-17" "2014-02-17" NA          
## [40286] NA           "2014-02-17" NA           "2012-11-28" NA          
## [40291] "2012-11-28" "2012-11-28" NA           NA           NA          
## [40296] "2012-11-28" "2012-11-28" NA           NA           NA          
## [40301] "2014-02-13" NA           "2011-08-17" "2011-08-17" NA          
## [40306] "2014-02-13" "2014-02-13" NA           "2014-02-13" "2011-08-17"
## [40311] "2014-02-13" "2013-12-18" "2013-12-18" "2013-12-18" "2013-12-13"
## [40316] "2013-12-13" "2013-12-16" "2013-10-28" NA           "2013-10-28"
## [40321] NA           "2011-10-21" "2013-10-28" "2013-12-13" "2013-10-20"
## [40326] "2013-12-16" "2013-10-20" "2013-10-28" "2013-12-16" "2013-10-20"
## [40331] "2013-10-20" "2011-10-21" NA           "2013-10-20" NA          
## [40336] "2013-10-28" NA           "2013-02-22" NA           NA          
## [40341] "2013-02-22" "2012-04-29" "2013-02-22" "2012-04-29" NA          
## [40346] NA           NA           NA           "2011-08-25" NA          
## [40351] NA           "2011-08-25" NA           NA           NA          
## [40356] NA           NA           NA           "2012-06-16" NA          
## [40361] NA           NA           NA           NA           NA          
## [40366] "2012-06-19" NA           NA           "2012-06-19" NA          
## [40371] NA           NA           "2012-06-16" "2012-06-16" NA          
## [40376] "2012-06-16" "2012-06-16" "2012-06-19" NA           "2012-06-19"
## [40381] "2012-06-16" NA           NA           "2012-06-19" "2012-06-19"
## [40386] NA           "2013-08-29" NA           NA           NA          
## [40391] NA           "2013-08-29" NA           "2013-08-29" "2013-08-29"
## [40396] "2013-08-29" NA           NA           NA           "2011-02-22"
## [40401] "2013-06-25" "2013-06-25" "2012-02-24" "2013-06-25" "2012-02-24"
## [40406] "2012-02-24" "2011-02-22" "2012-02-24" "2011-02-22" "2012-02-24"
## [40411] "2012-02-24" "2013-06-23" "2013-06-23" "2013-06-23" "2013-12-22"
## [40416] "2013-07-17" "2013-07-17" "2013-12-22" "2013-12-22" "2013-12-22"
## [40421] "2013-07-17" "2013-12-22" NA           NA           NA          
## [40426] "2014-02-18" NA           "2013-02-26" "2013-02-26" "2013-02-26"
## [40431] "2011-05-19" "2014-02-18" NA           "2013-02-26" "2014-02-18"
## [40436] "2011-05-19" "2011-05-19" "2014-02-18" NA           NA          
## [40441] "2013-02-26" "2012-05-13" "2011-12-18" "2012-05-13" NA          
## [40446] "2012-05-13" "2011-12-18" "2011-12-18" "2011-12-18" "2011-12-18"
## [40451] "2011-12-18" NA           NA           "2013-10-16" "2013-10-16"
## [40456] NA           NA           "2013-10-16" "2011-09-17" "2014-01-24"
## [40461] "2013-10-16" "2014-01-24" "2011-09-17" "2011-09-17" "2013-10-16"
## [40466] "2011-09-17" "2011-09-17" NA           NA           NA          
## [40471] NA           NA           NA           NA           NA          
## [40476] "2013-09-30" "2013-09-30" "2013-09-30" "2013-09-30" "2013-09-30"
## [40481] "2012-05-17" "2012-05-17" "2012-05-17" "2011-12-23" "2011-12-23"
## [40486] "2011-09-15" "2011-12-23" "2011-12-23" "2011-09-15" "2011-09-15"
## [40491] "2011-12-23" "2011-09-15" NA           "2012-04-22" NA          
## [40496] "2012-04-22" NA           "2012-04-22" "2012-04-22" "2011-03-30"
## [40501] "2013-06-18" "2013-06-18" "2012-04-22" "2013-06-18" "2011-03-30"
## [40506] "2013-11-28" "2013-11-28" "2013-11-28" "2013-11-28" "2013-11-28"
## [40511] "2011-11-29" NA           NA           NA           NA          
## [40516] "2011-05-31" "2011-05-31" "2011-11-29" "2011-04-25" "2011-04-25"
## [40521] NA           "2011-04-25" NA           "2011-08-16" NA          
## [40526] NA           "2011-08-16" NA           "2011-08-16" NA          
## [40531] NA           NA           NA           NA           "2012-04-28"
## [40536] "2011-05-22" "2011-05-22" "2011-05-22" "2011-05-22" "2012-04-28"
## [40541] NA           NA           "2011-06-24" "2011-06-24" "2011-06-24"
## [40546] "2011-05-16" "2011-05-16" "2011-05-16" "2011-06-24" "2011-05-16"
## [40551] NA           NA           NA           "2011-07-17" "2013-01-21"
## [40556] "2013-01-21" NA           NA           "2013-01-21" "2011-07-17"
## [40561] "2011-07-17" "2011-07-17" "2013-01-21" "2013-01-21" NA          
## [40566] "2011-07-17" NA           NA           NA           NA          
## [40571] NA           "2011-05-18" "2011-05-18" "2011-05-18" NA          
## [40576] NA           NA           "2011-08-28" NA           NA          
## [40581] NA           NA           "2011-08-28" NA           NA          
## [40586] "2011-06-27" "2011-06-27" "2011-11-28" NA           "2011-06-27"
## [40591] "2011-06-27" "2011-11-28" NA           "2011-06-27" NA          
## [40596] NA           "2011-11-28" NA           "2011-11-28" "2011-11-28"
## [40601] NA           "2013-04-24" NA           NA           NA          
## [40606] NA           NA           "2013-04-24" "2011-08-13" "2011-01-28"
## [40611] NA           "2011-01-28" "2011-08-13" "2011-08-13" "2013-03-27"
## [40616] "2013-03-27" NA           NA           "2013-03-27" NA          
## [40621] "2013-03-27" NA           "2013-11-19" "2013-11-19" "2013-11-19"
## [40626] "2013-11-19" "2012-01-16" NA           "2012-01-16" "2012-01-16"
## [40631] NA           "2013-08-25" NA           "2013-08-25" NA          
## [40636] "2012-01-16" "2012-01-16" "2013-08-25" NA           "2013-08-25"
## [40641] "2013-08-25" NA           "2013-08-25" NA           NA          
## [40646] NA           "2012-10-20" "2012-10-20" "2012-10-20" "2012-10-20"
## [40651] "2012-02-13" "2013-10-14" "2012-02-13" "2012-10-20" "2012-10-20"
## [40656] "2013-10-14" "2012-02-13" "2012-02-13" "2013-10-14" "2012-02-13"
## [40661] "2013-06-17" "2013-01-25" "2012-07-30" "2013-01-25" "2012-07-21"
## [40666] "2012-07-30" "2012-07-21" "2013-01-25" "2012-07-30" "2013-06-17"
## [40671] "2012-07-21" NA           NA           NA           "2012-01-24"
## [40676] "2012-01-24" NA           NA           "2012-01-24" NA          
## [40681] NA           NA           "2012-01-24" NA           NA          
## [40686] NA           NA           "2012-01-24" NA           NA          
## [40691] NA           NA           "2011-08-31" "2011-08-31" NA          
## [40696] NA           NA           NA           "2011-08-31" "2012-10-30"
## [40701] "2012-10-30" "2012-10-30" "2012-02-15" "2012-10-30" "2012-02-15"
## [40706] "2012-02-15" "2012-02-15" "2013-05-15" "2013-05-15" "2013-05-15"
## [40711] "2013-08-16" "2013-08-16" "2013-05-15" "2013-08-16" "2013-05-15"
## [40716] "2013-05-15" "2013-08-16" "2012-01-26" "2012-01-26" "2012-01-26"
## [40721] "2012-01-26" "2012-01-26" "2012-01-26" NA           NA          
## [40726] NA           NA           NA           NA           NA          
## [40731] NA           NA           NA           NA           NA          
## [40736] NA           "2012-08-21" NA           NA           NA          
## [40741] NA           "2013-01-19" "2012-08-21" NA           "2013-01-19"
## [40746] "2013-01-19" "2013-01-19" "2012-01-28" NA           NA          
## [40751] NA           "2013-01-19" NA           "2012-01-28" NA          
## [40756] "2013-01-19" NA           NA           "2014-01-16" NA          
## [40761] NA           NA           NA           "2014-01-16" "2011-04-14"
## [40766] NA           NA           "2011-03-26" NA           "2012-11-17"
## [40771] "2013-12-21" NA           NA           "2011-03-26" "2011-03-26"
## [40776] "2011-03-26" NA           NA           "2012-11-17" NA          
## [40781] "2013-12-21" NA           "2011-04-14" "2013-12-21" "2011-03-26"
## [40786] NA           "2011-03-26" "2013-12-21" NA           NA          
## [40791] "2013-12-21" "2012-10-28" "2012-10-28" "2012-10-28" NA          
## [40796] "2011-04-14" "2011-12-30" "2011-02-16" "2011-12-30" "2011-04-15"
## [40801] "2011-12-30" "2011-04-14" NA           "2011-04-15" "2011-04-14"
## [40806] "2011-02-16" "2011-12-30" "2011-04-15" "2011-02-16" "2011-08-20"
## [40811] "2011-08-20" "2011-08-20" NA           NA           NA          
## [40816] NA           NA           NA           "2012-02-16" "2013-02-25"
## [40821] "2013-02-25" "2012-02-16" "2013-02-25" "2013-02-25" "2012-02-16"
## [40826] "2013-04-25" "2013-04-25" "2013-04-25" "2013-04-25" "2013-02-25"
## [40831] "2013-04-25" "2013-06-19" "2013-06-19" "2013-06-19" "2012-08-30"
## [40836] "2012-08-30" "2012-08-30" "2012-08-30" NA           NA          
## [40841] NA           NA           NA           NA           NA          
## [40846] NA           NA           NA           "2012-06-14" "2012-06-14"
## [40851] NA           "2012-06-14" "2013-10-27" "2013-10-27" NA          
## [40856] NA           NA           NA           NA           NA          
## [40861] NA           NA           "2012-01-30" "2011-03-23" "2011-03-23"
## [40866] NA           "2012-01-30" NA           "2011-03-23" "2011-03-23"
## [40871] NA           NA           "2011-03-23" "2012-01-30" NA          
## [40876] "2012-01-30" "2011-03-23" NA           NA           "2012-01-26"
## [40881] NA           NA           "2012-01-26" "2012-01-26" "2012-01-26"
## [40886] NA           NA           "2012-01-26" NA           NA          
## [40891] "2011-04-29" "2011-04-29" NA           "2012-08-17" NA          
## [40896] NA           NA           "2012-08-17" "2011-10-31" NA          
## [40901] NA           NA           NA           NA           "2011-10-31"
## [40906] "2012-07-16" "2012-07-16" "2011-10-31" NA           "2011-09-14"
## [40911] "2011-09-14" "2011-09-14" "2011-09-14" NA           NA          
## [40916] "2011-09-14" "2013-01-15" "2011-06-25" NA           NA          
## [40921] "2013-01-15" NA           "2013-01-15" "2011-06-25" NA          
## [40926] NA           NA           NA           NA           NA          
## [40931] NA           "2011-07-15" NA           "2011-07-15" "2011-11-29"
## [40936] "2011-11-29" "2011-11-29" "2011-11-29" NA           "2011-07-15"
## [40941] NA           NA           NA           "2011-11-29" "2012-06-22"
## [40946] NA           "2013-05-26" "2013-05-26" "2013-05-26" "2013-05-26"
## [40951] NA           NA           "2013-05-26" NA           NA          
## [40956] "2012-06-22" "2013-05-26" "2012-09-14" "2012-04-18" "2012-04-18"
## [40961] "2012-04-18" NA           "2012-09-14" "2012-04-18" "2012-04-18"
## [40966] NA           "2011-06-30" "2012-09-14" "2011-06-30" NA          
## [40971] "2013-01-14" "2013-01-14" "2013-07-22" "2013-01-14" "2013-07-22"
## [40976] "2013-07-22" "2013-07-22" "2013-07-22" NA           "2012-12-31"
## [40981] "2012-12-31" NA           NA           NA           NA          
## [40986] NA           "2013-01-31" "2013-06-25" "2013-06-25" "2013-06-25"
## [40991] "2013-01-31" "2011-05-26" "2011-05-26" "2013-06-25" "2013-06-25"
## [40996] "2011-05-26" "2012-05-15" "2011-09-23" "2014-01-15" "2011-09-23"
## [41001] "2011-09-23" "2011-09-23" "2014-01-15" "2011-09-23" "2012-05-15"
## [41006] "2012-05-15" "2012-05-15" "2011-09-23" "2012-05-15" "2012-09-26"
## [41011] NA           NA           "2012-05-30" "2012-05-30" "2012-09-26"
## [41016] NA           "2012-09-26" NA           "2012-05-30" "2012-05-30"
## [41021] "2013-10-16" "2012-12-13" "2014-01-13" "2013-10-16" "2013-10-16"
## [41026] "2012-12-13" "2013-10-16" "2014-01-13" "2012-12-13" "2012-12-13"
## [41031] "2012-05-30" NA           "2012-05-30" NA           "2012-05-30"
## [41036] NA           "2012-05-30" "2012-05-30" NA           NA          
## [41041] NA           NA           NA           NA           "2011-03-27"
## [41046] NA           NA           "2011-03-27" NA           NA          
## [41051] NA           NA           "2011-03-27" NA           "2011-11-27"
## [41056] "2011-11-27" "2011-05-19" "2011-05-19" "2012-06-28" "2012-12-29"
## [41061] "2012-06-28" "2013-11-15" NA           "2013-11-15" "2012-12-29"
## [41066] NA           "2013-11-15" NA           "2012-12-29" NA          
## [41071] "2012-06-28" "2012-12-29" "2012-12-29" NA           "2012-12-29"
## [41076] "2011-05-30" "2011-05-30" "2011-05-30" "2011-12-21" "2011-05-30"
## [41081] "2011-12-21" "2011-05-30" "2011-12-21" "2011-12-21" "2011-12-29"
## [41086] "2013-06-17" "2013-06-17" NA           "2013-05-16" "2013-06-17"
## [41091] "2013-06-17" "2011-12-29" NA           "2013-06-17" "2013-05-16"
## [41096] NA           NA           "2011-07-19" "2011-07-19" NA          
## [41101] NA           "2011-07-19" NA           NA           "2011-09-13"
## [41106] NA           "2011-09-13" NA           "2011-09-13" "2011-09-13"
## [41111] NA           "2011-09-13" NA           NA           "2011-03-20"
## [41116] "2011-09-13" NA           NA           NA           "2011-03-20"
## [41121] NA           NA           "2013-02-20" "2013-10-23" "2013-10-23"
## [41126] "2013-10-23" "2013-10-23" "2013-10-23" "2013-03-13" "2013-02-20"
## [41131] "2013-03-13" "2013-03-13" NA           NA           NA          
## [41136] NA           NA           NA           NA           NA          
## [41141] "2012-08-21" NA           NA           "2012-08-21" "2012-08-21"
## [41146] NA           NA           "2012-05-24" "2011-10-18" NA          
## [41151] "2011-10-18" NA           "2012-05-24" "2012-05-24" "2012-04-14"
## [41156] "2012-04-14" NA           NA           "2012-04-14" "2012-04-14"
## [41161] NA           NA           NA           NA           NA          
## [41166] "2012-04-14" NA           NA           NA           "2012-06-23"
## [41171] "2012-06-23" NA           NA           NA           "2013-11-20"
## [41176] "2013-11-20" "2013-11-20" NA           "2012-06-25" "2013-04-18"
## [41181] NA           NA           NA           NA           "2012-06-25"
## [41186] "2012-05-22" "2012-06-25" "2013-04-18" "2012-03-21" "2013-04-24"
## [41191] "2013-04-18" "2012-06-25" "2013-04-24" "2012-06-25" "2013-04-24"
## [41196] "2012-06-25" "2012-03-21" "2012-05-22" "2013-08-28" NA          
## [41201] NA           "2013-08-28" NA           "2013-08-28" NA          
## [41206] NA           NA           NA           "2013-08-28" "2013-08-28"
## [41211] "2012-08-20" "2012-08-20" "2011-02-18" "2011-02-18" "2013-01-23"
## [41216] "2013-01-23" "2012-02-16" "2012-02-16" NA           "2012-02-16"
## [41221] NA           NA           "2013-01-23" "2013-01-23" NA          
## [41226] "2012-02-16" NA           "2012-02-16" "2013-01-23" NA          
## [41231] NA           "2012-08-15" "2012-08-15" "2012-08-16" "2012-08-15"
## [41236] "2012-08-16" "2012-08-15" "2012-08-16" "2012-08-16" "2012-08-16"
## [41241] "2012-08-15" "2012-08-16" "2012-08-16" NA           NA          
## [41246] NA           "2012-12-31" "2011-04-27" "2011-04-27" "2012-12-31"
## [41251] "2013-03-19" "2011-04-27" "2013-03-19" "2011-04-27" "2011-04-27"
## [41256] "2011-01-30" "2011-01-30" NA           "2013-09-27" "2013-09-27"
## [41261] NA           "2012-02-18" "2012-02-18" NA           NA          
## [41266] "2013-04-21" "2013-04-21" "2011-08-23" "2011-08-23" "2011-08-23"
## [41271] "2013-04-21" "2011-08-23" "2013-04-21" "2013-04-21" "2011-08-23"
## [41276] "2013-04-21" "2013-04-21" "2012-11-23" "2012-10-19" "2012-10-19"
## [41281] "2012-11-23" "2012-10-19" "2012-11-23" "2012-11-23" "2012-11-23"
## [41286] "2012-09-28" NA           NA           NA           NA          
## [41291] NA           NA           "2012-09-28" NA           NA          
## [41296] "2011-07-19" "2011-07-15" "2011-07-19" "2011-07-19" "2013-05-24"
## [41301] "2013-05-24" "2013-07-20" "2013-05-24" "2013-07-20" "2013-11-30"
## [41306] "2013-05-24" "2011-07-15" "2013-07-20" "2013-07-20" "2011-07-15"
## [41311] "2013-05-24" "2013-11-30" "2011-07-15" "2013-07-20" "2011-07-15"
## [41316] "2011-07-19" "2011-07-19" NA           NA           NA          
## [41321] "2014-02-18" "2014-02-18" "2014-02-18" "2014-02-18" NA          
## [41326] NA           NA           "2012-10-20" "2011-09-25" "2012-10-20"
## [41331] "2012-10-17" "2011-09-25" "2012-10-17" "2012-10-17" "2012-10-20"
## [41336] "2012-10-20" "2012-10-17" "2012-10-13" "2012-10-13" "2012-10-13"
## [41341] "2012-10-13" "2012-07-18" "2013-12-31" "2013-12-31" NA          
## [41346] "2013-12-31" "2012-03-26" "2012-07-18" NA           NA          
## [41351] NA           "2012-07-16" "2013-08-14" "2012-03-26" "2012-07-16"
## [41356] "2013-08-14" "2012-07-18" "2012-07-16" NA           "2012-12-21"
## [41361] "2012-09-13" "2011-09-17" "2011-09-17" "2012-09-13" "2012-09-13"
## [41366] "2012-05-30" "2012-05-30" "2011-09-17" "2012-12-21" "2011-09-17"
## [41371] "2011-09-17" NA           NA           NA           "2013-08-16"
## [41376] NA           NA           "2013-08-16" "2013-08-16" "2013-08-16"
## [41381] NA           "2013-08-16" NA           "2013-08-16" NA          
## [41386] "2011-05-20" "2011-04-14" "2011-05-20" "2011-04-14" NA          
## [41391] NA           NA           NA           NA           NA          
## [41396] NA           NA           "2012-03-31" "2012-03-31" "2012-03-31"
## [41401] "2011-05-22" NA           "2011-05-22" NA           "2011-07-16"
## [41406] NA           "2011-05-22" "2011-05-22" "2011-07-16" "2011-07-16"
## [41411] NA           NA           NA           NA           "2012-12-23"
## [41416] "2013-10-31" NA           "2013-10-31" "2012-12-23" "2012-12-23"
## [41421] "2012-12-23" NA           "2013-10-31" "2012-12-23" "2014-01-31"
## [41426] NA           "2014-01-31" NA           NA           NA          
## [41431] "2011-07-27" NA           "2014-01-31" NA           "2011-07-27"
## [41436] NA           NA           NA           NA           "2014-01-31"
## [41441] NA           "2012-04-13" "2013-01-21" "2013-01-17" NA          
## [41446] NA           "2013-01-21" "2013-01-21" "2012-04-13" "2013-01-17"
## [41451] NA           "2012-04-13" "2013-09-30" "2013-05-30" "2012-07-29"
## [41456] "2013-09-30" "2013-05-30" "2013-05-30" "2012-07-29" "2013-05-30"
## [41461] "2013-05-30" "2012-07-29" "2013-05-30" "2011-03-21" "2011-03-21"
## [41466] "2013-04-16" "2013-04-16" "2013-11-22" "2013-11-22" "2013-11-22"
## [41471] "2011-11-22" "2011-11-22" "2011-11-22" "2011-11-22" "2011-11-22"
## [41476] NA           NA           "2014-01-14" NA           NA          
## [41481] NA           NA           NA           "2011-05-16" "2014-01-14"
## [41486] NA           "2011-05-16" NA           NA           NA          
## [41491] NA           "2011-04-24" NA           "2011-04-24" "2011-04-24"
## [41496] "2011-04-24" "2011-04-24" "2012-09-25" "2012-09-25" "2012-09-25"
## [41501] NA           NA           NA           NA           NA          
## [41506] NA           "2013-09-15" NA           NA           "2013-09-15"
## [41511] NA           "2013-08-28" "2013-09-15" "2013-08-28" "2013-09-15"
## [41516] "2013-08-28" "2013-09-15" "2013-08-28" "2013-08-28" "2013-08-28"
## [41521] "2012-02-29" "2012-05-22" "2012-05-22" "2012-05-22" "2012-05-22"
## [41526] "2012-05-22" "2012-02-29" NA           NA           NA          
## [41531] NA           NA           NA           NA           "2011-06-22"
## [41536] "2011-06-22" NA           NA           NA           "2013-06-20"
## [41541] "2013-06-20" "2013-06-20" NA           "2013-06-20" NA          
## [41546] "2013-06-20" NA           "2011-08-28" "2011-08-28" "2011-08-28"
## [41551] "2012-09-27" NA           "2012-09-27" NA           "2011-08-22"
## [41556] "2012-09-27" "2012-09-27" NA           "2012-09-27" NA          
## [41561] "2011-08-22" "2011-04-18" "2011-08-28" "2011-04-18" NA          
## [41566] NA           NA           NA           "2013-09-27" "2013-09-27"
## [41571] NA           NA           NA           NA           NA          
## [41576] NA           "2013-09-27" NA           "2013-09-27" NA          
## [41581] NA           "2013-03-28" "2013-03-28" "2013-03-28" "2013-03-28"
## [41586] "2013-03-28" "2011-02-22" "2011-02-22" "2011-02-22" "2014-01-13"
## [41591] "2013-04-19" "2011-02-22" "2013-04-19" "2014-01-13" "2011-02-22"
## [41596] "2014-01-13" "2013-04-19" "2013-04-19" "2013-04-19" NA          
## [41601] "2014-01-24" NA           NA           "2014-01-24" "2011-06-19"
## [41606] NA           "2011-06-19" NA           NA           NA          
## [41611] NA           NA           NA           NA           NA          
## [41616] "2013-10-30" "2013-10-30" NA           NA           NA          
## [41621] NA           NA           NA           NA           NA          
## [41626] "2011-12-16" "2011-12-16" "2013-01-19" "2012-07-15" "2013-01-19"
## [41631] "2012-07-15" "2012-07-15" "2013-01-19" "2011-07-17" "2011-07-17"
## [41636] "2011-07-17" "2011-04-14" "2011-04-14" "2011-04-14" "2012-04-17"
## [41641] "2012-04-17" "2012-09-30" NA           "2012-09-30" NA          
## [41646] "2012-04-17" "2012-04-17" "2012-09-30" "2012-04-17" NA          
## [41651] NA           NA           NA           "2012-03-23" NA          
## [41656] NA           "2012-03-23" NA           "2013-09-15" NA          
## [41661] NA           NA           NA           "2013-09-15" NA          
## [41666] "2014-01-15" NA           NA           NA           NA          
## [41671] "2014-01-15" "2013-03-31" NA           NA           "2011-10-20"
## [41676] "2011-10-20" "2011-10-20" "2013-03-31" NA           "2011-10-20"
## [41681] NA           "2014-01-15" "2011-10-20" NA           "2012-05-18"
## [41686] "2012-05-18" "2011-07-30" "2012-05-18" "2011-07-30" "2012-10-13"
## [41691] "2012-10-13" NA           NA           "2011-11-24" "2011-11-24"
## [41696] "2011-11-24" "2013-04-15" NA           "2013-04-15" "2013-04-15"
## [41701] "2013-04-15" "2013-04-15" NA           "2012-12-17" "2011-03-29"
## [41706] "2012-12-17" "2012-12-17" "2011-03-22" "2011-03-29" "2011-03-29"
## [41711] "2012-12-17" "2011-03-22" "2011-03-22" "2012-12-17" "2012-12-17"
## [41716] "2012-05-16" NA           "2012-05-16" "2013-03-15" "2012-05-16"
## [41721] NA           "2013-03-15" NA           "2011-09-22" NA          
## [41726] NA           "2011-09-22" "2012-05-16" "2013-03-23" "2013-03-23"
## [41731] "2011-09-22" "2012-05-16" NA           "2012-01-13" NA          
## [41736] "2012-01-13" "2012-03-21" "2013-08-23" "2013-08-23" "2013-08-23"
## [41741] NA           NA           "2012-11-13" NA           "2013-08-23"
## [41746] "2012-03-21" NA           "2012-11-13" "2012-11-13" "2012-03-21"
## [41751] NA           "2012-03-21" NA           NA           "2012-03-21"
## [41756] NA           NA           NA           NA           NA          
## [41761] NA           NA           NA           NA           NA          
## [41766] NA           NA           NA           NA           NA          
## [41771] NA           "2013-09-28" "2013-12-31" "2013-12-31" "2013-12-31"
## [41776] "2013-12-31" "2013-12-31" "2012-05-29" "2012-05-29" "2012-05-29"
## [41781] "2013-09-28" "2011-12-31" "2013-09-28" "2011-12-31" "2012-05-29"
## [41786] "2013-09-28" NA           NA           NA           NA          
## [41791] NA           NA           NA           NA           NA          
## [41796] "2013-11-19" NA           NA           "2013-11-19" "2013-11-19"
## [41801] "2013-11-19" "2013-11-19" NA           NA           NA          
## [41806] NA           NA           NA           NA           "2014-01-14"
## [41811] "2011-02-14" "2011-02-14" "2011-02-14" "2011-02-14" NA          
## [41816] NA           NA           NA           "2014-01-14" NA          
## [41821] NA           NA           "2014-01-14" "2011-02-14" NA          
## [41826] "2011-09-28" NA           NA           "2014-01-22" "2011-09-28"
## [41831] "2011-09-28" "2011-09-28" NA           "2014-01-22" "2014-01-22"
## [41836] NA           NA           "2011-09-28" "2014-01-14" "2014-01-14"
## [41841] "2014-01-14" NA           NA           NA           NA          
## [41846] NA           "2012-09-17" NA           "2012-09-17" NA          
## [41851] "2012-09-17" NA           "2012-09-17" "2012-09-17" NA          
## [41856] "2012-07-16" "2012-07-16" "2012-07-16" "2012-07-16" "2012-07-16"
## [41861] "2012-10-15" NA           "2012-10-15" "2012-10-15" "2012-10-15"
## [41866] NA           NA           "2012-10-15" NA           NA          
## [41871] NA           "2011-11-19" "2011-11-19" "2011-11-19" NA          
## [41876] "2011-11-19" "2011-11-19" NA           NA           NA          
## [41881] "2011-04-28" "2011-04-28" "2011-04-28" "2011-02-13" "2011-10-14"
## [41886] "2011-02-13" "2011-04-28" "2013-04-22" "2011-02-13" "2013-04-30"
## [41891] "2011-12-27" "2011-02-13" "2011-02-13" "2011-04-28" "2011-02-13"
## [41896] "2013-04-30" "2011-12-27" "2013-04-30" "2013-04-22" "2013-04-22"
## [41901] "2011-10-14" NA           NA           NA           NA          
## [41906] NA           NA           NA           NA           NA          
## [41911] NA           NA           NA           NA           NA          
## [41916] "2013-02-27" "2013-02-27" "2013-06-27" "2013-06-27" NA          
## [41921] NA           NA           NA           "2013-08-16" NA          
## [41926] "2013-08-13" "2013-08-16" "2013-08-16" "2013-08-13" NA          
## [41931] "2013-08-13" NA           NA           NA           "2013-11-13"
## [41936] "2013-11-13" NA           NA           "2013-11-13" "2013-11-13"
## [41941] "2013-11-13" NA           NA           "2013-11-13" NA          
## [41946] NA           NA           NA           NA           "2011-05-24"
## [41951] "2011-05-24" "2011-05-24" "2011-05-24" "2011-05-24" NA          
## [41956] NA           NA           NA           "2011-12-21" "2011-12-21"
## [41961] "2011-12-21" "2011-12-21" NA           NA           NA          
## [41966] "2011-12-21" NA           NA           NA           "2011-10-25"
## [41971] "2011-10-25" "2011-10-25" "2012-04-28" "2012-04-28" "2011-10-25"
## [41976] "2012-04-28" "2011-10-25" "2012-04-28" "2013-03-14" "2013-03-14"
## [41981] "2013-03-14" "2013-03-14" "2013-02-18" NA           "2013-02-18"
## [41986] NA           "2013-02-16" NA           "2013-02-16" NA          
## [41991] "2011-09-19" NA           NA           NA           "2011-09-19"
## [41996] NA           NA           "2013-08-21" "2013-08-21" NA          
## [42001] "2013-08-21" "2013-08-21" "2013-08-21" "2013-10-29" "2013-10-29"
## [42006] "2013-10-29" "2013-10-29" "2012-02-21" "2012-02-21" "2012-02-29"
## [42011] "2013-03-15" "2012-07-30" "2012-02-21" "2012-07-30" "2013-03-15"
## [42016] "2012-02-29" "2013-10-29" "2013-03-15" "2013-11-23" "2012-07-30"
## [42021] "2012-02-29" "2013-11-23" "2013-11-23" "2013-11-23" "2013-11-23"
## [42026] "2012-07-30" "2012-04-30" "2013-05-18" "2013-05-18" "2013-05-18"
## [42031] "2012-04-30" "2011-05-15" NA           NA           NA          
## [42036] "2011-05-15" NA           NA           "2011-05-15" NA          
## [42041] "2011-05-15" NA           "2011-05-15" "2011-05-15" NA          
## [42046] "2013-06-19" "2011-12-29" NA           NA           "2013-06-19"
## [42051] NA           "2013-06-19" NA           "2011-12-29" "2011-12-29"
## [42056] "2013-06-19" "2013-06-19" "2011-12-29" NA           "2011-12-29"
## [42061] "2013-06-19" NA           NA           "2011-11-17" NA          
## [42066] "2011-11-17" "2011-11-17" "2011-08-14" NA           "2011-08-14"
## [42071] "2011-11-17" NA           NA           "2011-11-17" "2012-11-18"
## [42076] NA           NA           NA           NA           NA          
## [42081] NA           NA           "2013-04-19" "2012-11-18" NA          
## [42086] "2012-11-18" "2012-11-18" "2013-04-19" NA           "2013-04-19"
## [42091] "2013-04-19" "2012-11-18" NA           NA           NA          
## [42096] NA           NA           NA           "2011-04-15" "2011-04-15"
## [42101] "2011-04-15" NA           NA           NA           NA          
## [42106] "2011-04-15" NA           "2012-01-22" "2012-01-22" "2012-01-22"
## [42111] "2011-11-29" "2011-11-29" NA           NA           NA          
## [42116] "2011-11-29" "2013-06-21" NA           "2013-05-17" "2013-06-21"
## [42121] "2013-06-21" "2013-05-17" "2013-06-16" "2013-06-21" "2013-05-17"
## [42126] "2013-06-16" "2013-06-16" "2013-05-17" NA           NA          
## [42131] "2013-05-17" "2013-06-16" "2013-11-27" "2011-10-21" "2011-10-21"
## [42136] "2013-11-27" "2013-11-27" "2013-11-27" "2013-11-27" "2011-09-15"
## [42141] "2011-09-15" NA           "2012-07-23" "2012-07-23" NA          
## [42146] "2012-07-23" "2012-07-23" NA           "2012-07-23" "2014-01-14"
## [42151] "2014-01-14" "2013-02-20" NA           "2013-02-20" NA          
## [42156] NA           NA           NA           NA           "2013-02-20"
## [42161] NA           NA           "2013-02-20" NA           NA          
## [42166] "2012-05-30" NA           "2012-05-30" "2012-05-30" "2012-02-26"
## [42171] "2012-02-26" NA           "2014-01-28" NA           "2014-01-28"
## [42176] "2012-09-27" "2012-09-27" NA           NA           NA          
## [42181] NA           NA           "2014-01-20" "2014-01-20" "2013-12-31"
## [42186] "2011-08-17" NA           "2011-08-17" "2013-12-31" "2011-08-17"
## [42191] "2013-12-31" NA           "2013-12-31" NA           "2013-12-31"
## [42196] "2011-08-17" NA           "2011-03-27" NA           "2011-03-27"
## [42201] NA           NA           "2012-11-19" "2012-11-19" "2012-11-19"
## [42206] "2011-07-15" "2011-07-15" "2011-07-15" NA           "2011-04-21"
## [42211] "2011-04-21" "2013-05-27" "2011-04-21" "2013-05-27" NA          
## [42216] NA           NA           "2011-04-21" "2011-04-21" NA          
## [42221] "2012-12-20" "2012-12-20" "2012-12-20" "2012-12-20" "2012-12-20"
## [42226] "2012-12-29" NA           "2012-12-29" "2012-12-29" NA          
## [42231] NA           NA           "2012-10-18" "2011-12-19" "2012-10-23"
## [42236] "2013-05-30" NA           "2012-10-23" "2011-12-19" "2011-12-19"
## [42241] "2011-12-19" "2013-05-30" "2011-12-19" "2011-12-19" "2012-10-18"
## [42246] NA           "2011-12-19" "2011-12-19" "2011-12-19" NA          
## [42251] NA           "2013-05-30" NA           NA           NA          
## [42256] "2011-12-19" NA           NA           NA           "2012-07-27"
## [42261] "2012-07-27" NA           "2012-07-27" "2012-07-27" "2012-07-27"
## [42266] NA           NA           "2012-05-28" NA           NA          
## [42271] NA           "2012-05-27" "2012-05-28" "2012-05-28" "2012-05-23"
## [42276] "2012-05-27" "2012-05-23" "2012-05-23" "2012-05-27" "2013-02-23"
## [42281] "2013-02-23" NA           "2013-02-23" NA           NA          
## [42286] "2011-04-20" "2012-03-31" "2011-04-20" "2013-04-26" NA          
## [42291] "2011-04-20" "2014-01-29" NA           "2014-01-29" NA          
## [42296] NA           NA           "2013-04-26" NA           "2012-03-31"
## [42301] "2014-01-29" NA           NA           "2012-03-31" "2014-01-29"
## [42306] "2012-03-31" "2014-01-29" "2012-03-31" "2012-04-16" "2012-04-16"
## [42311] "2012-09-18" "2012-04-16" "2012-04-16" "2012-09-18" "2012-04-16"
## [42316] "2012-09-18" "2012-09-18" "2012-09-18" "2011-05-24" "2011-05-24"
## [42321] "2011-05-24" "2011-05-24" "2011-10-21" "2011-05-24" "2011-10-21"
## [42326] "2011-05-24" NA           NA           NA           NA          
## [42331] NA           "2011-06-21" "2012-09-23" "2011-06-21" "2011-06-21"
## [42336] "2012-09-23" "2011-12-26" "2011-12-26" "2013-10-20" "2013-10-20"
## [42341] "2013-10-20" NA           NA           NA           NA          
## [42346] NA           NA           "2012-11-23" "2012-11-23" "2013-09-28"
## [42351] "2013-09-28" "2012-11-23" "2012-11-23" "2012-11-23" "2013-09-28"
## [42356] "2012-09-14" NA           "2012-09-14" NA           "2012-09-14"
## [42361] "2012-09-14" "2011-04-24" NA           NA           "2012-09-14"
## [42366] "2011-04-24" NA           NA           "2011-04-24" "2011-02-20"
## [42371] "2011-02-20" "2013-11-17" "2013-11-17" NA           NA          
## [42376] NA           "2013-06-21" "2013-10-27" "2013-11-17" "2013-06-21"
## [42381] NA           "2013-10-27" NA           "2013-06-21" "2013-06-21"
## [42386] "2013-10-27" NA           NA           NA           NA          
## [42391] NA           "2013-10-31" "2013-10-31" NA           NA          
## [42396] "2013-10-31" NA           NA           "2013-10-31" NA          
## [42401] NA           "2013-10-24" "2013-10-31" "2013-10-31" "2013-10-24"
## [42406] NA           "2012-04-27" "2012-04-27" NA           NA          
## [42411] NA           NA           NA           NA           NA          
## [42416] "2012-04-27" NA           NA           NA           NA          
## [42421] NA           NA           "2013-08-25" "2013-04-27" "2013-04-27"
## [42426] "2013-04-27" "2013-08-25" "2013-08-25" NA           NA          
## [42431] NA           NA           NA           "2013-08-25" NA          
## [42436] NA           NA           NA           NA           NA          
## [42441] "2012-01-15" NA           "2012-01-15" NA           NA          
## [42446] NA           NA           "2012-01-15" NA           NA          
## [42451] NA           "2011-06-19" "2011-06-19" NA           NA          
## [42456] NA           "2013-02-19" "2013-02-19" "2013-02-19" "2011-11-16"
## [42461] "2013-02-19" "2013-02-19" "2013-02-17" "2013-02-17" "2011-02-19"
## [42466] "2011-02-19" "2011-11-16" NA           "2013-07-23" NA          
## [42471] NA           NA           NA           NA           "2013-07-23"
## [42476] "2013-07-23" NA           "2013-07-23" NA           NA          
## [42481] "2013-07-23" NA           NA           NA           NA          
## [42486] NA           NA           NA           NA           "2011-06-30"
## [42491] NA           "2011-06-30" NA           "2011-06-30" NA          
## [42496] NA           NA           NA           "2012-12-29" "2012-12-29"
## [42501] "2011-03-15" "2012-12-29" "2011-03-15" "2012-12-29" "2012-12-29"
## [42506] "2011-08-14" "2011-08-14" "2011-03-15" "2012-03-31" "2012-03-31"
## [42511] NA           NA           NA           NA           NA          
## [42516] "2012-02-13" NA           NA           NA           "2013-06-27"
## [42521] "2012-02-13" "2012-03-31" "2013-06-27" NA           "2012-03-31"
## [42526] NA           "2012-03-31" "2013-03-14" "2013-03-14" "2013-03-14"
## [42531] "2013-03-14" "2013-03-14" "2013-03-14" "2012-06-23" NA          
## [42536] "2012-06-23" NA           "2012-06-23" NA           "2011-09-19"
## [42541] "2011-09-19" NA           "2011-09-19" "2013-09-16" "2012-09-30"
## [42546] NA           "2012-09-30" NA           "2013-09-16" "2012-09-30"
## [42551] "2012-09-30" "2012-09-30" "2013-09-16" NA           NA          
## [42556] NA           NA           NA           "2012-01-27" "2012-01-27"
## [42561] "2012-01-27" NA           "2012-01-27" "2013-09-22" "2013-01-25"
## [42566] "2013-01-25" "2013-01-25" "2013-09-22" "2013-01-25" "2013-09-22"
## [42571] "2013-01-25" "2013-09-22" "2013-09-22" "2013-10-26" NA          
## [42576] NA           "2013-10-26" NA           "2013-10-26" "2013-10-26"
## [42581] "2013-10-26" "2011-05-24" "2011-05-24" "2011-05-24" "2011-05-24"
## [42586] NA           NA           NA           NA           NA          
## [42591] NA           "2012-11-30" "2012-11-30" "2012-11-30" "2012-11-30"
## [42596] "2012-11-30" "2013-07-18" "2011-03-20" "2013-11-16" "2011-03-20"
## [42601] "2013-11-16" "2013-11-16" "2013-07-18" "2013-11-16" "2011-03-20"
## [42606] "2013-11-16" "2011-03-20" NA           NA           NA          
## [42611] "2012-06-28" "2012-05-20" NA           NA           NA          
## [42616] NA           NA           NA           NA           "2012-06-28"
## [42621] NA           NA           "2012-05-20" "2012-06-28" NA          
## [42626] NA           NA           NA           "2011-12-22" "2014-02-16"
## [42631] "2014-02-16" "2011-12-22" "2013-02-18" NA           "2011-12-22"
## [42636] "2011-12-22" "2011-12-22" "2013-02-18" NA           "2011-12-22"
## [42641] "2014-02-16" NA           "2014-01-14" NA           "2013-04-26"
## [42646] NA           NA           NA           "2014-01-14" "2014-01-14"
## [42651] NA           NA           "2013-04-26" "2013-04-26" "2013-07-28"
## [42656] NA           "2013-07-28" NA           NA           "2013-07-28"
## [42661] NA           "2011-05-24" "2011-05-24" "2011-05-24" "2013-12-19"
## [42666] NA           NA           NA           "2013-12-19" NA          
## [42671] NA           "2013-12-19" "2012-02-26" NA           NA          
## [42676] "2012-02-26" "2012-02-26" "2012-02-26" "2012-02-26" NA          
## [42681] NA           NA           NA           NA           "2011-03-18"
## [42686] "2011-03-18" NA           "2011-03-26" NA           "2011-03-26"
## [42691] NA           NA           "2011-07-17" "2011-03-26" "2011-07-17"
## [42696] "2011-03-26" "2011-07-17" NA           "2011-03-26" "2013-11-18"
## [42701] NA           "2013-11-18" NA           "2013-11-18" "2013-05-22"
## [42706] "2013-05-22" NA           NA           NA           NA          
## [42711] NA           NA           NA           "2012-05-27" "2012-05-27"
## [42716] "2013-05-22" "2013-05-22" "2013-05-19" "2013-05-19" "2013-05-22"
## [42721] "2013-05-19" "2013-05-19" "2013-05-19" "2014-02-20" "2014-02-20"
## [42726] "2013-05-22" "2013-05-22" "2012-12-21" "2012-12-21" "2012-10-24"
## [42731] "2013-12-27" "2012-03-15" NA           NA           "2013-12-27"
## [42736] "2012-10-24" NA           NA           NA           "2013-12-27"
## [42741] NA           NA           NA           NA           "2012-03-15"
## [42746] NA           "2013-12-27" NA           "2013-12-27" NA          
## [42751] "2011-08-28" "2011-08-28" "2011-08-28" NA           "2011-08-28"
## [42756] "2011-08-28" NA           "2011-12-22" "2011-12-22" "2011-12-22"
## [42761] NA           "2011-12-22" "2011-12-22" NA           NA          
## [42766] "2013-04-16" "2013-04-16" "2013-04-16" NA           "2011-07-28"
## [42771] NA           "2011-07-28" "2013-04-16" "2013-04-16" "2013-08-26"
## [42776] "2012-03-21" "2012-03-21" "2012-03-21" "2014-01-15" "2013-08-26"
## [42781] "2012-03-21" "2012-03-21" "2014-01-15" "2012-03-21" NA          
## [42786] "2013-06-27" "2013-09-22" "2013-06-27" NA           NA          
## [42791] "2013-09-22" NA           "2013-06-27" "2013-01-27" "2013-09-22"
## [42796] NA           "2013-06-27" "2013-01-27" "2013-06-27" "2013-01-27"
## [42801] "2013-01-27" NA           "2013-07-31" "2013-07-31" NA          
## [42806] NA           NA           NA           NA           "2011-03-17"
## [42811] "2011-03-17" "2011-03-17" "2011-03-17" "2011-03-17" "2011-03-17"
## [42816] "2011-08-28" "2011-08-28" "2011-08-28" "2012-09-17" "2012-09-17"
## [42821] "2011-08-28" "2012-09-17" "2011-08-28" NA           NA          
## [42826] NA           NA           NA           NA           NA          
## [42831] NA           NA           NA           NA           NA          
## [42836] NA           NA           NA           NA           NA          
## [42841] NA           "2011-07-23" NA           NA           "2013-08-18"
## [42846] NA           "2013-08-13" NA           "2013-08-18" "2011-07-23"
## [42851] NA           "2011-06-21" "2013-08-13" "2011-07-23" "2011-06-21"
## [42856] NA           "2011-06-21" NA           NA           "2011-06-21"
## [42861] NA           "2013-08-13" NA           NA           "2011-06-21"
## [42866] "2013-08-18" "2011-09-14" "2011-03-13" "2011-09-14" "2011-03-13"
## [42871] "2011-03-13" "2013-01-23" "2013-01-23" "2013-01-30" "2013-01-30"
## [42876] "2013-01-23" "2013-01-30" "2011-03-14" "2011-03-14" "2011-03-14"
## [42881] "2011-03-14" "2013-09-29" NA           "2013-09-29" NA          
## [42886] "2011-03-14" NA           "2013-08-30" NA           "2013-08-30"
## [42891] "2013-08-30" "2013-08-30" "2013-08-30" NA           NA          
## [42896] NA           NA           NA           "2012-04-22" "2012-04-24"
## [42901] "2012-04-22" "2012-04-24" "2012-04-22" "2012-04-24" "2012-04-22"
## [42906] "2012-04-22" "2012-04-24" "2012-04-24" NA           NA          
## [42911] NA           NA           "2014-01-13" "2012-11-27" NA          
## [42916] "2012-11-29" "2012-11-27" "2012-11-29" "2014-01-13" "2012-11-27"
## [42921] "2012-11-29" NA           "2011-03-21" "2011-03-21" "2011-03-21"
## [42926] "2013-12-14" NA           NA           "2013-12-14" NA          
## [42931] "2013-12-14" "2012-10-24" "2012-10-24" "2011-07-30" "2011-07-30"
## [42936] "2011-07-30" "2011-07-30" "2011-07-30" "2013-03-19" "2013-03-19"
## [42941] NA           NA           NA           NA           "2013-01-20"
## [42946] "2013-01-20" "2011-09-20" "2013-01-20" NA           "2011-09-20"
## [42951] "2013-01-20" "2013-01-20" "2013-01-20" NA           "2011-09-20"
## [42956] NA           NA           NA           "2012-05-21" NA          
## [42961] "2012-05-21" NA           "2012-05-21" NA           "2012-04-23"
## [42966] "2012-10-15" "2012-04-23" "2012-04-23" NA           "2012-10-15"
## [42971] "2012-04-23" "2012-10-15" "2011-10-17" "2011-10-17" "2012-09-14"
## [42976] "2013-01-17" "2012-09-14" NA           NA           NA          
## [42981] NA           NA           NA           "2011-07-28" "2011-07-28"
## [42986] "2011-07-28" NA           "2011-07-28" "2012-09-14" NA          
## [42991] NA           NA           "2013-06-22" "2013-06-22" NA          
## [42996] "2013-06-22" NA           "2013-01-17" "2013-06-22" "2013-06-22"
## [43001] "2013-08-23" NA           "2013-08-23" "2013-08-23" NA          
## [43006] "2013-08-23" "2013-08-23" "2012-02-29" "2013-09-23" "2012-02-29"
## [43011] "2012-02-29" "2011-06-15" "2011-06-15" "2013-09-23" "2013-09-23"
## [43016] NA           NA           NA           NA           NA          
## [43021] NA           "2012-08-31" NA           "2012-08-31" "2013-10-24"
## [43026] "2013-10-24" "2013-10-24" "2013-10-24" "2013-10-24" NA          
## [43031] "2012-08-31" NA           NA           NA           NA          
## [43036] NA           NA           NA           "2012-01-14" "2012-01-14"
## [43041] "2012-01-14" "2012-01-14" "2012-01-14" NA           NA          
## [43046] NA           NA           "2012-01-14" NA           "2013-01-21"
## [43051] "2013-01-22" "2013-01-21" "2013-01-21" "2013-01-22" NA          
## [43056] "2013-01-21" "2013-01-22" NA           "2013-01-21" "2013-01-22"
## [43061] "2013-05-30" NA           "2013-05-30" NA           "2011-07-23"
## [43066] "2013-05-30" "2013-05-30" "2011-07-23" "2011-07-23" "2013-05-30"
## [43071] "2013-11-17" "2013-11-17" NA           NA           NA          
## [43076] NA           NA           NA           NA           NA          
## [43081] NA           "2011-03-23" "2011-03-23" "2013-10-13" NA          
## [43086] NA           NA           "2011-03-23" "2013-10-13" "2013-02-23"
## [43091] "2013-02-23" "2013-02-23" "2012-06-27" "2012-06-27" "2012-06-27"
## [43096] NA           "2012-10-28" NA           "2012-10-28" "2013-07-31"
## [43101] NA           "2012-10-28" "2012-10-28" "2013-08-22" NA          
## [43106] NA           NA           "2012-10-28" NA           "2012-10-28"
## [43111] NA           "2013-08-22" "2013-07-31" NA           "2013-05-28"
## [43116] "2013-05-28" "2013-05-28" "2011-12-17" "2011-12-17" "2011-12-17"
## [43121] "2011-12-17" "2011-12-17" "2011-12-17" "2013-04-13" "2013-04-13"
## [43126] "2013-11-22" "2013-04-13" "2013-04-13" "2013-11-22" "2013-04-13"
## [43131] "2012-01-19" "2012-01-19" "2013-04-13" "2012-01-19" "2012-01-19"
## [43136] "2012-01-19" "2013-11-22" "2012-10-23" "2012-10-23" "2012-10-23"
## [43141] "2012-06-14" "2012-06-14" NA           "2012-06-14" NA          
## [43146] "2012-06-14" NA           NA           NA           "2012-06-14"
## [43151] NA           NA           NA           NA           "2013-01-30"
## [43156] NA           "2013-01-30" "2012-10-29" "2013-01-30" "2013-03-21"
## [43161] "2013-08-28" "2013-03-21" NA           "2012-10-29" "2013-03-21"
## [43166] "2013-08-28" "2012-10-29" NA           NA           NA          
## [43171] NA           NA           NA           NA           "2013-10-23"
## [43176] "2013-10-23" "2013-10-23" NA           "2013-12-13" NA          
## [43181] "2013-12-13" NA           "2013-10-23" "2013-12-13" NA          
## [43186] "2012-05-13" "2011-02-20" "2012-05-13" "2012-05-13" "2012-05-13"
## [43191] "2012-05-13" "2011-02-20" "2011-02-20" NA           "2011-02-20"
## [43196] NA           "2011-02-20" "2011-10-28" "2011-10-28" NA          
## [43201] "2013-12-25" "2012-09-26" "2012-09-26" "2013-12-25" NA          
## [43206] NA           NA           "2012-02-16" "2012-09-26" "2012-02-16"
## [43211] "2012-09-26" "2012-09-26" "2012-02-16" "2012-09-26" NA          
## [43216] "2012-11-28" "2012-11-25" "2012-11-28" "2012-11-25" "2012-11-25"
## [43221] "2012-11-28" "2012-11-25" "2012-11-25" "2012-11-28" "2012-11-28"
## [43226] "2013-07-31" "2013-07-31" NA           "2013-07-31" "2011-05-14"
## [43231] "2011-05-14" NA           "2013-05-18" "2013-05-18" "2013-05-18"
## [43236] NA           "2012-06-28" "2013-12-18" "2013-12-18" NA          
## [43241] NA           NA           "2012-06-28" NA           "2012-06-28"
## [43246] NA           "2012-07-29" NA           NA           NA          
## [43251] "2013-11-23" "2013-11-23" "2013-11-23" "2012-07-29" "2013-11-23"
## [43256] "2013-11-23" "2012-07-29" "2012-07-29" NA           NA          
## [43261] "2012-11-29" "2012-11-29" "2012-11-29" "2011-10-23" "2011-10-23"
## [43266] "2011-10-23" "2011-10-23" "2011-10-23" NA           "2013-03-13"
## [43271] NA           "2013-03-13" NA           NA           NA          
## [43276] "2013-03-13" "2013-03-13" NA           "2012-02-14" "2013-03-13"
## [43281] NA           "2011-01-30" "2012-02-14" NA           "2012-02-14"
## [43286] "2013-03-13" "2011-01-30" "2011-01-30" "2011-01-30" "2011-01-30"
## [43291] "2011-02-18" "2012-01-25" "2012-01-25" "2011-02-18" "2011-02-18"
## [43296] NA           "2011-02-18" "2012-01-25" "2011-02-18" "2012-01-25"
## [43301] NA           NA           "2013-09-26" "2012-01-25" "2013-09-26"
## [43306] "2012-07-26" "2012-07-26" "2012-07-26" "2012-06-13" "2012-07-26"
## [43311] "2012-06-13" "2012-06-13" "2012-07-26" "2011-04-17" "2011-04-17"
## [43316] NA           NA           NA           "2014-01-25" NA          
## [43321] NA           NA           "2013-06-18" NA           "2013-06-18"
## [43326] "2014-01-25" NA           "2013-06-18" NA           "2013-04-16"
## [43331] NA           "2013-11-13" "2013-04-16" "2013-04-16" NA          
## [43336] "2013-11-13" "2011-12-25" NA           NA           "2013-04-16"
## [43341] "2013-04-16" "2011-12-25" "2013-04-16" "2013-11-13" "2011-12-25"
## [43346] NA           NA           NA           "2012-04-24" NA          
## [43351] "2012-04-24" NA           "2012-04-24" "2011-12-13" "2012-04-24"
## [43356] NA           NA           "2011-12-13" NA           "2012-04-24"
## [43361] "2012-02-17" "2012-02-17" "2011-06-20" NA           "2011-06-20"
## [43366] NA           "2011-06-20" NA           NA           "2012-02-17"
## [43371] NA           "2011-06-20" NA           "2011-06-20" "2011-04-19"
## [43376] "2011-04-19" NA           NA           "2011-04-19" NA          
## [43381] "2011-04-19" NA           "2011-04-19" NA           "2012-03-31"
## [43386] NA           "2012-03-31" NA           "2012-03-31" NA          
## [43391] NA           NA           NA           "2012-03-31" NA          
## [43396] NA           NA           "2012-03-31" NA           NA          
## [43401] NA           NA           NA           NA           NA          
## [43406] NA           NA           "2011-07-26" NA           NA          
## [43411] "2011-07-26" "2011-07-26" NA           NA           NA          
## [43416] NA           NA           NA           "2012-10-26" "2012-10-26"
## [43421] "2011-11-19" "2012-10-26" "2012-10-26" "2011-11-19" "2012-10-26"
## [43426] "2013-10-16" "2013-10-22" "2013-10-16" "2013-10-22" "2013-05-17"
## [43431] "2013-05-17" NA           NA           NA           "2011-12-22"
## [43436] "2013-11-25" "2013-11-25" "2011-12-22" "2013-11-25" "2014-01-25"
## [43441] "2014-01-25" "2013-03-15" "2013-03-15" "2012-11-22" "2012-11-22"
## [43446] "2014-01-25" "2014-01-25" "2013-03-15" "2012-11-22" "2012-11-22"
## [43451] "2014-01-25" "2012-11-22" NA           NA           "2013-08-17"
## [43456] "2013-08-17" "2012-07-17" "2011-02-13" "2012-07-17" "2012-07-17"
## [43461] "2011-02-13" "2012-08-18" "2012-08-18" "2012-07-17" "2011-02-13"
## [43466] "2012-01-14" "2012-01-14" "2012-01-14" "2012-11-28" "2012-11-28"
## [43471] "2012-11-28" "2012-06-24" "2012-06-24" "2012-06-24" "2013-01-25"
## [43476] "2013-01-25" "2013-01-25" "2013-12-21" "2013-12-21" "2013-12-21"
## [43481] "2012-03-18" "2013-12-21" "2013-01-25" "2013-12-21" "2013-01-25"
## [43486] "2013-01-25" "2012-03-18" "2012-03-18" "2013-04-20" "2011-08-15"
## [43491] "2011-08-15" "2011-08-15" "2011-08-15" "2013-04-20" "2011-08-15"
## [43496] NA           NA           NA           NA           "2011-01-27"
## [43501] "2011-01-27" "2011-01-27" "2011-01-27" NA           NA          
## [43506] "2012-10-26" "2011-01-27" NA           "2012-10-26" NA          
## [43511] NA           "2013-01-17" NA           NA           NA          
## [43516] "2013-01-17" NA           NA           NA           NA          
## [43521] NA           NA           NA           NA           NA          
## [43526] NA           NA           "2011-09-28" "2011-04-23" "2011-09-28"
## [43531] "2011-09-28" "2011-04-23" "2011-09-28" "2011-09-28" NA          
## [43536] NA           NA           "2013-03-18" NA           NA          
## [43541] "2013-03-18" NA           NA           "2013-03-18" NA          
## [43546] NA           NA           NA           NA           "2011-04-17"
## [43551] "2011-04-17" "2011-04-17" "2011-06-21" "2011-04-17" "2011-06-21"
## [43556] "2011-04-17" "2011-06-21" "2011-06-21" "2013-08-27" "2012-08-18"
## [43561] "2013-08-27" "2012-08-18" "2013-08-27" NA           NA          
## [43566] NA           NA           "2013-08-27" NA           "2013-08-27"
## [43571] NA           NA           "2013-08-27" "2012-08-18" NA          
## [43576] NA           NA           NA           NA           NA          
## [43581] NA           NA           "2011-03-18" "2012-08-24" NA          
## [43586] "2011-03-18" NA           "2012-08-24" NA           "2011-03-18"
## [43591] "2011-03-18" "2012-08-24" "2012-08-24" "2012-08-24" NA          
## [43596] "2013-08-25" "2013-08-25" "2013-08-25" "2013-08-25" "2013-08-25"
## [43601] "2013-08-25" NA           NA           NA           NA          
## [43606] NA           NA           NA           NA           "2011-11-22"
## [43611] "2011-06-24" "2011-07-17" "2011-11-13" "2011-06-24" "2012-10-24"
## [43616] "2011-11-22" "2012-10-24" "2011-11-13" "2011-06-24" "2012-10-24"
## [43621] "2011-11-13" "2011-11-22" "2011-06-24" "2011-11-13" "2011-07-17"
## [43626] "2011-11-22" "2011-06-24" "2011-11-13" "2011-11-22" NA          
## [43631] NA           "2013-03-14" NA           NA           "2013-11-23"
## [43636] "2013-11-23" "2013-11-23" NA           "2013-03-14" "2013-11-23"
## [43641] "2013-11-23" NA           NA           NA           NA          
## [43646] NA           "2014-01-20" NA           NA           NA          
## [43651] NA           NA           "2014-01-20" NA           NA          
## [43656] NA           NA           NA           "2014-01-26" "2011-12-21"
## [43661] "2011-12-21" "2011-12-21" "2014-01-26" "2014-02-20" "2014-02-20"
## [43666] "2014-02-20" "2014-02-20" NA           NA           "2011-03-30"
## [43671] NA           "2011-03-30" "2013-04-17" NA           "2013-04-17"
## [43676] "2011-03-30" NA           NA           NA           "2011-10-26"
## [43681] NA           "2011-10-26" "2011-10-26" "2011-10-26" "2011-10-26"
## [43686] NA           "2011-05-13" "2011-05-13" "2011-05-13" NA          
## [43691] "2011-10-25" "2011-10-25" NA           NA           "2011-10-25"
## [43696] NA           "2012-05-18" NA           NA           "2011-10-25"
## [43701] NA           "2011-10-25" "2011-01-27" NA           NA          
## [43706] NA           "2011-01-27" NA           NA           NA          
## [43711] "2012-05-18" "2012-03-13" "2012-03-13" "2012-03-13" "2012-03-13"
## [43716] "2012-03-13" "2013-12-31" "2013-12-31" "2013-12-31" "2013-12-31"
## [43721] "2013-12-31" "2011-06-24" "2011-06-19" "2011-06-19" "2013-05-25"
## [43726] "2013-05-28" "2011-06-24" "2013-05-28" "2011-06-19" "2013-05-28"
## [43731] "2013-05-25" "2013-05-28" "2013-05-28" "2011-06-24" "2011-06-19"
## [43736] "2011-06-19" "2011-06-24" "2013-05-25" "2013-05-25" "2013-05-25"
## [43741] "2011-06-24" "2012-02-26" "2013-04-15" "2012-02-26" "2013-04-15"
## [43746] "2012-02-26" "2012-02-26" "2012-02-26" NA           NA          
## [43751] NA           NA           NA           "2012-05-13" "2012-05-13"
## [43756] "2012-05-13" "2012-07-24" "2012-05-13" "2012-10-23" "2012-07-24"
## [43761] "2012-07-24" "2012-07-24" "2012-10-23" "2012-07-24" "2012-12-22"
## [43766] "2012-12-22" NA           NA           "2012-12-22" "2012-12-22"
## [43771] "2013-08-24" "2012-03-17" "2012-03-17" "2013-08-24" "2012-03-22"
## [43776] "2012-03-17" "2012-03-22" "2013-08-24" "2012-03-22" "2011-04-23"
## [43781] "2011-04-21" "2011-04-23" "2011-04-21" "2012-10-30" "2012-10-30"
## [43786] "2012-10-27" "2012-10-27" "2012-10-27" "2012-10-30" "2012-02-24"
## [43791] "2012-02-24" "2012-02-24" "2012-02-24" NA           "2012-02-24"
## [43796] NA           NA           NA           NA           "2013-01-19"
## [43801] NA           NA           NA           "2013-01-19" NA          
## [43806] "2013-01-27" NA           "2013-01-27" "2012-05-20" NA          
## [43811] "2012-05-20" "2012-05-20" NA           NA           "2011-04-16"
## [43816] NA           "2011-04-16" NA           "2011-04-16" "2012-09-19"
## [43821] "2013-11-15" "2013-11-15" "2011-06-26" "2012-09-19" NA          
## [43826] "2011-06-26" NA           NA           NA           NA          
## [43831] "2011-06-26" NA           NA           "2013-11-15" NA          
## [43836] NA           "2012-07-18" "2012-07-18" "2011-11-27" "2012-07-18"
## [43841] "2011-11-27" NA           "2011-03-18" "2013-05-18" NA          
## [43846] "2013-05-18" "2011-03-18" "2013-05-18" "2011-03-18" NA          
## [43851] "2013-05-18" "2013-05-18" NA           "2013-05-18" "2011-03-18"
## [43856] NA           NA           NA           "2012-10-28" "2012-10-28"
## [43861] NA           NA           NA           "2012-12-30" NA          
## [43866] "2012-12-30" "2012-12-30" NA           "2012-12-30" "2012-12-30"
## [43871] NA           NA           NA           "2012-09-28" "2012-09-28"
## [43876] NA           "2012-09-28" "2012-09-28" "2012-09-28" NA          
## [43881] "2012-09-28" NA           NA           "2014-01-19" "2014-01-19"
## [43886] "2013-12-30" NA           "2013-12-30" "2013-12-30" "2013-12-30"
## [43891] NA           "2013-12-30" NA           NA           "2012-01-28"
## [43896] "2013-05-21" "2012-01-28" NA           "2012-01-28" "2013-05-25"
## [43901] NA           "2013-05-25" NA           NA           NA          
## [43906] "2013-05-21" "2013-05-21" "2013-05-25" "2013-02-18" "2011-02-22"
## [43911] "2013-02-18" "2011-02-22" "2011-02-22" NA           NA          
## [43916] "2011-08-24" "2013-09-19" "2011-08-24" "2012-12-23" "2012-12-23"
## [43921] "2012-12-23" "2012-12-24" "2013-09-19" "2012-12-24" "2012-12-23"
## [43926] "2012-12-24" "2012-12-23" "2013-09-19" "2012-12-24" "2011-08-24"
## [43931] "2014-01-21" "2012-12-24" "2014-01-21" "2013-05-16" "2013-05-16"
## [43936] "2014-01-24" "2013-05-29" "2011-02-27" "2011-02-28" "2013-05-29"
## [43941] "2014-01-24" "2011-02-27" "2014-01-24" "2011-02-28" "2011-03-26"
## [43946] "2011-03-26" "2011-03-26" "2013-07-17" "2011-10-15" "2013-07-17"
## [43951] "2011-10-15" NA           NA           NA           "2011-10-15"
## [43956] NA           NA           NA           "2013-07-17" NA          
## [43961] NA           NA           "2012-05-26" "2013-03-17" "2013-10-20"
## [43966] "2013-10-20" "2012-05-26" "2011-11-13" "2011-11-13" "2011-11-13"
## [43971] "2013-10-20" "2013-03-17" "2011-08-22" "2011-08-22" "2013-03-17"
## [43976] "2011-08-22" "2011-08-22" "2011-11-13" "2011-08-22" "2011-11-13"
## [43981] "2011-11-13" NA           NA           NA           "2014-01-29"
## [43986] "2013-12-20" "2013-12-20" "2013-12-20" "2013-12-20" "2014-01-29"
## [43991] "2014-01-29" "2013-12-20" "2012-09-22" "2011-08-25" "2011-08-25"
## [43996] "2012-09-22" "2012-09-22" "2013-11-16" "2013-11-16" NA          
## [44001] NA           NA           "2011-05-31" "2011-05-31" NA          
## [44006] NA           "2011-05-22" "2011-05-22" "2011-05-22" NA          
## [44011] NA           NA           NA           "2011-05-22" "2011-05-31"
## [44016] NA           "2011-05-22" "2011-05-31" "2011-05-31" "2012-09-27"
## [44021] "2012-09-27" "2014-01-30" "2014-01-30" "2012-07-23" "2011-05-20"
## [44026] "2011-05-20" "2011-05-20" "2012-07-23" "2012-07-23" "2011-05-20"
## [44031] NA           NA           NA           NA           "2011-08-18"
## [44036] "2011-08-19" NA           "2011-08-19" NA           "2011-08-18"
## [44041] "2012-02-24" "2013-01-22" "2013-05-14" "2012-02-29" "2012-02-29"
## [44046] "2013-05-14" "2013-01-22" "2013-01-22" "2012-02-29" "2013-03-23"
## [44051] "2012-02-24" "2012-02-24" "2013-03-23" "2013-05-14" "2011-09-22"
## [44056] "2011-09-22" "2011-09-22" "2011-09-25" "2011-09-22" "2011-09-25"
## [44061] "2011-09-25" "2011-09-25" NA           NA           "2013-08-31"
## [44066] "2013-08-31" NA           NA           NA           "2013-08-31"
## [44071] "2013-08-31" NA           NA           "2013-08-31" "2013-08-31"
## [44076] "2012-01-26" "2012-01-26" "2011-11-20" "2011-11-20" "2011-11-20"
## [44081] "2011-11-20" "2011-11-20" "2011-11-20" NA           NA          
## [44086] NA           NA           NA           NA           NA          
## [44091] NA           NA           "2012-03-25" "2012-03-25" NA          
## [44096] NA           NA           NA           NA           NA          
## [44101] "2011-06-22" "2011-06-22" "2011-06-22" "2011-06-22" "2011-06-22"
## [44106] NA           NA           "2014-02-17" "2014-02-22" "2014-02-17"
## [44111] "2014-02-22" "2014-02-17" "2014-02-17" "2014-02-22" "2014-02-22"
## [44116] "2012-02-29" "2014-02-22" "2012-02-29" "2014-02-17" "2011-07-23"
## [44121] NA           NA           "2011-07-23" "2011-07-23" NA          
## [44126] NA           NA           "2011-08-21" "2011-08-13" "2011-08-13"
## [44131] NA           "2011-08-21" "2011-08-21" "2011-08-13" NA          
## [44136] "2011-08-21" NA           "2011-08-13" NA           "2011-08-13"
## [44141] "2011-08-21" "2011-10-31" "2011-05-28" "2014-01-25" "2012-06-22"
## [44146] "2012-06-22" "2011-10-31" "2014-01-25" "2014-01-25" "2012-06-22"
## [44151] "2011-05-28" "2011-07-23" "2011-10-31" "2011-05-28" "2012-06-22"
## [44156] "2014-01-25" "2012-06-22" "2011-07-23" "2011-05-28" "2014-01-25"
## [44161] "2011-05-28" "2012-06-16" NA           "2012-08-31" "2012-06-16"
## [44166] "2012-06-16" "2012-06-16" "2012-06-16" "2012-08-31" "2012-08-31"
## [44171] "2012-08-31" "2012-08-31" NA           "2012-08-31" "2012-11-16"
## [44176] "2012-11-13" "2012-11-13" "2012-11-16" "2012-11-13" "2012-05-23"
## [44181] "2012-11-13" "2012-11-16" "2012-11-16" "2012-05-23" "2012-05-23"
## [44186] "2011-04-19" "2011-04-19" "2012-11-16" "2012-11-13" "2012-05-23"
## [44191] "2012-05-23" "2011-04-19" "2012-11-23" "2012-11-13" "2013-03-26"
## [44196] "2013-03-26" "2012-11-13" NA           "2012-11-13" "2012-11-23"
## [44201] "2013-03-26" "2013-03-26" "2012-11-23" NA           NA          
## [44206] "2013-03-26" "2012-05-19" "2012-05-19" "2012-05-19" "2012-02-29"
## [44211] "2012-02-29" "2012-02-29" "2012-05-19" "2012-05-19" "2012-02-29"
## [44216] "2011-06-21" "2011-06-21" "2011-06-21" "2011-06-21" "2011-06-21"
## [44221] NA           NA           NA           NA           "2013-11-19"
## [44226] NA           "2013-11-19" "2013-11-19" "2011-10-13" "2011-10-13"
## [44231] NA           NA           "2011-12-26" "2014-01-22" "2011-04-13"
## [44236] "2011-04-13" "2011-12-26" "2011-06-25" NA           NA          
## [44241] "2014-01-22" NA           "2014-01-22" NA           "2014-01-22"
## [44246] NA           "2011-06-25" "2011-06-25" NA           NA          
## [44251] "2011-06-25" NA           "2011-06-25" "2011-02-20" "2011-02-20"
## [44256] "2011-02-20" "2012-09-23" "2011-02-20" "2012-09-23" "2011-02-20"
## [44261] "2012-06-26" "2014-01-24" "2014-01-24" "2012-06-26" "2014-01-24"
## [44266] NA           NA           NA           "2013-11-29" NA          
## [44271] NA           "2013-11-29" "2012-07-20" "2012-07-20" "2011-06-26"
## [44276] "2012-07-20" "2011-06-26" "2013-11-18" "2013-11-18" "2013-11-18"
## [44281] NA           "2014-02-19" "2014-02-19" NA           "2013-11-18"
## [44286] "2013-02-20" "2013-11-18" NA           NA           NA          
## [44291] NA           NA           "2013-02-20" NA           "2012-06-13"
## [44296] NA           NA           "2012-06-13" NA           NA          
## [44301] NA           NA           NA           NA           NA          
## [44306] NA           NA           NA           NA           NA          
## [44311] "2013-02-19" "2013-02-19" "2013-02-19" "2013-02-19" "2013-02-19"
## [44316] NA           NA           NA           "2012-06-16" NA          
## [44321] NA           NA           NA           NA           "2012-06-16"
## [44326] NA           "2012-07-17" "2012-07-17" "2012-07-17" "2013-03-23"
## [44331] "2012-11-25" "2012-11-25" "2013-03-23" "2014-02-19" "2013-03-23"
## [44336] "2014-02-19" "2012-11-25" "2013-03-23" "2011-10-15" "2011-04-30"
## [44341] "2011-10-15" "2011-10-15" "2011-04-30" "2011-10-15" "2012-01-14"
## [44346] "2011-04-30" "2011-04-30" "2012-01-14" "2011-10-15" "2012-11-22"
## [44351] NA           "2012-11-22" NA           "2013-04-20" "2013-04-20"
## [44356] "2013-04-20" "2013-04-20" NA           NA           NA          
## [44361] NA           NA           NA           NA           NA          
## [44366] NA           NA           NA           NA           NA          
## [44371] NA           NA           NA           NA           NA          
## [44376] NA           NA           NA           NA           NA          
## [44381] NA           NA           "2011-05-29" "2011-05-29" NA          
## [44386] "2011-05-29" "2011-07-28" "2012-12-21" "2012-12-21" "2013-11-23"
## [44391] "2011-07-28" "2013-11-23" "2013-11-23" "2013-11-23" "2011-07-28"
## [44396] "2011-07-28" "2011-07-28" "2013-11-23" "2013-08-29" NA          
## [44401] "2013-08-29" "2013-08-29" NA           NA           NA          
## [44406] NA           NA           NA           NA           NA          
## [44411] NA           NA           NA           NA           NA          
## [44416] NA           NA           NA           NA           "2011-01-31"
## [44421] "2011-01-31" NA           NA           NA           NA          
## [44426] NA           NA           "2011-01-31" "2012-02-18" "2012-02-18"
## [44431] NA           "2012-02-18" NA           "2012-02-18" "2012-02-18"
## [44436] NA           "2011-09-15" "2011-09-15" "2011-09-15" NA          
## [44441] NA           NA           NA           "2011-03-25" "2011-08-30"
## [44446] "2011-03-25" NA           NA           NA           NA          
## [44451] "2011-03-25" NA           "2011-08-30" "2011-08-30" "2011-03-25"
## [44456] NA           NA           "2011-03-25" NA           NA          
## [44461] NA           NA           NA           NA           NA          
## [44466] NA           NA           NA           NA           "2011-11-15"
## [44471] "2013-10-25" "2013-10-26" "2013-10-25" "2011-11-15" "2013-10-25"
## [44476] "2013-10-26" "2013-10-26" "2011-11-15" "2011-11-15" "2011-11-15"
## [44481] NA           NA           "2012-10-16" "2012-10-16" "2012-10-16"
## [44486] "2012-10-16" NA           "2012-10-16" NA           NA          
## [44491] "2011-04-22" "2013-08-24" NA           NA           NA          
## [44496] "2011-04-22" NA           "2013-08-24" "2013-08-24" NA          
## [44501] NA           NA           NA           "2013-08-24" NA          
## [44506] NA           "2011-10-15" "2012-06-18" "2011-10-15" "2012-06-18"
## [44511] "2013-06-13" "2013-06-13" "2013-06-13" "2012-06-18" NA          
## [44516] NA           NA           NA           NA           NA          
## [44521] NA           NA           NA           NA           "2011-05-28"
## [44526] NA           "2013-06-20" "2013-06-20" NA           NA          
## [44531] "2011-05-28" "2013-05-30" "2011-11-24" "2013-05-30" "2011-11-24"
## [44536] "2013-05-30" "2011-11-24" "2013-05-30" "2013-05-30" "2013-11-30"
## [44541] NA           NA           NA           "2013-11-30" NA          
## [44546] "2013-11-30" "2013-11-30" "2011-03-30" "2011-03-30" "2013-12-26"
## [44551] "2013-05-16" "2013-05-16" "2012-10-14" "2013-05-16" "2012-10-14"
## [44556] "2013-07-15" "2013-05-16" "2013-07-15" "2013-12-26" NA          
## [44561] NA           "2012-10-14" "2013-12-26" NA           NA          
## [44566] "2012-11-17" "2012-11-17" NA           "2012-11-17" "2012-11-17"
## [44571] NA           "2012-11-17" NA           "2012-11-17" "2011-10-26"
## [44576] "2011-10-31" NA           NA           "2011-08-17" NA          
## [44581] "2011-08-17" "2011-10-31" NA           "2011-10-26" "2011-08-17"
## [44586] "2011-08-17" "2011-08-17" NA           NA           NA          
## [44591] NA           NA           NA           NA           NA          
## [44596] NA           "2011-10-19" "2011-10-19" "2011-10-19" "2011-10-19"
## [44601] "2011-10-19" "2011-10-19" "2012-05-27" "2012-05-27" "2012-05-27"
## [44606] NA           NA           "2014-01-28" "2014-01-28" NA          
## [44611] "2014-01-28" NA           NA           NA           NA          
## [44616] NA           "2013-03-30" "2013-03-30" NA           NA          
## [44621] "2012-11-23" "2012-11-23" "2012-09-16" "2012-09-16" NA          
## [44626] NA           "2012-09-16" "2011-08-17" "2011-08-17" NA          
## [44631] "2012-12-24" "2012-12-24" "2012-12-24" NA           NA          
## [44636] NA           NA           NA           NA           "2014-01-20"
## [44641] NA           "2012-02-27" "2014-01-18" NA           "2014-01-18"
## [44646] NA           "2014-01-18" NA           "2014-01-20" "2014-01-20"
## [44651] "2014-01-20" "2012-02-27" "2014-01-18" "2014-01-20" NA          
## [44656] "2014-01-18" NA           NA           "2013-07-31" "2012-10-14"
## [44661] NA           NA           "2013-07-31" "2013-07-31" NA          
## [44666] "2013-07-31" "2012-10-14" "2012-10-14" NA           "2013-07-31"
## [44671] NA           NA           "2013-02-21" "2013-02-21" NA          
## [44676] "2013-06-20" NA           "2013-06-20" "2013-02-21" "2013-02-21"
## [44681] NA           "2013-06-20" "2013-06-20" "2013-02-21" NA          
## [44686] NA           NA           NA           "2012-02-22" NA          
## [44691] NA           "2012-02-22" NA           NA           "2012-02-22"
## [44696] "2012-02-22" "2012-02-22" "2013-03-25" "2013-09-16" "2013-09-16"
## [44701] "2013-09-16" "2013-09-16" "2013-03-25" "2013-03-25" "2013-09-16"
## [44706] "2011-03-14" "2011-03-14" "2011-03-14" "2013-06-24" NA          
## [44711] "2013-06-25" "2012-06-14" NA           "2012-06-14" NA          
## [44716] "2013-06-24" "2013-06-25" "2013-06-25" NA           "2013-06-25"
## [44721] NA           "2013-06-24" "2012-06-15" NA           NA          
## [44726] "2012-06-15" NA           NA           "2013-07-27" NA          
## [44731] NA           "2011-05-23" NA           NA           "2011-05-23"
## [44736] "2011-05-23" "2013-07-27" "2011-10-27" "2011-10-27" NA          
## [44741] NA           NA           NA           NA           NA          
## [44746] NA           NA           NA           NA           NA          
## [44751] NA           NA           NA           NA           "2013-12-17"
## [44756] "2013-12-17" NA           NA           "2013-12-17" "2013-07-28"
## [44761] "2013-07-28" "2013-12-17" "2013-12-17" "2013-07-28" "2013-09-16"
## [44766] "2013-09-16" "2013-09-16" "2011-02-25" "2013-09-16" "2013-09-16"
## [44771] "2011-02-25" "2011-02-25" "2011-02-25" "2013-01-23" "2013-01-23"
## [44776] "2013-01-23" "2013-01-23" "2011-10-20" "2013-04-14" "2011-10-20"
## [44781] "2011-10-20" "2011-10-20" "2013-04-14" "2011-10-20" NA          
## [44786] NA           "2011-05-14" "2011-05-14" "2011-05-14" "2011-05-14"
## [44791] "2011-05-14" "2011-02-21" NA           "2011-02-21" "2011-02-21"
## [44796] "2013-10-27" NA           "2013-10-27" "2011-02-20" "2011-02-20"
## [44801] "2011-02-20" "2013-10-27" "2011-09-21" "2013-07-18" "2011-09-21"
## [44806] "2013-07-18" "2011-09-21" "2011-09-21" "2013-12-21" NA          
## [44811] NA           NA           NA           "2014-01-26" "2014-01-26"
## [44816] NA           NA           NA           NA           "2013-12-21"
## [44821] NA           "2013-12-21" NA           NA           "2013-09-25"
## [44826] "2013-05-25" "2013-05-25" "2013-09-25" NA           NA          
## [44831] NA           "2013-05-26" NA           "2013-05-26" "2013-05-26"
## [44836] "2013-05-26" "2013-05-27" "2013-05-31" "2012-01-17" NA          
## [44841] "2013-05-31" "2013-05-31" "2013-05-22" NA           NA          
## [44846] NA           "2012-01-17" "2013-05-31" NA           "2013-05-27"
## [44851] NA           "2013-05-22" "2013-05-22" "2013-05-31" NA          
## [44856] "2012-01-17" NA           "2013-05-22" NA           NA          
## [44861] "2013-05-22" NA           NA           NA           NA          
## [44866] NA           "2013-12-24" "2012-03-26" NA           "2011-10-14"
## [44871] "2013-12-24" NA           "2013-05-25" "2011-10-14" "2011-10-14"
## [44876] NA           "2013-05-25" "2012-03-26" "2013-12-24" "2011-05-26"
## [44881] NA           "2011-05-26" "2012-03-26" NA           "2013-02-26"
## [44886] NA           NA           NA           NA           "2013-02-26"
## [44891] "2013-02-26" NA           NA           NA           "2013-06-27"
## [44896] "2011-09-26" NA           NA           NA           NA          
## [44901] "2013-06-27" "2011-09-26" "2013-06-27" "2013-06-27" "2013-06-27"
## [44906] NA           "2012-02-29" "2012-02-29" "2011-12-17" NA          
## [44911] "2011-12-17" NA           NA           "2011-12-17"
a <- as.Date(Customer_Final$tran_date,format="%d-%m-%Y")
b <- as.Date(Customer_Final$tran_date,format="%d/%m/%Y")

a[is.na(a)] <- b[!is.na(b)]
Customer_Final$tran_date <- a

Customer_Final$tran_date
##     [1] "2011-09-24" "2011-09-23" "2012-10-21" "2011-09-24" "2011-09-24"
##     [6] "2013-02-20" "2011-09-23" "2012-10-21" "2013-02-20" "2011-09-23"
##    [11] "2012-12-04" "2012-12-04" "2012-07-01" "2013-02-13" "2011-10-24"
##    [16] "2013-08-01" "2013-08-01" "2013-02-13" "2012-07-01" "2011-10-24"
##    [21] "2011-03-15" "2012-07-01" "2013-08-01" "2013-02-13" "2011-03-15"
##    [26] "2011-09-13" "2011-09-13" "2013-02-12" "2013-02-12" "2013-02-12"
##    [31] "2012-10-31" "2012-10-31" "2012-10-31" "2012-06-28" "2012-01-30"
##    [36] "2012-01-30" "2012-01-30" "2011-06-10" "2011-03-18" "2014-02-12"
##    [41] "2011-03-18" "2012-06-28" "2011-06-10" "2011-04-22" "2014-02-12"
##    [46] "2011-03-18" "2014-02-12" "2012-01-30" "2012-06-28" "2011-04-22"
##    [51] "2011-06-10" "2012-01-30" "2011-03-18" "2012-06-28" "2014-02-12"
##    [56] "2014-02-12" "2011-03-18" "2012-06-28" "2012-03-11" "2012-03-11"
##    [61] "2012-03-11" "2012-03-11" "2012-03-11" "2012-03-11" "2012-06-02"
##    [66] "2012-06-02" "2012-06-02" "2012-06-02" "2013-06-08" "2013-06-08"
##    [71] "2013-06-08" "2013-06-08" "2013-06-08" "2013-06-08" "2012-12-05"
##    [76] "2012-09-09" "2013-02-21" "2012-09-09" "2013-02-21" "2012-12-05"
##    [81] "2013-11-28" "2012-09-09" "2013-02-21" "2013-11-28" "2011-11-14"
##    [86] "2011-11-14" "2012-12-25" "2012-12-25" "2011-11-14" "2011-08-06"
##    [91] "2013-02-23" "2011-07-10" "2012-07-04" "2013-02-23" "2013-02-23"
##    [96] "2012-07-04" "2013-02-23" "2011-07-10" "2012-07-04" "2011-08-06"
##   [101] "2013-02-23" "2011-07-10" "2011-07-10" "2011-07-10" "2011-02-23"
##   [106] "2012-04-05" "2011-02-23" "2012-04-05" "2013-03-06" "2013-03-06"
##   [111] "2013-03-06" "2012-11-22" "2012-11-22" "2013-08-12" "2013-08-09"
##   [116] "2013-08-12" "2013-08-12" "2011-04-17" "2013-08-09" "2013-08-09"
##   [121] "2011-04-17" "2011-04-17" "2012-11-22" "2012-09-14" "2012-11-22"
##   [126] "2012-09-14" "2012-11-22" "2011-07-13" "2011-07-13" "2011-07-13"
##   [131] "2013-09-06" "2011-07-13" "2011-07-13" "2013-09-06" "2011-07-13"
##   [136] "2013-09-05" "2013-09-05" "2013-09-05" "2013-09-05" "2013-09-05"
##   [141] "2013-03-21" "2013-09-05" "2013-03-21" "2013-11-01" "2012-08-06"
##   [146] "2012-08-06" "2012-08-06" "2011-10-01" "2012-08-06" "2013-11-01"
##   [151] "2012-08-06" "2011-10-01" "2011-10-01" "2011-10-01" "2011-10-01"
##   [156] "2011-10-01" "2012-07-26" "2012-07-26" "2012-01-17" "2012-01-17"
##   [161] "2012-01-17" "2012-01-17" "2012-01-17" "2012-07-26" "2012-07-26"
##   [166] "2012-07-26" "2013-06-01" "2011-04-16" "2011-04-16" "2011-04-16"
##   [171] "2011-04-16" "2013-06-01" "2013-06-01" "2011-06-03" "2012-01-25"
##   [176] "2011-04-16" "2012-01-25" "2011-06-03" "2012-01-25" "2011-11-23"
##   [181] "2011-11-23" "2011-11-11" "2011-11-11" "2011-11-11" "2011-11-11"
##   [186] "2012-03-09" "2012-03-09" "2012-03-09" "2013-12-27" "2011-12-15"
##   [191] "2012-03-09" "2013-12-27" "2012-03-16" "2013-12-27" "2012-03-16"
##   [196] "2011-12-15" "2011-12-15" "2012-03-16" "2012-03-09" "2013-12-27"
##   [201] "2012-03-16" "2013-12-27" "2011-12-15" "2013-12-27" "2012-03-16"
##   [206] "2012-10-01" "2012-10-01" "2012-10-01" "2012-10-01" "2013-06-04"
##   [211] "2013-06-04" "2013-06-04" "2013-06-04" "2011-07-18" "2012-10-01"
##   [216] "2011-07-18" "2011-07-18" "2013-06-04" "2011-03-06" "2011-03-06"
##   [221] "2011-03-06" "2011-03-06" "2011-03-06" "2013-04-27" "2011-07-31"
##   [226] "2011-07-31" "2013-04-27" "2011-07-31" "2011-03-09" "2011-03-09"
##   [231] "2011-03-09" "2012-09-08" "2011-02-04" "2012-09-08" "2013-02-19"
##   [236] "2013-02-19" "2012-09-08" "2011-02-04" "2011-03-24" "2011-03-24"
##   [241] "2011-06-13" "2011-06-13" "2011-12-06" "2012-02-11" "2011-12-06"
##   [246] "2012-02-11" "2012-02-11" "2012-07-08" "2012-07-08" "2012-07-08"
##   [251] "2014-01-18" "2012-05-04" "2014-01-03" "2014-01-18" "2014-01-03"
##   [256] "2012-05-04" "2014-01-03" "2013-08-01" "2014-01-18" "2013-08-01"
##   [261] "2013-08-01" "2014-01-18" "2013-08-01" "2014-01-18" "2013-08-01"
##   [266] "2012-07-26" "2011-10-19" "2012-07-26" "2011-10-19" "2012-07-26"
##   [271] "2012-07-26" "2012-07-26" "2011-07-07" "2014-02-09" "2011-07-07"
##   [276] "2011-07-07" "2014-02-09" "2011-07-07" "2014-02-09" "2011-07-07"
##   [281] "2012-03-16" "2012-03-16" "2012-03-16" "2011-08-30" "2011-08-28"
##   [286] "2011-02-21" "2011-08-21" "2011-08-28" "2011-08-21" "2011-08-21"
##   [291] "2011-08-28" "2011-08-30" "2011-02-21" "2011-08-30" "2012-03-24"
##   [296] "2013-11-06" "2012-03-24" "2013-11-06" "2012-12-20" "2012-12-20"
##   [301] "2012-12-20" "2012-12-20" "2012-12-20" "2012-12-20" "2011-11-12"
##   [306] "2011-11-12" "2011-11-12" "2011-11-12" "2011-11-12" "2011-11-12"
##   [311] "2011-02-16" "2011-02-16" "2012-02-08" "2012-01-20" "2012-01-20"
##   [316] "2013-01-01" "2012-02-08" "2013-01-01" "2012-02-08" "2012-02-08"
##   [321] "2013-01-01" "2013-01-01" "2012-02-08" "2013-01-01" "2012-01-20"
##   [326] "2013-06-08" "2013-01-05" "2014-01-26" "2013-06-08" "2013-01-05"
##   [331] "2013-01-05" "2014-01-26" "2013-01-05" "2013-01-05" "2014-01-26"
##   [336] "2013-01-05" "2013-06-08" "2012-07-24" "2011-08-15" "2012-10-12"
##   [341] "2011-08-15" "2012-07-24" "2012-07-24" "2012-10-12" "2012-07-24"
##   [346] "2012-07-24" "2012-07-24" "2011-05-30" "2013-11-17" "2011-05-30"
##   [351] "2011-05-30" "2011-05-30" "2011-05-30" "2011-05-30" "2013-11-17"
##   [356] "2013-11-17" "2013-11-17" "2013-11-17" "2012-05-23" "2012-05-23"
##   [361] "2012-05-23" "2012-05-23" "2012-05-23" "2013-12-29" "2013-12-29"
##   [366] "2011-06-18" "2011-06-12" "2011-12-14" "2011-12-14" "2011-12-14"
##   [371] "2011-12-14" "2013-12-29" "2011-06-12" "2012-05-31" "2011-12-14"
##   [376] "2011-06-18" "2012-05-31" "2012-05-31" "2011-09-13" "2011-09-13"
##   [381] "2011-09-13" "2011-09-13" "2013-06-04" "2012-01-03" "2013-06-04"
##   [386] "2013-06-04" "2013-06-04" "2013-06-04" "2012-01-03" "2012-01-03"
##   [391] "2012-01-03" "2012-01-03" "2013-05-19" "2013-05-19" "2013-07-25"
##   [396] "2013-07-25" "2011-04-06" "2013-07-25" "2013-07-25" "2011-04-06"
##   [401] "2011-04-06" "2013-12-15" "2014-02-20" "2014-02-20" "2013-12-15"
##   [406] "2014-02-20" "2013-12-15" "2013-12-15" "2012-12-03" "2012-07-30"
##   [411] "2012-05-07" "2012-05-07" "2012-11-25" "2012-12-03" "2012-05-07"
##   [416] "2012-07-30" "2013-03-06" "2011-05-03" "2012-12-03" "2011-05-03"
##   [421] "2012-11-25" "2011-05-03" "2012-12-03" "2012-11-25" "2013-03-06"
##   [426] "2012-07-30" "2012-07-30" "2012-07-30" "2012-12-03" "2012-11-25"
##   [431] "2012-11-25" "2012-10-02" "2012-10-02" "2011-05-18" "2012-11-08"
##   [436] "2011-05-18" "2012-11-08" "2012-10-02" "2013-02-24" "2011-01-25"
##   [441] "2011-01-25" "2013-02-24" "2013-02-24" "2013-12-01" "2013-12-01"
##   [446] "2013-12-01" "2013-12-01" "2011-12-02" "2011-12-02" "2011-12-02"
##   [451] "2012-12-29" "2012-12-29" "2012-12-29" "2012-12-29" "2012-12-29"
##   [456] "2011-04-25" "2013-11-24" "2011-04-25" "2013-11-24" "2013-11-24"
##   [461] "2013-11-24" "2012-03-17" "2011-09-20" "2012-03-15" "2012-03-15"
##   [466] "2011-09-20" "2011-09-20" "2011-09-20" "2012-03-20" "2012-03-17"
##   [471] "2011-09-20" "2012-03-20" "2013-12-29" "2013-12-29" "2013-12-29"
##   [476] "2012-01-26" "2012-04-24" "2012-12-14" "2012-01-26" "2012-01-26"
##   [481] "2011-05-29" "2012-06-20" "2012-04-22" "2012-04-22" "2011-05-29"
##   [486] "2012-04-24" "2012-06-20" "2012-04-20" "2012-04-20" "2012-04-20"
##   [491] "2012-12-14" "2012-04-24" "2012-06-20" "2012-01-26" "2011-05-29"
##   [496] "2011-05-29" "2012-04-22" "2012-04-20" "2012-06-20" "2012-04-22"
##   [501] "2011-05-29" "2012-04-24" "2012-06-20" "2012-12-14" "2012-06-20"
##   [506] "2012-01-12" "2011-06-19" "2011-06-19" "2011-06-19" "2011-06-19"
##   [511] "2011-06-19" "2012-01-12" "2012-11-05" "2012-11-05" "2012-11-05"
##   [516] "2013-04-27" "2013-04-27" "2013-06-23" "2013-06-23" "2012-06-10"
##   [521] "2011-12-23" "2013-06-23" "2012-06-10" "2013-06-23" "2011-12-23"
##   [526] "2012-06-10" "2013-06-23" "2012-06-10" "2012-06-10" "2011-06-20"
##   [531] "2011-06-20" "2011-06-20" "2013-05-26" "2013-05-26" "2013-05-26"
##   [536] "2013-05-26" "2013-05-26" "2012-07-26" "2013-02-10" "2012-07-26"
##   [541] "2013-02-10" "2012-07-26" "2012-07-26" "2012-07-26" "2011-10-05"
##   [546] "2012-12-20" "2011-10-05" "2012-12-20" "2011-10-05" "2011-10-05"
##   [551] "2013-04-10" "2013-05-14" "2013-04-10" "2013-04-10" "2013-07-07"
##   [556] "2011-12-11" "2013-05-14" "2013-04-10" "2013-07-07" "2013-07-07"
##   [561] "2013-07-07" "2011-12-11" "2013-05-14" "2013-07-07" "2013-05-14"
##   [566] "2013-05-14" "2013-05-14" "2011-09-07" "2011-10-24" "2012-06-27"
##   [571] "2012-06-27" "2011-10-19" "2011-10-24" "2011-09-07" "2011-10-19"
##   [576] "2012-06-27" "2011-09-07" "2012-01-28" "2012-01-28" "2012-01-28"
##   [581] "2014-02-06" "2011-01-26" "2012-04-27" "2011-02-01" "2014-02-06"
##   [586] "2011-01-26" "2014-02-06" "2012-04-27" "2014-02-06" "2012-04-27"
##   [591] "2012-11-10" "2012-04-27" "2012-11-10" "2014-02-06" "2011-02-01"
##   [596] "2012-04-27" "2011-09-20" "2011-09-20" "2011-09-20" "2013-11-23"
##   [601] "2013-02-16" "2013-02-16" "2011-09-20" "2013-11-23" "2013-11-23"
##   [606] "2011-09-20" "2013-02-16" "2013-02-16" "2013-02-16" "2011-12-08"
##   [611] "2011-12-29" "2011-12-08" "2011-12-29" "2011-12-29" "2011-12-29"
##   [616] "2011-12-29" "2011-12-08" "2011-12-08" "2011-12-08" "2013-06-26"
##   [621] "2013-06-26" "2013-06-26" "2013-06-26" "2012-05-24" "2012-05-24"
##   [626] "2013-06-26" "2011-04-03" "2011-04-03" "2012-04-24" "2012-01-30"
##   [631] "2012-04-24" "2012-04-24" "2011-04-03" "2011-04-03" "2012-01-30"
##   [636] "2011-04-03" "2011-04-15" "2013-03-06" "2013-03-06" "2013-03-06"
##   [641] "2011-04-29" "2013-10-29" "2013-03-06" "2011-04-15" "2013-10-29"
##   [646] "2011-04-29" "2013-10-29" "2011-05-22" "2011-05-22" "2011-04-29"
##   [651] "2013-10-29" "2011-05-22" "2011-04-09" "2011-04-09" "2012-10-20"
##   [656] "2012-10-20" "2013-04-16" "2013-04-16" "2012-04-14" "2012-02-20"
##   [661] "2012-04-14" "2013-04-16" "2012-04-14" "2013-04-16" "2013-08-07"
##   [666] "2013-04-16" "2012-04-14" "2013-08-07" "2013-04-16" "2012-02-20"
##   [671] "2013-08-07" "2012-02-20" "2012-04-14" "2014-01-08" "2014-01-08"
##   [676] "2014-01-08" "2014-01-08" "2014-01-08" "2011-11-09" "2011-11-09"
##   [681] "2011-11-09" "2011-05-11" "2011-05-11" "2011-05-11" "2012-04-12"
##   [686] "2012-09-23" "2013-06-27" "2013-06-24" "2012-09-23" "2012-04-12"
##   [691] "2013-06-24" "2013-06-27" "2012-04-12" "2012-04-12" "2013-06-24"
##   [696] "2013-06-27" "2012-04-12" "2011-09-19" "2013-12-27" "2011-09-19"
##   [701] "2012-04-12" "2013-12-27" "2013-12-27" "2013-12-27" "2013-12-27"
##   [706] "2011-09-19" "2012-04-12" "2013-12-09" "2013-12-09" "2013-12-09"
##   [711] "2013-10-03" "2013-10-03" "2013-10-10" "2013-10-10" "2013-05-05"
##   [716] "2013-10-10" "2013-05-05" "2013-08-10" "2013-05-05" "2013-05-05"
##   [721] "2013-05-05" "2013-10-10" "2013-08-10" "2013-10-10" "2013-05-05"
##   [726] "2013-10-10" "2012-03-02" "2012-02-29" "2013-06-07" "2012-02-29"
##   [731] "2012-05-27" "2013-06-07" "2012-03-02" "2012-02-29" "2012-03-02"
##   [736] "2012-05-27" "2012-10-17" "2012-10-17" "2012-10-12" "2012-03-02"
##   [741] "2012-03-02" "2012-10-17" "2012-10-12" "2012-03-02" "2012-10-12"
##   [746] "2011-07-09" "2011-07-09" "2012-07-17" "2012-07-17" "2012-07-17"
##   [751] "2011-07-09" "2013-07-28" "2013-07-28" "2013-08-22" "2013-08-22"
##   [756] "2011-09-30" "2011-09-30" "2011-08-23" "2011-08-27" "2011-09-30"
##   [761] "2011-08-23" "2011-08-27" "2013-05-11" "2011-09-30" "2011-09-30"
##   [766] "2011-08-27" "2013-05-11" "2011-08-23" "2011-08-23" "2011-08-27"
##   [771] "2013-05-11" "2013-03-12" "2013-03-12" "2012-09-09" "2013-03-12"
##   [776] "2012-09-09" "2012-09-09" "2012-09-09" "2012-09-09" "2013-03-12"
##   [781] "2013-03-12" "2013-03-12" "2013-10-25" "2013-10-25" "2013-01-30"
##   [786] "2013-10-25" "2013-10-25" "2013-01-30" "2013-01-30" "2013-10-25"
##   [791] "2012-08-15" "2012-08-15" "2012-08-15" "2012-08-15" "2012-09-14"
##   [796] "2012-08-15" "2012-10-22" "2012-08-15" "2012-09-14" "2012-10-22"
##   [801] "2013-02-07" "2013-02-07" "2013-02-07" "2013-02-07" "2013-02-07"
##   [806] "2012-09-10" "2011-12-16" "2013-07-21" "2012-09-19" "2013-06-27"
##   [811] "2012-09-10" "2011-12-16" "2013-06-27" "2013-07-21" "2012-09-19"
##   [816] "2012-09-19" "2013-06-27" "2013-06-27" "2013-07-21" "2011-12-16"
##   [821] "2013-06-27" "2012-09-10" "2013-10-22" "2013-10-22" "2013-10-22"
##   [826] "2013-03-17" "2012-02-26" "2012-02-26" "2012-02-26" "2013-03-17"
##   [831] "2013-03-17" "2012-02-26" "2012-08-20" "2012-07-23" "2012-07-23"
##   [836] "2012-08-20" "2012-08-20" "2012-07-23" "2012-08-20" "2011-04-17"
##   [841] "2011-04-23" "2011-04-23" "2011-04-17" "2011-04-17" "2011-04-17"
##   [846] "2011-04-23" "2011-04-23" "2011-04-17" "2011-04-23" "2011-10-24"
##   [851] "2011-10-24" "2011-10-24" "2013-03-22" "2012-01-20" "2012-01-20"
##   [856] "2013-03-22" "2012-11-17" "2011-03-10" "2011-12-24" "2011-02-20"
##   [861] "2011-02-20" "2013-02-10" "2011-03-10" "2011-12-15" "2013-02-10"
##   [866] "2012-11-17" "2011-12-15" "2013-02-10" "2013-02-10" "2013-02-10"
##   [871] "2011-12-24" "2013-02-10" "2012-03-19" "2012-03-19" "2012-03-19"
##   [876] "2011-06-01" "2011-06-01" "2012-12-15" "2011-03-21" "2012-09-09"
##   [881] "2012-12-15" "2012-12-15" "2013-04-10" "2011-03-21" "2011-03-21"
##   [886] "2011-03-21" "2011-03-21" "2013-05-31" "2012-09-09" "2012-09-09"
##   [891] "2013-04-10" "2012-09-09" "2013-04-10" "2012-09-09" "2013-06-02"
##   [896] "2013-04-10" "2012-12-15" "2012-12-15" "2013-06-02" "2013-05-31"
##   [901] "2013-04-10" "2013-06-02" "2013-04-10" "2013-05-31" "2013-06-11"
##   [906] "2013-05-17" "2013-05-16" "2013-06-02" "2013-06-02" "2013-06-11"
##   [911] "2013-06-02" "2013-06-02" "2013-06-11" "2013-05-17" "2013-05-16"
##   [916] "2013-11-22" "2013-11-22" "2013-11-22" "2013-03-14" "2013-11-22"
##   [921] "2013-03-09" "2013-11-22" "2013-03-14" "2013-11-22" "2013-03-09"
##   [926] "2013-06-19" "2012-11-14" "2012-11-14" "2012-11-14" "2012-11-14"
##   [931] "2013-06-19" "2013-06-19" "2012-11-14" "2011-07-20" "2011-03-25"
##   [936] "2012-05-05" "2011-07-20" "2011-03-25" "2012-05-05" "2011-03-25"
##   [941] "2011-03-12" "2011-03-12" "2013-10-26" "2013-10-28" "2013-03-10"
##   [946] "2013-03-10" "2014-01-09" "2013-10-26" "2014-01-09" "2011-03-13"
##   [951] "2013-10-28" "2013-10-26" "2014-01-09" "2013-10-26" "2013-10-26"
##   [956] "2011-03-13" "2011-03-12" "2011-03-13" "2013-10-28" "2014-01-09"
##   [961] "2013-10-28" "2013-10-28" "2013-07-12" "2013-07-12" "2013-07-12"
##   [966] "2013-07-12" "2013-07-12" "2013-07-12" "2014-01-30" "2014-01-24"
##   [971] "2014-01-24" "2014-01-24" "2014-01-30" "2014-01-24" "2014-01-30"
##   [976] "2014-01-24" "2014-01-30" "2014-01-30" "2013-10-02" "2013-10-02"
##   [981] "2013-10-02" "2013-10-02" "2013-10-04" "2013-10-04" "2013-10-02"
##   [986] "2013-10-02" "2013-10-04" "2013-10-04" "2013-10-04" "2013-10-04"
##   [991] "2012-03-09" "2012-03-09" "2012-03-09" "2012-09-22" "2012-09-22"
##   [996] "2012-09-22" "2012-09-22" "2012-09-22" "2012-05-25" "2012-08-08"
##  [1001] "2012-08-08" "2012-08-08" "2012-05-25" "2011-10-06" "2012-04-08"
##  [1006] "2011-10-06" "2011-10-06" "2012-04-08" "2012-04-08" "2011-08-26"
##  [1011] "2011-08-26" "2011-08-26" "2013-01-30" "2013-01-30" "2013-01-30"
##  [1016] "2013-08-02" "2012-05-14" "2012-05-14" "2013-08-02" "2013-08-30"
##  [1021] "2013-08-30" "2013-06-24" "2013-06-24" "2013-06-24" "2013-08-30"
##  [1026] "2013-08-30" "2013-08-30" "2013-06-24" "2013-06-24" "2011-11-28"
##  [1031] "2012-09-01" "2011-11-28" "2012-12-07" "2012-09-01" "2012-12-07"
##  [1036] "2011-11-28" "2012-09-01" "2013-08-03" "2012-05-01" "2013-08-03"
##  [1041] "2012-05-01" "2013-06-17" "2013-02-13" "2013-02-13" "2012-04-09"
##  [1046] "2011-11-13" "2013-06-17" "2013-02-13" "2013-02-13" "2012-04-09"
##  [1051] "2012-04-09" "2013-02-13" "2011-11-13" "2012-06-20" "2011-11-13"
##  [1056] "2012-06-20" "2013-02-13" "2012-06-20" "2012-04-09" "2012-06-20"
##  [1061] "2012-06-20" "2012-04-09" "2013-05-09" "2013-05-09" "2013-05-09"
##  [1066] "2011-05-03" "2011-10-16" "2011-05-28" "2011-05-28" "2011-05-03"
##  [1071] "2011-10-16" "2011-10-16" "2011-05-03" "2011-10-16" "2011-10-16"
##  [1076] "2011-05-03" "2011-10-16" "2013-11-28" "2014-01-03" "2014-01-03"
##  [1081] "2014-01-03" "2013-11-28" "2012-09-27" "2011-10-22" "2011-10-22"
##  [1086] "2011-10-22" "2011-10-22" "2012-09-27" "2011-10-22" "2012-10-01"
##  [1091] "2012-10-01" "2013-12-02" "2013-12-02" "2012-10-01" "2013-12-02"
##  [1096] "2013-12-02" "2013-12-02" "2012-10-01" "2012-10-01" "2012-10-01"
##  [1101] "2012-09-25" "2012-09-25" "2013-09-10" "2012-09-25" "2012-09-25"
##  [1106] "2013-09-10" "2013-09-10" "2012-10-23" "2012-10-23" "2013-07-06"
##  [1111] "2013-07-01" "2013-07-01" "2013-07-01" "2013-07-06" "2013-07-06"
##  [1116] "2012-12-21" "2013-07-01" "2011-08-11" "2013-07-01" "2013-07-06"
##  [1121] "2012-11-18" "2012-11-18" "2013-07-01" "2012-05-01" "2012-12-24"
##  [1126] "2011-08-11" "2012-11-18" "2012-12-21" "2012-11-18" "2012-12-24"
##  [1131] "2012-05-01" "2013-07-06" "2011-01-26" "2011-01-26" "2011-08-11"
##  [1136] "2012-05-01" "2012-12-21" "2011-08-11" "2012-12-24" "2013-07-06"
##  [1141] "2012-12-21" "2012-05-01" "2012-12-24" "2012-12-24" "2012-12-21"
##  [1146] "2011-08-11" "2012-05-01" "2012-07-19" "2012-07-19" "2012-07-19"
##  [1151] "2012-07-19" "2012-07-19" "2013-10-28" "2011-06-24" "2011-06-24"
##  [1156] "2013-10-28" "2011-10-23" "2011-10-23" "2011-10-23" "2013-01-13"
##  [1161] "2011-10-23" "2011-10-23" "2013-01-13" "2012-05-12" "2012-05-12"
##  [1166] "2012-05-12" "2012-05-12" "2012-05-12" "2011-03-25" "2011-03-25"
##  [1171] "2011-03-25" "2011-03-25" "2011-03-25" "2013-05-26" "2013-05-26"
##  [1176] "2013-05-26" "2012-04-04" "2012-04-04" "2013-11-16" "2012-04-04"
##  [1181] "2013-11-16" "2012-04-04" "2012-04-04" "2013-11-16" "2012-07-31"
##  [1186] "2013-07-17" "2013-07-17" "2011-12-19" "2011-12-19" "2012-07-31"
##  [1191] "2012-07-31" "2012-07-31" "2012-06-03" "2012-07-31" "2011-12-19"
##  [1196] "2012-06-03" "2012-03-31" "2011-09-09" "2011-09-09" "2012-03-31"
##  [1201] "2011-09-09" "2012-03-31" "2011-09-09" "2011-09-09" "2012-03-31"
##  [1206] "2011-12-02" "2011-12-02" "2011-12-02" "2011-12-02" "2011-12-02"
##  [1211] "2011-09-06" "2012-10-27" "2011-09-06" "2011-09-06" "2012-10-27"
##  [1216] "2013-01-14" "2011-09-06" "2013-01-14" "2011-09-06" "2012-06-03"
##  [1221] "2013-09-01" "2012-02-04" "2012-06-03" "2012-06-03" "2012-06-03"
##  [1226] "2011-05-22" "2013-09-01" "2012-02-04" "2012-02-04" "2011-05-22"
##  [1231] "2012-06-03" "2012-10-26" "2012-10-26" "2013-10-04" "2011-06-04"
##  [1236] "2011-06-04" "2011-06-04" "2013-10-04" "2011-06-04" "2013-10-04"
##  [1241] "2012-04-24" "2012-04-24" "2012-04-24" "2013-11-02" "2011-06-11"
##  [1246] "2013-11-02" "2011-06-11" "2013-11-02" "2013-11-02" "2011-06-11"
##  [1251] "2013-04-12" "2013-04-12" "2013-11-02" "2011-06-11" "2011-06-11"
##  [1256] "2011-10-30" "2011-10-30" "2011-06-17" "2011-06-08" "2011-06-17"
##  [1261] "2012-04-01" "2011-06-08" "2012-04-01" "2011-06-08" "2013-07-22"
##  [1266] "2011-06-16" "2011-06-16" "2011-06-17" "2013-07-22" "2011-06-16"
##  [1271] "2013-07-22" "2011-06-24" "2011-06-24" "2011-06-24" "2011-06-24"
##  [1276] "2011-06-24" "2011-06-24" "2011-08-23" "2011-08-23" "2011-08-23"
##  [1281] "2013-12-16" "2013-02-17" "2013-02-22" "2014-02-03" "2013-02-17"
##  [1286] "2013-02-22" "2011-11-01" "2014-02-03" "2013-12-16" "2013-02-22"
##  [1291] "2011-11-01" "2014-02-03" "2014-02-03" "2013-02-11" "2011-11-01"
##  [1296] "2013-02-11" "2011-08-24" "2011-08-24" "2011-08-24" "2011-08-24"
##  [1301] "2011-08-24" "2011-08-24" "2011-12-07" "2011-05-05" "2013-11-03"
##  [1306] "2011-04-21" "2011-12-07" "2013-11-03" "2011-12-07" "2011-12-07"
##  [1311] "2011-12-07" "2011-05-05" "2013-11-03" "2011-04-21" "2013-07-23"
##  [1316] "2013-09-21" "2013-03-03" "2013-09-21" "2013-03-03" "2013-07-23"
##  [1321] "2013-07-23" "2013-09-21" "2013-07-23" "2013-07-23" "2013-02-14"
##  [1326] "2011-02-22" "2011-02-22" "2011-02-22" "2011-02-22" "2011-02-22"
##  [1331] "2013-02-14" "2011-06-23" "2011-06-23" "2012-11-09" "2011-06-23"
##  [1336] "2012-11-09" "2012-11-09" "2012-11-21" "2012-11-09" "2011-06-23"
##  [1341] "2011-06-23" "2012-11-21" "2012-11-09" "2012-09-15" "2012-09-15"
##  [1346] "2014-02-19" "2012-05-08" "2012-05-12" "2012-05-08" "2014-02-19"
##  [1351] "2012-05-12" "2014-02-19" "2012-05-08" "2014-02-19" "2012-05-12"
##  [1356] "2014-02-19" "2013-02-18" "2013-12-22" "2013-02-18" "2013-02-18"
##  [1361] "2013-12-22" "2013-02-18" "2013-12-22" "2013-12-22" "2013-02-18"
##  [1366] "2013-02-18" "2013-12-22" "2011-10-23" "2011-10-23" "2011-10-23"
##  [1371] "2011-10-23" "2011-10-23" "2012-04-05" "2013-07-01" "2013-07-01"
##  [1376] "2011-07-11" "2013-07-01" "2011-07-11" "2011-07-11" "2012-03-30"
##  [1381] "2011-07-11" "2011-07-11" "2012-04-05" "2012-03-30" "2011-09-25"
##  [1386] "2011-09-25" "2011-05-31" "2011-05-31" "2013-02-05" "2011-05-13"
##  [1391] "2011-05-31" "2011-05-31" "2011-05-31" "2013-02-05" "2011-05-13"
##  [1396] "2011-05-31" "2014-02-16" "2013-04-26" "2014-02-16" "2013-04-26"
##  [1401] "2014-02-16" "2012-11-26" "2012-11-26" "2012-11-26" "2011-04-12"
##  [1406] "2011-04-12" "2013-09-18" "2013-09-18" "2011-09-27" "2011-03-23"
##  [1411] "2011-09-27" "2011-03-23" "2011-03-23" "2011-03-23" "2011-03-23"
##  [1416] "2011-09-27" "2011-03-23" "2012-10-09" "2012-10-09" "2011-11-20"
##  [1421] "2011-11-20" "2012-12-30" "2012-12-30" "2011-11-20" "2012-10-09"
##  [1426] "2012-10-09" "2012-12-30" "2012-03-09" "2011-03-05" "2011-03-05"
##  [1431] "2012-03-09" "2012-03-09" "2012-09-07" "2012-09-07" "2012-09-07"
##  [1436] "2012-09-07" "2012-09-07" "2012-12-14" "2013-02-06" "2013-01-11"
##  [1441] "2013-01-11" "2013-01-12" "2012-12-14" "2013-02-06" "2012-07-01"
##  [1446] "2012-07-01" "2012-07-01" "2013-01-12" "2012-07-07" "2012-12-14"
##  [1451] "2012-07-07" "2013-01-11" "2013-01-12" "2013-02-06" "2012-12-14"
##  [1456] "2013-02-06" "2012-12-14" "2012-12-14" "2013-02-06" "2013-11-06"
##  [1461] "2013-11-06" "2013-11-06" "2011-05-06" "2011-05-06" "2011-05-06"
##  [1466] "2011-05-06" "2011-05-06" "2013-12-29" "2013-12-29" "2011-07-09"
##  [1471] "2011-07-09" "2013-12-29" "2013-12-29" "2011-07-09" "2013-12-29"
##  [1476] "2013-08-01" "2013-08-01" "2013-08-01" "2013-08-01" "2013-08-01"
##  [1481] "2013-02-16" "2013-02-16" "2013-02-16" "2013-09-24" "2013-09-24"
##  [1486] "2013-09-24" "2011-09-14" "2011-09-14" "2011-01-31" "2011-01-25"
##  [1491] "2011-01-31" "2011-01-31" "2014-01-26" "2014-01-26" "2011-01-25"
##  [1496] "2014-01-26" "2011-01-31" "2011-01-25" "2011-01-25" "2011-01-25"
##  [1501] "2014-01-26" "2014-01-26" "2014-01-26" "2011-01-31" "2014-02-18"
##  [1506] "2012-12-07" "2014-02-18" "2012-12-07" "2012-12-07" "2012-12-07"
##  [1511] "2012-12-07" "2014-02-18" "2014-02-18" "2014-02-18" "2014-02-18"
##  [1516] "2014-02-18" "2014-02-18" "2012-09-09" "2013-01-08" "2012-06-29"
##  [1521] "2013-01-08" "2012-04-21" "2012-04-18" "2012-09-09" "2012-06-29"
##  [1526] "2012-09-09" "2012-03-21" "2012-04-18" "2012-04-21" "2012-06-29"
##  [1531] "2012-09-09" "2012-03-21" "2013-01-09" "2012-04-18" "2012-03-21"
##  [1536] "2012-04-28" "2013-01-09" "2012-04-21" "2012-04-28" "2013-01-09"
##  [1541] "2013-01-08" "2012-04-28" "2012-12-27" "2012-12-27" "2011-11-03"
##  [1546] "2011-11-03" "2012-12-27" "2011-11-03" "2012-12-27" "2012-11-14"
##  [1551] "2012-09-20" "2012-11-14" "2012-02-15" "2012-11-14" "2012-09-20"
##  [1556] "2012-11-14" "2012-08-02" "2012-02-15" "2012-09-20" "2012-11-14"
##  [1561] "2012-09-20" "2012-09-20" "2012-08-08" "2012-02-15" "2013-05-26"
##  [1566] "2013-05-26" "2012-08-08" "2012-11-14" "2012-08-02" "2011-10-09"
##  [1571] "2011-10-09" "2012-08-08" "2012-08-02" "2012-03-11" "2013-03-05"
##  [1576] "2013-03-05" "2013-03-05" "2014-01-19" "2012-03-11" "2014-01-19"
##  [1581] "2013-03-05" "2014-01-19" "2013-03-05" "2014-01-07" "2014-01-07"
##  [1586] "2011-11-27" "2014-01-07" "2011-11-27" "2012-05-18" "2012-02-06"
##  [1591] "2012-05-18" "2012-05-18" "2012-05-18" "2012-05-18" "2012-02-06"
##  [1596] "2013-07-14" "2013-07-14" "2012-04-05" "2013-07-14" "2012-04-05"
##  [1601] "2012-06-01" "2012-04-05" "2012-04-05" "2012-06-01" "2012-04-05"
##  [1606] "2012-06-01" "2011-03-04" "2012-03-28" "2012-06-16" "2012-06-16"
##  [1611] "2012-03-28" "2011-03-04" "2011-03-04" "2011-10-07" "2011-10-07"
##  [1616] "2013-09-08" "2013-09-08" "2013-09-08" "2013-09-08" "2013-09-08"
##  [1621] "2013-08-05" "2011-07-31" "2011-07-31" "2011-07-31" "2013-08-05"
##  [1626] "2011-07-31" "2011-07-31" "2012-10-28" "2012-10-28" "2011-08-02"
##  [1631] "2012-10-28" "2011-08-02" "2011-08-02" "2012-10-28" "2012-10-28"
##  [1636] "2011-08-02" "2011-08-02" "2011-03-06" "2012-05-08" "2011-03-06"
##  [1641] "2012-05-08" "2012-05-08" "2011-03-06" "2011-03-06" "2012-02-15"
##  [1646] "2012-09-10" "2012-09-19" "2012-02-15" "2011-03-06" "2012-09-10"
##  [1651] "2012-09-19" "2012-02-15" "2012-06-19" "2012-06-19" "2013-08-02"
##  [1656] "2013-08-02" "2013-08-02" "2013-08-02" "2013-08-02" "2011-02-01"
##  [1661] "2011-02-01" "2011-02-01" "2011-02-01" "2011-02-01" "2011-02-01"
##  [1666] "2011-10-31" "2011-10-31" "2013-02-14" "2012-07-24" "2012-07-24"
##  [1671] "2012-07-24" "2012-07-24" "2013-02-14" "2013-02-14" "2012-09-04"
##  [1676] "2012-09-30" "2011-09-26" "2012-07-24" "2012-09-30" "2011-09-26"
##  [1681] "2012-08-31" "2012-07-23" "2012-07-23" "2012-09-04" "2012-08-31"
##  [1686] "2012-07-23" "2012-07-23" "2012-08-31" "2013-02-14" "2012-09-04"
##  [1691] "2013-02-14" "2012-07-23" "2012-10-07" "2012-10-07" "2012-10-05"
##  [1696] "2011-05-26" "2012-01-29" "2012-10-07" "2012-01-29" "2012-10-05"
##  [1701] "2012-10-05" "2011-05-26" "2012-10-05" "2012-01-29" "2011-05-26"
##  [1706] "2012-10-05" "2011-06-11" "2011-06-11" "2013-03-04" "2013-03-04"
##  [1711] "2011-06-11" "2013-03-04" "2013-03-04" "2013-03-04" "2013-08-09"
##  [1716] "2013-08-09" "2011-08-16" "2011-08-16" "2013-12-29" "2013-08-09"
##  [1721] "2013-12-25" "2011-12-09" "2013-08-09" "2013-08-09" "2013-12-29"
##  [1726] "2011-12-09" "2013-12-25" "2011-12-09" "2013-10-26" "2013-10-26"
##  [1731] "2013-10-26" "2013-12-20" "2013-12-20" "2013-12-20" "2011-09-26"
##  [1736] "2011-09-26" "2011-09-26" "2011-09-26" "2011-09-26" "2013-05-30"
##  [1741] "2013-05-30" "2013-01-03" "2012-03-29" "2013-05-30" "2013-01-03"
##  [1746] "2012-03-29" "2012-03-29" "2013-01-03" "2013-01-03" "2013-05-30"
##  [1751] "2013-05-30" "2013-01-03" "2012-03-29" "2012-03-29" "2012-04-05"
##  [1756] "2012-04-05" "2012-04-01" "2012-04-01" "2012-04-01" "2012-04-01"
##  [1761] "2012-04-05" "2012-04-05" "2012-04-01" "2012-04-05" "2012-09-20"
##  [1766] "2012-09-20" "2012-09-20" "2012-09-20" "2012-04-22" "2013-03-26"
##  [1771] "2012-04-22" "2013-03-26" "2012-03-25" "2012-08-08" "2012-03-25"
##  [1776] "2012-03-25" "2012-08-08" "2012-03-25" "2012-03-25" "2012-06-21"
##  [1781] "2011-06-26" "2012-06-21" "2011-06-26" "2011-06-26" "2011-06-26"
##  [1786] "2012-06-21" "2011-12-26" "2013-06-27" "2013-06-27" "2012-06-28"
##  [1791] "2011-12-30" "2011-12-30" "2011-12-26" "2011-12-30" "2013-07-02"
##  [1796] "2011-12-26" "2011-12-30" "2011-04-10" "2011-04-10" "2012-06-28"
##  [1801] "2011-12-30" "2013-07-02" "2012-08-02" "2012-02-18" "2013-10-21"
##  [1806] "2012-08-02" "2012-02-18" "2011-10-18" "2013-10-21" "2012-08-02"
##  [1811] "2013-10-21" "2011-10-18" "2013-08-01" "2013-10-21" "2013-08-01"
##  [1816] "2013-08-01" "2013-10-21" "2012-08-02" "2012-08-02" "2013-08-01"
##  [1821] "2011-12-08" "2011-12-08" "2013-08-01" "2011-12-08" "2013-11-17"
##  [1826] "2013-11-17" "2013-11-17" "2013-11-17" "2013-11-17" "2011-06-17"
##  [1831] "2011-06-17" "2012-03-17" "2012-03-17" "2012-03-17" "2011-06-17"
##  [1836] "2011-06-17" "2011-06-17" "2011-11-21" "2011-11-21" "2011-11-21"
##  [1841] "2012-09-26" "2012-09-22" "2011-04-23" "2012-04-01" "2011-04-23"
##  [1846] "2011-04-23" "2012-09-26" "2012-09-22" "2011-04-23" "2012-02-11"
##  [1851] "2012-09-26" "2012-02-11" "2011-04-23" "2012-04-01" "2012-02-11"
##  [1856] "2012-04-01" "2012-09-22" "2012-02-11" "2012-02-11" "2012-04-01"
##  [1861] "2012-04-01" "2013-08-02" "2013-03-05" "2013-08-02" "2013-03-05"
##  [1866] "2013-03-05" "2011-02-23" "2011-02-23" "2013-04-08" "2013-09-02"
##  [1871] "2012-12-21" "2012-12-21" "2013-08-25" "2013-08-25" "2013-09-02"
##  [1876] "2013-04-08" "2012-12-21" "2013-04-08" "2013-04-08" "2012-07-28"
##  [1881] "2012-07-28" "2012-04-27" "2011-08-31" "2011-08-31" "2012-07-28"
##  [1886] "2012-07-28" "2012-03-21" "2011-08-31" "2012-04-27" "2012-07-28"
##  [1891] "2012-03-21" "2012-04-27" "2011-08-31" "2012-04-27" "2011-08-31"
##  [1896] "2012-03-21" "2012-04-27" "2011-05-30" "2011-05-30" "2011-05-30"
##  [1901] "2011-05-30" "2013-05-20" "2013-04-24" "2012-10-29" "2011-12-04"
##  [1906] "2013-04-24" "2012-10-29" "2011-12-04" "2012-10-29" "2011-12-04"
##  [1911] "2011-12-04" "2012-08-10" "2012-11-05" "2012-11-05" "2013-05-20"
##  [1916] "2013-05-20" "2012-11-05" "2012-08-10" "2011-02-08" "2011-02-08"
##  [1921] "2011-02-08" "2011-02-08" "2011-02-08" "2011-02-08" "2011-09-07"
##  [1926] "2013-06-13" "2011-09-07" "2012-10-26" "2013-06-13" "2013-12-12"
##  [1931] "2013-12-12" "2012-10-26" "2013-06-13" "2013-06-13" "2011-12-18"
##  [1936] "2011-12-18" "2012-03-01" "2012-03-01" "2012-08-15" "2012-08-15"
##  [1941] "2012-08-15" "2012-03-01" "2012-08-15" "2011-12-18" "2012-03-01"
##  [1946] "2013-03-31" "2013-03-31" "2013-03-31" "2013-03-31" "2013-03-31"
##  [1951] "2013-07-16" "2013-07-06" "2013-07-16" "2013-07-16" "2013-06-30"
##  [1956] "2013-07-06" "2012-01-05" "2013-07-16" "2013-06-30" "2012-01-05"
##  [1961] "2013-06-30" "2013-07-06" "2013-07-03" "2013-07-03" "2013-07-03"
##  [1966] "2011-03-20" "2011-03-20" "2012-03-27" "2012-03-27" "2012-03-27"
##  [1971] "2011-03-20" "2012-03-27" "2012-03-27" "2013-08-10" "2011-11-17"
##  [1976] "2011-11-17" "2013-08-10" "2013-08-10" "2011-11-17" "2011-11-17"
##  [1981] "2011-11-17" "2013-03-06" "2012-09-30" "2012-09-30" "2013-03-06"
##  [1986] "2013-02-26" "2013-02-26" "2012-01-31" "2012-01-31" "2013-07-24"
##  [1991] "2013-07-24" "2013-07-24" "2013-08-15" "2013-08-15" "2013-08-15"
##  [1996] "2012-06-25" "2012-06-25" "2012-06-25" "2012-08-11" "2012-08-11"
##  [2001] "2012-08-11" "2012-06-25" "2012-06-25" "2012-11-19" "2013-06-07"
##  [2006] "2013-06-04" "2013-06-04" "2013-12-20" "2012-11-19" "2013-12-20"
##  [2011] "2013-06-07" "2013-06-07" "2013-06-07" "2012-11-19" "2012-11-19"
##  [2016] "2013-06-07" "2013-01-04" "2013-01-04" "2013-11-30" "2013-12-07"
##  [2021] "2013-01-04" "2013-11-30" "2013-12-07" "2013-11-30" "2013-12-07"
##  [2026] "2013-03-01" "2013-12-07" "2013-03-01" "2013-12-07" "2012-02-19"
##  [2031] "2013-12-07" "2012-02-19" "2012-09-25" "2012-09-25" "2013-03-01"
##  [2036] "2012-04-30" "2013-03-01" "2012-04-30" "2013-03-01" "2013-03-01"
##  [2041] "2013-03-01" "2012-04-30" "2013-11-27" "2013-08-15" "2013-08-15"
##  [2046] "2013-11-27" "2013-08-15" "2011-02-07" "2013-08-15" "2011-02-07"
##  [2051] "2013-11-27" "2011-02-07" "2013-11-24" "2013-11-24" "2011-02-07"
##  [2056] "2011-02-07" "2013-11-24" "2013-01-02" "2013-01-02" "2013-01-02"
##  [2061] "2013-01-02" "2013-01-02" "2012-05-27" "2012-02-28" "2012-05-27"
##  [2066] "2012-05-27" "2012-05-27" "2012-02-28" "2012-02-28" "2012-05-27"
##  [2071] "2012-05-23" "2012-05-27" "2012-05-23" "2012-03-04" "2012-05-23"
##  [2076] "2012-03-04" "2012-05-23" "2012-05-23" "2013-01-16" "2013-01-16"
##  [2081] "2012-05-23" "2013-01-16" "2012-03-04" "2012-03-12" "2012-03-12"
##  [2086] "2012-07-01" "2012-07-01" "2012-06-26" "2012-03-12" "2012-06-26"
##  [2091] "2012-03-03" "2012-03-03" "2013-11-17" "2013-11-17" "2012-03-03"
##  [2096] "2013-11-17" "2011-11-21" "2011-11-21" "2012-04-29" "2011-05-18"
##  [2101] "2012-05-19" "2012-05-19" "2011-05-18" "2012-04-29" "2012-05-19"
##  [2106] "2011-05-18" "2013-08-17" "2013-08-17" "2012-04-18" "2012-09-26"
##  [2111] "2012-04-18" "2012-09-26" "2013-08-17" "2013-08-17" "2012-09-28"
##  [2116] "2012-09-28" "2012-09-26" "2012-09-26" "2013-08-17" "2012-09-26"
##  [2121] "2013-08-17" "2012-09-28" "2012-04-18" "2013-09-29" "2013-09-29"
##  [2126] "2013-02-05" "2013-02-05" "2011-03-16" "2013-02-05" "2013-03-14"
##  [2131] "2011-03-16" "2011-03-16" "2013-03-14" "2011-03-16" "2013-03-14"
##  [2136] "2013-01-07" "2013-01-07" "2013-01-07" "2011-05-12" "2011-02-01"
##  [2141] "2011-09-07" "2011-05-12" "2011-02-01" "2011-02-01" "2011-05-12"
##  [2146] "2011-02-01" "2011-02-01" "2011-02-01" "2011-09-07" "2011-08-24"
##  [2151] "2012-02-02" "2012-08-04" "2011-08-24" "2012-08-04" "2011-08-24"
##  [2156] "2011-08-24" "2011-09-20" "2012-08-04" "2012-08-04" "2012-02-02"
##  [2161] "2011-09-20" "2011-09-20" "2012-08-04" "2012-04-03" "2012-04-03"
##  [2166] "2013-09-17" "2011-11-29" "2011-11-29" "2011-04-07" "2011-04-07"
##  [2171] "2013-09-17" "2011-04-07" "2011-11-29" "2011-04-07" "2011-04-07"
##  [2176] "2013-09-17" "2013-06-15" "2013-06-15" "2012-03-10" "2013-06-15"
##  [2181] "2012-03-10" "2012-03-10" "2012-03-10" "2012-03-10" "2012-07-02"
##  [2186] "2012-07-02" "2012-07-02" "2012-07-02" "2012-10-06" "2011-04-25"
##  [2191] "2012-07-02" "2011-04-25" "2011-04-25" "2012-10-06" "2012-10-06"
##  [2196] "2012-10-06" "2012-08-25" "2012-08-25" "2013-10-20" "2013-10-20"
##  [2201] "2012-08-25" "2012-08-25" "2013-10-20" "2012-08-25" "2013-10-20"
##  [2206] "2011-08-12" "2011-08-18" "2011-08-12" "2013-05-08" "2011-02-07"
##  [2211] "2013-05-08" "2011-02-07" "2011-08-18" "2013-05-08" "2012-07-19"
##  [2216] "2012-04-14" "2012-07-19" "2012-04-14" "2012-04-14" "2011-11-30"
##  [2221] "2011-11-30" "2012-04-14" "2012-07-19" "2012-04-14" "2012-09-08"
##  [2226] "2012-02-25" "2012-09-08" "2012-02-25" "2013-02-28" "2012-09-08"
##  [2231] "2013-02-28" "2011-05-22" "2012-09-08" "2012-09-08" "2011-05-22"
##  [2236] "2012-02-25" "2011-05-22" "2012-09-12" "2013-06-16" "2012-09-12"
##  [2241] "2013-06-16" "2012-09-12" "2013-06-16" "2012-08-15" "2013-08-29"
##  [2246] "2013-08-29" "2013-08-29" "2012-08-15" "2012-08-15" "2011-08-04"
##  [2251] "2011-08-04" "2012-06-12" "2011-11-23" "2011-11-23" "2012-06-12"
##  [2256] "2011-11-23" "2012-06-12" "2011-11-23" "2011-11-23" "2012-11-30"
##  [2261] "2012-11-30" "2012-11-30" "2012-12-30" "2013-01-31" "2012-07-09"
##  [2266] "2012-12-30" "2012-07-09" "2013-01-31" "2011-05-14" "2012-12-05"
##  [2271] "2013-09-07" "2013-09-07" "2011-05-14" "2013-09-07" "2012-12-05"
##  [2276] "2012-12-05" "2013-09-07" "2011-05-14" "2012-09-18" "2012-09-18"
##  [2281] "2012-09-18" "2012-09-18" "2012-09-18" "2012-09-18" "2014-01-29"
##  [2286] "2013-12-01" "2014-02-08" "2014-01-29" "2013-12-01" "2013-12-01"
##  [2291] "2014-01-29" "2014-02-08" "2014-02-08" "2012-11-20" "2012-11-20"
##  [2296] "2013-01-07" "2012-12-04" "2013-07-23" "2013-07-26" "2011-03-09"
##  [2301] "2011-03-09" "2011-03-09" "2011-11-27" "2011-03-09" "2011-11-27"
##  [2306] "2013-07-26" "2011-03-09" "2012-12-04" "2013-07-23" "2013-01-07"
##  [2311] "2011-03-09" "2012-10-23" "2012-10-23" "2012-10-23" "2012-08-29"
##  [2316] "2013-10-12" "2013-10-12" "2012-08-29" "2012-06-20" "2012-06-20"
##  [2321] "2012-08-29" "2012-06-20" "2012-06-20" "2013-10-12" "2012-10-09"
##  [2326] "2012-02-19" "2012-10-09" "2012-02-19" "2012-02-19" "2012-02-19"
##  [2331] "2012-02-21" "2012-02-21" "2012-02-21" "2012-02-21" "2012-11-11"
##  [2336] "2012-10-11" "2011-06-07" "2012-11-11" "2012-10-11" "2012-10-11"
##  [2341] "2011-06-07" "2011-06-07" "2012-10-11" "2012-11-11" "2012-10-11"
##  [2346] "2012-11-11" "2012-11-11" "2011-07-16" "2011-07-16" "2011-07-16"
##  [2351] "2011-07-16" "2011-07-16" "2011-11-09" "2011-11-09" "2012-06-22"
##  [2356] "2012-06-22" "2012-06-22" "2012-06-22" "2012-06-22" "2011-11-09"
##  [2361] "2012-12-15" "2012-12-15" "2012-11-04" "2012-11-04" "2011-10-21"
##  [2366] "2012-11-04" "2012-11-04" "2011-10-21" "2012-11-04" "2012-12-06"
##  [2371] "2011-10-21" "2012-12-06" "2011-10-21" "2011-10-21" "2012-05-20"
##  [2376] "2012-05-20" "2012-05-20" "2013-07-12" "2013-07-12" "2013-07-12"
##  [2381] "2013-07-12" "2013-07-12" "2011-05-25" "2011-05-25" "2013-07-12"
##  [2386] "2012-03-18" "2012-03-18" "2014-01-03" "2012-03-18" "2012-03-18"
##  [2391] "2012-03-18" "2012-03-18" "2014-01-03" "2011-03-28" "2011-03-28"
##  [2396] "2013-09-09" "2011-03-28" "2011-03-28" "2013-09-09" "2011-03-28"
##  [2401] "2013-09-09" "2014-01-09" "2014-02-02" "2014-02-02" "2012-08-13"
##  [2406] "2012-08-13" "2012-08-13" "2014-01-09" "2014-02-02" "2011-10-14"
##  [2411] "2012-08-13" "2011-10-14" "2014-01-09" "2014-01-09" "2012-08-13"
##  [2416] "2011-10-14" "2014-01-09" "2011-10-14" "2011-10-14" "2014-01-09"
##  [2421] "2013-01-12" "2012-05-10" "2013-01-12" "2012-05-10" "2013-01-12"
##  [2426] "2013-01-12" "2013-01-12" "2012-05-10" "2013-10-03" "2013-10-03"
##  [2431] "2013-10-03" "2011-04-26" "2011-07-01" "2011-07-08" "2011-04-26"
##  [2436] "2011-07-08" "2011-07-08" "2012-09-18" "2011-04-26" "2012-09-18"
##  [2441] "2011-07-08" "2011-04-26" "2012-09-10" "2012-09-15" "2012-09-10"
##  [2446] "2011-04-26" "2011-07-01" "2011-07-01" "2011-04-26" "2011-07-01"
##  [2451] "2012-09-15" "2011-07-08" "2011-07-01" "2011-05-11" "2011-05-11"
##  [2456] "2011-05-11" "2011-05-11" "2011-05-11" "2012-06-29" "2012-06-29"
##  [2461] "2012-06-29" "2012-06-29" "2012-06-29" "2012-06-29" "2012-09-11"
##  [2466] "2011-08-08" "2011-08-08" "2012-09-11" "2011-08-06" "2011-08-08"
##  [2471] "2012-09-11" "2011-08-06" "2011-08-08" "2012-09-11" "2011-08-06"
##  [2476] "2011-08-06" "2012-09-11" "2011-08-08" "2011-08-06" "2011-08-15"
##  [2481] "2011-08-15" "2011-08-15" "2011-08-15" "2013-07-13" "2013-07-13"
##  [2486] "2012-10-31" "2012-10-31" "2012-01-25" "2012-10-31" "2012-01-25"
##  [2491] "2012-10-31" "2012-10-31" "2012-01-25" "2012-01-25" "2012-01-25"
##  [2496] "2012-12-16" "2012-12-16" "2012-12-16" "2014-01-16" "2014-01-16"
##  [2501] "2014-01-16" "2012-04-06" "2012-04-06" "2013-06-22" "2012-04-06"
##  [2506] "2013-06-22" "2012-04-06" "2012-04-06" "2013-06-22" "2011-12-05"
##  [2511] "2011-12-05" "2011-12-05" "2011-12-05" "2011-12-05" "2013-02-08"
##  [2516] "2011-08-03" "2013-02-08" "2013-02-08" "2013-02-08" "2011-08-03"
##  [2521] "2011-08-03" "2013-02-08" "2013-02-08" "2011-12-12" "2011-12-12"
##  [2526] "2012-09-29" "2011-12-12" "2013-04-12" "2013-04-12" "2012-09-29"
##  [2531] "2012-11-23" "2012-11-29" "2011-12-12" "2012-11-23" "2011-12-12"
##  [2536] "2012-11-23" "2012-11-29" "2011-12-12" "2013-12-07" "2012-09-29"
##  [2541] "2013-12-07" "2013-12-07" "2012-09-29" "2012-11-29" "2012-09-29"
##  [2546] "2013-03-02" "2013-03-02" "2011-05-20" "2011-05-20" "2011-05-20"
##  [2551] "2011-05-14" "2011-05-14" "2011-05-14" "2011-05-14" "2013-06-15"
##  [2556] "2013-06-15" "2013-06-15" "2013-06-15" "2013-06-15" "2013-02-27"
##  [2561] "2011-10-01" "2011-09-23" "2011-09-23" "2012-08-24" "2011-10-01"
##  [2566] "2012-08-24" "2011-10-01" "2013-02-27" "2012-08-24" "2013-12-06"
##  [2571] "2011-10-01" "2011-10-01" "2013-12-06" "2011-09-23" "2011-09-23"
##  [2576] "2011-10-01" "2011-09-23" "2013-02-27" "2011-09-23" "2012-10-16"
##  [2581] "2012-10-16" "2012-09-08" "2013-04-08" "2012-09-02" "2012-09-08"
##  [2586] "2011-11-15" "2011-11-15" "2013-04-08" "2011-11-15" "2011-11-15"
##  [2591] "2011-11-15" "2012-09-02" "2012-09-08" "2012-09-02" "2013-04-08"
##  [2596] "2012-09-08" "2013-04-08" "2012-09-02" "2011-08-15" "2012-02-02"
##  [2601] "2011-08-15" "2012-02-02" "2012-03-31" "2012-03-31" "2012-10-07"
##  [2606] "2012-06-02" "2012-10-07" "2012-06-02" "2012-06-02" "2012-10-07"
##  [2611] "2012-10-07" "2012-10-07" "2012-10-07" "2011-02-09" "2011-09-02"
##  [2616] "2011-02-09" "2011-02-09" "2011-09-02" "2011-02-09" "2011-09-02"
##  [2621] "2011-02-09" "2011-02-09" "2011-09-02" "2011-09-02" "2012-10-01"
##  [2626] "2012-10-01" "2012-10-01" "2013-07-14" "2012-10-01" "2012-10-01"
##  [2631] "2013-07-14" "2012-11-13" "2014-01-22" "2014-01-22" "2012-11-13"
##  [2636] "2014-01-22" "2014-01-22" "2014-01-22" "2014-01-22" "2011-01-30"
##  [2641] "2011-01-30" "2011-01-30" "2013-12-07" "2011-01-30" "2013-12-07"
##  [2646] "2013-12-07" "2011-09-16" "2013-02-25" "2013-02-25" "2011-09-16"
##  [2651] "2011-12-29" "2011-12-29" "2013-10-27" "2013-10-27" "2013-06-12"
##  [2656] "2013-10-27" "2013-10-27" "2013-06-12" "2013-06-12" "2013-10-27"
##  [2661] "2013-06-12" "2011-02-01" "2013-09-15" "2013-09-15" "2011-02-01"
##  [2666] "2011-02-01" "2013-09-15" "2011-02-01" "2011-02-01" "2011-06-05"
##  [2671] "2013-10-22" "2011-06-05" "2011-06-05" "2011-06-05" "2013-10-14"
##  [2676] "2013-10-14" "2013-10-22" "2013-10-14" "2011-06-05" "2013-10-22"
##  [2681] "2011-06-15" "2011-08-22" "2012-04-11" "2011-06-15" "2011-08-22"
##  [2686] "2011-08-22" "2012-04-11" "2012-04-11" "2012-04-11" "2012-04-11"
##  [2691] "2013-10-23" "2011-09-09" "2011-09-09" "2011-09-09" "2011-09-09"
##  [2696] "2013-10-23" "2013-08-05" "2013-08-05" "2013-10-23" "2013-10-23"
##  [2701] "2013-08-05" "2013-10-23" "2011-09-09" "2013-08-08" "2013-08-08"
##  [2706] "2013-08-08" "2011-02-24" "2013-08-08" "2011-02-24" "2011-02-24"
##  [2711] "2013-08-08" "2011-02-24" "2011-02-24" "2012-11-07" "2011-08-05"
##  [2716] "2011-08-05" "2011-08-05" "2011-08-05" "2012-11-07" "2011-08-05"
##  [2721] "2011-03-27" "2011-03-27" "2011-03-27" "2011-03-27" "2012-07-12"
##  [2726] "2012-06-22" "2012-05-23" "2012-06-24" "2011-03-28" "2011-03-27"
##  [2731] "2012-06-26" "2012-06-26" "2011-03-27" "2011-03-28" "2012-06-24"
##  [2736] "2011-03-28" "2012-06-24" "2012-06-22" "2011-03-28" "2011-03-28"
##  [2741] "2012-06-22" "2012-07-12" "2012-06-26" "2011-03-28" "2012-05-23"
##  [2746] "2012-02-19" "2012-02-19" "2012-02-19" "2012-02-19" "2012-07-26"
##  [2751] "2012-07-26" "2012-07-26" "2012-07-26" "2012-07-26" "2012-07-26"
##  [2756] "2011-07-07" "2013-09-15" "2012-06-08" "2012-06-08" "2012-06-08"
##  [2761] "2011-07-07" "2013-09-15" "2011-07-07" "2013-09-15" "2011-07-07"
##  [2766] "2013-09-15" "2011-07-07" "2013-09-15" "2011-07-07" "2013-03-23"
##  [2771] "2013-03-23" "2013-03-12" "2013-03-12" "2013-03-23" "2013-03-12"
##  [2776] "2013-03-12" "2013-03-12" "2013-03-12" "2013-03-23" "2013-03-23"
##  [2781] "2013-07-03" "2013-07-03" "2012-02-05" "2013-07-03" "2012-04-03"
##  [2786] "2012-04-03" "2012-02-05" "2013-07-03" "2013-07-03" "2012-02-05"
##  [2791] "2012-02-05" "2011-07-26" "2013-02-08" "2013-02-08" "2013-02-08"
##  [2796] "2011-07-26" "2013-02-08" "2013-02-08" "2013-02-08" "2011-07-26"
##  [2801] "2012-01-17" "2012-01-17" "2013-10-25" "2013-09-23" "2013-11-10"
##  [2806] "2013-09-30" "2013-10-25" "2013-10-25" "2013-09-23" "2013-11-10"
##  [2811] "2013-09-30" "2011-10-14" "2011-10-14" "2011-10-14" "2011-10-14"
##  [2816] "2011-10-14" "2012-12-08" "2013-12-10" "2012-12-08" "2013-08-04"
##  [2821] "2013-04-07" "2013-04-07" "2013-08-04" "2013-12-10" "2012-12-08"
##  [2826] "2012-12-08" "2013-08-04" "2012-12-08" "2012-12-08" "2012-05-14"
##  [2831] "2012-11-16" "2012-05-14" "2012-11-16" "2012-05-22" "2012-11-16"
##  [2836] "2012-05-14" "2012-11-16" "2012-05-14" "2012-05-22" "2012-05-22"
##  [2841] "2012-05-14" "2012-05-22" "2012-11-16" "2012-05-14" "2012-11-16"
##  [2846] "2012-05-22" "2012-05-22" "2013-03-05" "2013-10-10" "2013-10-10"
##  [2851] "2013-03-05" "2011-03-13" "2011-03-13" "2011-03-13" "2011-03-28"
##  [2856] "2012-07-17" "2014-01-19" "2011-03-28" "2012-07-17" "2012-07-17"
##  [2861] "2011-03-28" "2012-07-17" "2011-03-28" "2014-01-19" "2014-01-19"
##  [2866] "2011-03-28" "2012-07-17" "2014-01-19" "2013-08-21" "2013-08-21"
##  [2871] "2013-08-21" "2011-04-18" "2012-04-26" "2011-02-06" "2012-11-25"
##  [2876] "2011-02-06" "2012-04-26" "2011-02-06" "2013-07-26" "2012-11-25"
##  [2881] "2012-09-05" "2012-09-05" "2011-04-18" "2013-07-26" "2012-11-25"
##  [2886] "2013-02-07" "2012-03-12" "2013-05-29" "2013-02-07" "2013-01-09"
##  [2891] "2012-03-12" "2012-03-12" "2013-02-07" "2013-07-23" "2013-01-09"
##  [2896] "2013-01-09" "2013-05-29" "2013-02-07" "2012-03-12" "2013-07-23"
##  [2901] "2013-01-09" "2012-03-12" "2013-02-07" "2013-01-09" "2013-07-23"
##  [2906] "2011-10-10" "2011-10-10" "2011-10-10" "2012-09-02" "2011-10-10"
##  [2911] "2012-09-02" "2011-10-10" "2012-02-18" "2012-02-18" "2012-10-01"
##  [2916] "2012-02-18" "2012-10-01" "2013-02-25" "2013-02-25" "2013-02-25"
##  [2921] "2012-02-18" "2012-02-18" "2013-02-25" "2012-02-18" "2013-02-25"
##  [2926] "2012-08-29" "2012-08-29" "2011-04-22" "2012-08-29" "2013-06-22"
##  [2931] "2013-06-22" "2012-08-29" "2013-10-12" "2011-04-22" "2012-08-29"
##  [2936] "2013-10-12" "2012-04-17" "2012-04-17" "2012-04-17" "2012-04-17"
##  [2941] "2011-05-28" "2011-05-28" "2013-04-04" "2013-04-04" "2013-02-22"
##  [2946] "2013-02-22" "2012-10-29" "2012-10-29" "2013-02-22" "2013-02-22"
##  [2951] "2013-02-22" "2013-02-22" "2013-09-08" "2013-09-08" "2012-05-24"
##  [2956] "2012-05-24" "2012-05-24" "2013-09-08" "2011-06-05" "2013-09-08"
##  [2961] "2011-06-05" "2011-06-05" "2013-09-08" "2012-11-06" "2012-11-14"
##  [2966] "2012-11-06" "2012-11-06" "2012-11-14" "2012-11-14" "2012-11-14"
##  [2971] "2012-11-06" "2012-11-14" "2012-11-06" "2012-09-09" "2012-09-09"
##  [2976] "2012-09-09" "2012-09-09" "2013-09-04" "2013-12-30" "2013-09-04"
##  [2981] "2012-09-09" "2013-09-04" "2013-12-30" "2013-10-14" "2013-10-14"
##  [2986] "2011-10-12" "2011-10-12" "2011-10-12" "2013-10-14" "2013-10-08"
##  [2991] "2013-10-08" "2013-10-08" "2011-10-12" "2011-10-12" "2012-03-27"
##  [2996] "2012-03-27" "2012-03-19" "2011-03-19" "2011-03-19" "2012-03-27"
##  [3001] "2012-03-19" "2012-03-19" "2011-07-15" "2011-07-15" "2011-07-15"
##  [3006] "2011-07-15" "2011-07-15" "2012-10-26" "2012-10-26" "2012-06-09"
##  [3011] "2012-06-09" "2011-08-15" "2012-03-23" "2012-12-03" "2012-12-03"
##  [3016] "2013-01-19" "2012-03-23" "2012-12-03" "2011-08-15" "2013-01-27"
##  [3021] "2012-03-23" "2012-03-23" "2012-12-03" "2013-01-19" "2012-12-03"
##  [3026] "2011-08-15" "2012-12-03" "2013-01-27" "2014-02-13" "2014-02-13"
##  [3031] "2013-09-18" "2014-02-13" "2013-09-18" "2014-02-13" "2014-02-13"
##  [3036] "2014-02-13" "2013-09-18" "2012-09-07" "2012-09-07" "2012-09-07"
##  [3041] "2012-09-07" "2012-09-07" "2013-10-27" "2013-06-07" "2013-06-07"
##  [3046] "2012-04-28" "2012-04-28" "2012-04-28" "2013-10-27" "2013-10-27"
##  [3051] "2012-04-28" "2013-06-07" "2012-04-28" "2013-07-23" "2013-07-23"
##  [3056] "2013-07-23" "2013-07-23" "2013-07-23" "2011-07-08" "2012-12-02"
##  [3061] "2012-07-06" "2012-12-02" "2012-07-06" "2011-07-08" "2012-12-02"
##  [3066] "2012-12-02" "2012-12-02" "2012-12-02" "2012-07-06" "2012-01-13"
##  [3071] "2012-01-13" "2011-01-25" "2011-01-25" "2011-01-25" "2011-01-25"
##  [3076] "2011-01-25" "2013-10-18" "2013-10-18" "2013-10-17" "2013-10-18"
##  [3081] "2013-10-18" "2013-10-17" "2013-10-17" "2013-10-17" "2013-10-17"
##  [3086] "2013-10-18" "2013-03-09" "2012-11-27" "2012-11-27" "2013-03-09"
##  [3091] "2012-11-27" "2012-11-27" "2012-11-27" "2013-03-09" "2013-03-09"
##  [3096] "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18"
##  [3101] "2013-05-17" "2013-05-17" "2013-05-17" "2011-08-11" "2011-08-11"
##  [3106] "2013-05-17" "2011-08-11" "2013-05-17" "2013-05-17" "2013-05-10"
##  [3111] "2013-05-10" "2011-12-22" "2011-12-14" "2013-05-10" "2011-12-22"
##  [3116] "2011-12-29" "2011-12-29" "2011-12-16" "2011-12-14" "2011-12-16"
##  [3121] "2011-12-16" "2011-12-14" "2013-11-06" "2013-11-06" "2013-11-06"
##  [3126] "2012-05-10" "2013-10-11" "2013-11-06" "2012-05-10" "2013-11-06"
##  [3131] "2012-06-21" "2012-06-21" "2013-10-11" "2012-05-23" "2012-05-15"
##  [3136] "2013-03-13" "2012-05-23" "2012-05-15" "2013-03-13" "2011-05-18"
##  [3141] "2012-05-13" "2011-05-18" "2012-05-13" "2011-05-18" "2012-05-13"
##  [3146] "2011-12-13" "2011-09-25" "2011-09-25" "2011-09-25" "2011-08-01"
##  [3151] "2011-09-25" "2011-12-13" "2011-09-25" "2011-08-01" "2011-12-13"
##  [3156] "2012-06-28" "2011-12-13" "2011-08-01" "2012-06-28" "2011-09-25"
##  [3161] "2011-12-13" "2011-06-13" "2011-06-13" "2012-10-06" "2012-10-06"
##  [3166] "2011-06-13" "2011-04-09" "2011-04-09" "2011-04-09" "2011-04-09"
##  [3171] "2011-04-09" "2012-09-21" "2012-09-21" "2012-09-21" "2013-03-30"
##  [3176] "2013-03-30" "2013-03-30" "2013-07-31" "2013-07-31" "2013-07-31"
##  [3181] "2013-07-31" "2013-07-31" "2013-04-13" "2013-04-13" "2013-05-31"
##  [3186] "2013-05-31" "2013-05-31" "2013-05-31" "2013-07-27" "2013-07-27"
##  [3191] "2013-05-31" "2013-07-27" "2011-09-27" "2013-12-09" "2011-09-27"
##  [3196] "2011-09-27" "2012-07-21" "2012-07-21" "2012-07-21" "2012-07-21"
##  [3201] "2013-12-09" "2012-07-21" "2013-12-09" "2011-12-19" "2011-12-19"
##  [3206] "2011-12-22" "2011-12-19" "2011-12-19" "2011-12-22" "2012-11-18"
##  [3211] "2011-03-28" "2011-03-28" "2011-03-28" "2011-12-19" "2011-12-22"
##  [3216] "2011-12-22" "2011-12-22" "2011-03-28" "2012-11-18" "2011-08-18"
##  [3221] "2013-11-17" "2013-11-17" "2011-08-18" "2011-08-18" "2013-11-17"
##  [3226] "2011-08-18" "2011-08-18" "2013-11-17" "2011-11-09" "2012-06-07"
##  [3231] "2012-06-07" "2012-07-08" "2011-11-09" "2012-09-18" "2012-07-08"
##  [3236] "2012-07-08" "2013-07-30" "2013-07-30" "2012-09-18" "2012-07-08"
##  [3241] "2012-09-18" "2013-07-30" "2012-07-08" "2012-09-18" "2012-07-08"
##  [3246] "2012-06-07" "2014-01-25" "2012-07-11" "2011-03-18" "2011-03-18"
##  [3251] "2011-08-01" "2011-08-01" "2011-03-18" "2011-08-07" "2011-11-07"
##  [3256] "2011-08-01" "2011-11-07" "2012-07-11" "2011-03-18" "2011-08-07"
##  [3261] "2011-11-07" "2011-11-07" "2011-03-18" "2011-08-07" "2014-01-25"
##  [3266] "2012-11-04" "2012-11-04" "2011-06-24" "2011-06-24" "2011-06-24"
##  [3271] "2011-06-24" "2011-06-24" "2012-11-04" "2012-11-30" "2012-11-28"
##  [3276] "2012-11-30" "2012-11-22" "2012-11-28" "2012-11-22" "2012-11-28"
##  [3281] "2012-11-28" "2012-11-22" "2012-11-22" "2012-11-22" "2012-11-30"
##  [3286] "2012-11-30" "2012-11-28" "2012-11-30" "2012-01-30" "2012-01-30"
##  [3291] "2011-06-04" "2011-06-04" "2013-04-22" "2013-04-22" "2011-06-04"
##  [3296] "2013-04-22" "2011-06-04" "2013-04-22" "2013-04-22" "2012-01-22"
##  [3301] "2012-01-22" "2011-06-04" "2011-06-04" "2012-01-22" "2012-01-30"
##  [3306] "2013-12-31" "2013-12-31" "2013-12-31" "2013-05-08" "2011-04-01"
##  [3311] "2013-05-08" "2013-04-17" "2011-04-01" "2011-04-01" "2011-04-01"
##  [3316] "2013-04-17" "2013-04-17" "2011-04-01" "2013-04-17" "2011-03-19"
##  [3321] "2011-12-01" "2011-03-08" "2011-03-19" "2011-12-01" "2011-03-08"
##  [3326] "2011-12-01" "2011-07-21" "2011-12-01" "2011-03-08" "2011-07-21"
##  [3331] "2011-12-01" "2011-07-21" "2011-03-19" "2011-07-21" "2011-07-21"
##  [3336] "2011-12-01" "2011-05-15" "2011-05-15" "2011-05-15" "2012-01-30"
##  [3341] "2011-05-15" "2013-08-25" "2011-05-15" "2013-08-25" "2013-08-25"
##  [3346] "2012-01-30" "2013-12-19" "2011-05-09" "2013-12-19" "2013-12-19"
##  [3351] "2011-05-09" "2011-05-09" "2012-10-02" "2013-07-04" "2011-03-04"
##  [3356] "2012-10-02" "2011-03-04" "2013-07-04" "2013-07-04" "2012-10-02"
##  [3361] "2013-07-04" "2013-07-04" "2012-10-02" "2011-03-04" "2011-03-04"
##  [3366] "2013-07-04" "2011-09-25" "2013-09-19" "2013-09-19" "2011-09-25"
##  [3371] "2013-01-04" "2013-09-19" "2013-01-04" "2011-09-25" "2011-09-25"
##  [3376] "2011-09-25" "2013-01-04" "2013-01-04" "2011-09-25" "2013-01-04"
##  [3381] "2012-01-08" "2011-08-10" "2012-04-27" "2012-04-27" "2012-10-06"
##  [3386] "2011-08-10" "2014-01-17" "2014-01-17" "2011-08-10" "2013-06-07"
##  [3391] "2012-10-06" "2012-05-02" "2012-01-08" "2012-10-06" "2011-08-10"
##  [3396] "2014-01-20" "2012-05-02" "2011-08-10" "2012-10-06" "2012-10-06"
##  [3401] "2012-10-06" "2011-08-10" "2013-06-07" "2014-01-20" "2013-02-01"
##  [3406] "2013-10-04" "2013-06-28" "2013-02-01" "2013-10-04" "2013-01-31"
##  [3411] "2013-10-05" "2013-01-31" "2013-10-04" "2013-06-28" "2013-02-01"
##  [3416] "2013-01-31" "2013-02-01" "2013-10-05" "2013-01-31" "2013-01-31"
##  [3421] "2013-10-05" "2013-10-04" "2013-10-05" "2013-02-01" "2013-10-04"
##  [3426] "2013-10-05" "2013-06-22" "2013-06-27" "2013-12-29" "2013-12-29"
##  [3431] "2013-06-27" "2013-06-25" "2013-06-22" "2013-12-29" "2013-06-22"
##  [3436] "2013-06-27" "2013-06-27" "2013-06-25" "2013-06-25" "2013-06-25"
##  [3441] "2013-06-22" "2013-06-25" "2013-06-22" "2013-06-27" "2013-04-01"
##  [3446] "2013-04-01" "2012-09-13" "2013-04-01" "2013-08-20" "2013-01-09"
##  [3451] "2012-09-13" "2013-08-20" "2013-08-20" "2013-01-09" "2013-01-09"
##  [3456] "2013-01-24" "2013-01-24" "2013-01-24" "2011-06-09" "2011-06-09"
##  [3461] "2013-01-24" "2011-06-09" "2013-01-24" "2014-01-24" "2012-02-08"
##  [3466] "2012-02-08" "2014-01-24" "2014-01-24" "2012-07-02" "2012-06-26"
##  [3471] "2012-07-02" "2012-07-02" "2012-06-26" "2012-06-26" "2012-07-02"
##  [3476] "2012-06-26" "2012-07-02" "2012-06-26" "2012-07-02" "2012-06-26"
##  [3481] "2013-01-24" "2012-08-25" "2013-05-07" "2013-05-07" "2012-08-25"
##  [3486] "2013-01-24" "2013-05-07" "2013-01-24" "2012-08-25" "2012-09-24"
##  [3491] "2011-11-03" "2011-11-09" "2011-11-03" "2012-09-24" "2011-11-09"
##  [3496] "2011-08-17" "2011-08-17" "2012-09-24" "2012-12-22" "2013-05-10"
##  [3501] "2012-12-22" "2013-05-10" "2013-05-10" "2012-09-16" "2012-12-22"
##  [3506] "2012-09-16" "2011-02-04" "2011-02-04" "2013-11-09" "2011-02-04"
##  [3511] "2011-02-04" "2013-11-09" "2013-11-09" "2011-02-04" "2014-02-03"
##  [3516] "2011-02-21" "2011-02-21" "2011-02-21" "2014-02-03" "2012-11-23"
##  [3521] "2012-11-23" "2012-04-05" "2012-04-05" "2011-02-28" "2011-02-28"
##  [3526] "2011-02-28" "2011-09-21" "2013-12-20" "2012-08-02" "2012-08-02"
##  [3531] "2011-09-21" "2013-12-20" "2011-10-23" "2011-09-06" "2011-09-06"
##  [3536] "2012-08-02" "2011-10-23" "2012-08-02" "2013-12-20" "2013-12-20"
##  [3541] "2012-08-02" "2013-12-20" "2011-09-21" "2014-02-20" "2014-02-20"
##  [3546] "2012-12-10" "2014-02-12" "2012-12-10" "2014-02-20" "2014-02-12"
##  [3551] "2014-02-20" "2014-02-20" "2014-02-09" "2012-05-10" "2011-07-13"
##  [3556] "2011-07-21" "2012-05-10" "2011-07-13" "2014-02-09" "2011-07-21"
##  [3561] "2014-02-09" "2014-01-01" "2014-01-01" "2014-01-01" "2014-01-03"
##  [3566] "2014-01-03" "2014-01-03" "2014-01-03" "2014-01-01" "2014-01-03"
##  [3571] "2014-01-01" "2011-09-17" "2012-11-19" "2013-09-02" "2012-11-19"
##  [3576] "2012-11-19" "2013-09-02" "2011-09-17" "2012-07-28" "2011-12-05"
##  [3581] "2012-07-28" "2011-12-05" "2011-09-09" "2012-10-25" "2012-10-25"
##  [3586] "2011-09-09" "2011-09-09" "2013-04-04" "2013-04-04" "2013-04-04"
##  [3591] "2013-04-04" "2013-07-12" "2013-07-12" "2013-07-12" "2013-05-08"
##  [3596] "2013-05-08" "2013-05-08" "2013-05-08" "2011-02-05" "2011-10-07"
##  [3601] "2011-02-05" "2013-05-08" "2011-02-05" "2011-02-05" "2011-02-05"
##  [3606] "2011-10-07" "2011-10-07" "2011-02-23" "2011-09-09" "2011-09-09"
##  [3611] "2013-01-18" "2011-09-09" "2013-07-02" "2011-02-23" "2011-02-23"
##  [3616] "2013-01-18" "2013-07-02" "2013-07-02" "2011-09-09" "2013-07-02"
##  [3621] "2011-02-23" "2011-02-23" "2011-09-09" "2012-09-14" "2012-06-16"
##  [3626] "2012-06-16" "2012-06-16" "2012-06-16" "2012-09-14" "2012-06-16"
##  [3631] "2012-04-03" "2012-08-29" "2012-04-03" "2012-04-03" "2012-04-03"
##  [3636] "2012-04-03" "2012-08-29" "2012-11-28" "2012-11-05" "2013-01-15"
##  [3641] "2012-11-28" "2013-01-15" "2012-11-05" "2013-01-15" "2013-01-15"
##  [3646] "2012-11-05" "2011-08-02" "2012-01-18" "2011-08-02" "2012-01-18"
##  [3651] "2011-08-02" "2013-03-09" "2013-03-09" "2013-03-09" "2012-12-05"
##  [3656] "2013-01-08" "2014-01-27" "2014-01-27" "2012-12-05" "2013-01-08"
##  [3661] "2012-11-21" "2012-11-21" "2013-10-06" "2014-01-27" "2013-10-06"
##  [3666] "2013-01-08" "2012-11-21" "2014-01-27" "2014-01-27" "2013-01-08"
##  [3671] "2013-01-08" "2014-02-05" "2014-02-05" "2011-06-30" "2011-06-22"
##  [3676] "2014-02-02" "2011-06-22" "2011-06-26" "2011-06-30" "2014-02-02"
##  [3681] "2011-06-26" "2011-09-14" "2011-06-30" "2014-02-02" "2014-02-02"
##  [3686] "2011-06-26" "2014-02-03" "2011-09-14" "2014-02-02" "2014-02-03"
##  [3691] "2014-02-05" "2011-09-14" "2014-02-03" "2011-06-22" "2013-03-16"
##  [3696] "2013-09-12" "2013-09-12" "2013-03-16" "2013-11-03" "2013-02-01"
##  [3701] "2013-11-03" "2013-09-12" "2013-02-01" "2013-03-16" "2012-10-31"
##  [3706] "2013-03-16" "2013-03-16" "2013-09-12" "2012-10-31" "2011-10-10"
##  [3711] "2011-10-10" "2011-10-10" "2011-10-10" "2011-10-10" "2012-02-08"
##  [3716] "2011-11-13" "2012-02-08" "2013-03-17" "2011-11-13" "2013-03-17"
##  [3721] "2012-02-08" "2012-02-10" "2011-11-13" "2011-11-13" "2012-02-10"
##  [3726] "2011-11-13" "2013-03-17" "2011-05-22" "2012-02-10" "2011-05-22"
##  [3731] "2013-11-28" "2013-11-28" "2013-03-24" "2013-02-18" "2013-02-18"
##  [3736] "2013-02-16" "2013-03-24" "2012-01-10" "2013-02-16" "2013-02-18"
##  [3741] "2013-02-16" "2013-02-16" "2013-02-18" "2012-01-10" "2013-02-16"
##  [3746] "2013-02-18" "2013-08-10" "2014-02-14" "2014-02-14" "2011-07-21"
##  [3751] "2011-07-22" "2011-07-21" "2011-07-21" "2014-02-14" "2011-07-22"
##  [3756] "2011-07-22" "2011-07-22" "2011-07-21" "2011-07-21" "2011-07-22"
##  [3761] "2013-08-10" "2012-10-08" "2012-10-08" "2011-12-02" "2012-02-25"
##  [3766] "2012-10-08" "2012-10-08" "2012-10-08" "2012-02-25" "2011-12-02"
##  [3771] "2012-10-08" "2013-08-08" "2012-04-29" "2013-08-09" "2013-03-31"
##  [3776] "2013-03-31" "2013-08-09" "2013-10-18" "2013-10-18" "2012-04-29"
##  [3781] "2012-04-29" "2012-04-29" "2013-08-08" "2013-08-08" "2013-08-09"
##  [3786] "2013-03-31" "2012-04-29" "2013-11-17" "2013-11-03" "2013-11-03"
##  [3791] "2011-02-01" "2013-11-17" "2011-02-01" "2013-11-03" "2012-03-10"
##  [3796] "2012-03-10" "2012-03-10" "2012-03-10" "2012-03-10" "2014-01-22"
##  [3801] "2013-10-23" "2014-01-22" "2014-01-22" "2013-10-23" "2014-01-22"
##  [3806] "2014-01-22" "2014-01-22" "2013-10-23" "2013-10-23" "2013-10-23"
##  [3811] "2012-11-21" "2012-11-21" "2012-03-17" "2012-03-17" "2012-11-21"
##  [3816] "2012-03-17" "2012-01-08" "2013-04-01" "2012-01-08" "2013-04-01"
##  [3821] "2013-01-25" "2013-04-01" "2012-01-08" "2013-04-06" "2012-01-08"
##  [3826] "2013-04-06" "2013-01-25" "2012-01-08" "2013-04-06" "2013-01-25"
##  [3831] "2012-03-22" "2012-02-21" "2012-02-21" "2012-09-19" "2012-09-19"
##  [3836] "2012-03-22" "2011-10-17" "2014-01-12" "2012-09-19" "2011-10-17"
##  [3841] "2012-09-19" "2012-09-19" "2014-01-12" "2012-09-11" "2012-09-11"
##  [3846] "2012-09-11" "2014-01-12" "2012-02-21" "2014-01-12" "2012-09-11"
##  [3851] "2011-10-17" "2012-09-11" "2014-01-12" "2011-09-24" "2011-09-24"
##  [3856] "2014-02-11" "2014-02-11" "2011-09-24" "2012-12-22" "2012-12-22"
##  [3861] "2012-12-22" "2013-12-20" "2012-12-22" "2012-06-25" "2012-12-22"
##  [3866] "2013-12-20" "2012-06-25" "2013-12-20" "2012-06-25" "2012-05-21"
##  [3871] "2012-05-21" "2013-09-24" "2013-09-24" "2011-09-04" "2011-07-04"
##  [3876] "2011-07-04" "2011-07-04" "2011-07-04" "2011-09-04" "2011-07-04"
##  [3881] "2013-06-28" "2013-06-28" "2011-12-08" "2011-12-08" "2011-12-08"
##  [3886] "2013-06-28" "2013-06-28" "2013-06-28" "2014-01-12" "2011-07-28"
##  [3891] "2011-07-28" "2014-01-12" "2011-07-28" "2014-01-12" "2014-01-12"
##  [3896] "2011-07-28" "2011-07-28" "2014-01-12" "2011-07-28" "2012-01-19"
##  [3901] "2012-01-19" "2012-01-19" "2012-01-19" "2012-01-19" "2011-07-06"
##  [3906] "2012-02-13" "2011-07-06" "2013-08-07" "2011-07-13" "2011-07-13"
##  [3911] "2012-02-13" "2012-12-26" "2012-02-13" "2013-08-07" "2012-02-13"
##  [3916] "2013-08-07" "2012-02-13" "2013-08-07" "2011-07-13" "2013-08-07"
##  [3921] "2012-12-26" "2012-12-26" "2011-07-06" "2012-01-08" "2012-01-08"
##  [3926] "2012-01-08" "2012-01-08" "2012-01-08" "2012-01-08" "2013-07-10"
##  [3931] "2011-03-28" "2013-07-10" "2011-03-28" "2011-11-22" "2011-11-22"
##  [3936] "2011-11-22" "2014-02-19" "2014-02-19" "2014-02-19" "2014-02-19"
##  [3941] "2014-02-19" "2011-11-03" "2011-11-03" "2011-11-03" "2011-11-03"
##  [3946] "2011-11-03" "2011-12-22" "2011-12-22" "2011-12-22" "2011-12-22"
##  [3951] "2011-12-22" "2012-11-20" "2012-11-20" "2012-05-02" "2012-11-20"
##  [3956] "2013-04-14" "2014-01-29" "2012-10-14" "2013-04-14" "2014-01-29"
##  [3961] "2012-11-20" "2012-10-14" "2012-05-02" "2014-01-29" "2012-10-14"
##  [3966] "2013-04-14" "2012-05-02" "2012-10-14" "2013-04-14" "2013-04-14"
##  [3971] "2012-10-14" "2012-11-20" "2012-11-20" "2013-09-08" "2013-09-08"
##  [3976] "2013-09-08" "2013-09-08" "2013-09-08" "2013-09-08" "2013-02-20"
##  [3981] "2013-08-04" "2013-02-20" "2013-08-04" "2013-10-05" "2013-10-05"
##  [3986] "2013-02-20" "2013-02-20" "2013-02-20" "2013-02-20" "2013-08-04"
##  [3991] "2011-03-03" "2011-12-18" "2011-03-03" "2012-01-14" "2011-12-18"
##  [3996] "2011-03-03" "2011-03-03" "2012-01-14" "2012-01-14" "2011-03-03"
##  [4001] "2012-01-14" "2012-01-14" "2012-08-17" "2012-05-22" "2013-10-10"
##  [4006] "2012-05-22" "2012-05-17" "2012-05-17" "2012-08-17" "2013-10-10"
##  [4011] "2012-05-22" "2012-05-17" "2011-09-18" "2011-03-03" "2011-09-18"
##  [4016] "2011-03-03" "2011-09-10" "2011-09-10" "2011-05-29" "2011-05-29"
##  [4021] "2011-05-29" "2012-10-14" "2012-10-14" "2012-02-18" "2012-11-29"
##  [4026] "2012-07-15" "2012-11-29" "2012-11-29" "2012-07-15" "2011-07-20"
##  [4031] "2012-02-18" "2012-02-18" "2012-02-18" "2012-11-29" "2011-07-20"
##  [4036] "2012-11-29" "2012-02-18" "2012-02-26" "2012-02-16" "2012-02-26"
##  [4041] "2012-02-16" "2012-02-26" "2012-02-16" "2011-12-22" "2011-12-22"
##  [4046] "2011-12-22" "2011-12-22" "2011-12-22" "2014-02-18" "2012-02-17"
##  [4051] "2012-07-09" "2012-02-17" "2012-02-17" "2014-02-18" "2012-02-17"
##  [4056] "2012-02-17" "2012-07-09" "2013-01-02" "2014-02-18" "2012-07-09"
##  [4061] "2013-01-02" "2012-07-09" "2012-07-09" "2011-09-26" "2011-09-26"
##  [4066] "2012-10-03" "2012-10-03" "2012-04-19" "2012-04-19" "2012-04-18"
##  [4071] "2012-04-19" "2012-04-18" "2012-04-19" "2012-04-18" "2012-04-18"
##  [4076] "2012-04-19" "2012-04-18" "2012-03-16" "2012-10-14" "2012-10-14"
##  [4081] "2012-03-16" "2012-03-16" "2012-06-03" "2012-06-03" "2012-03-16"
##  [4086] "2012-10-14" "2012-10-14" "2012-03-16" "2013-01-22" "2013-01-16"
##  [4091] "2013-01-22" "2012-07-27" "2013-01-22" "2013-01-22" "2013-01-22"
##  [4096] "2012-07-27" "2013-01-16" "2013-01-16" "2013-12-19" "2013-05-31"
##  [4101] "2013-01-16" "2012-07-21" "2013-05-31" "2013-12-19" "2013-05-31"
##  [4106] "2013-05-31" "2013-01-16" "2012-07-27" "2013-05-31" "2012-07-21"
##  [4111] "2012-07-21" "2013-12-19" "2012-07-05" "2012-05-31" "2012-07-05"
##  [4116] "2012-07-05" "2012-07-05" "2012-05-31" "2011-07-22" "2011-07-22"
##  [4121] "2011-07-22" "2011-11-29" "2011-11-29" "2011-11-29" "2011-11-29"
##  [4126] "2011-11-29" "2012-07-15" "2012-07-15" "2013-12-08" "2013-11-30"
##  [4131] "2013-11-30" "2013-12-08" "2013-12-08" "2013-11-30" "2013-04-17"
##  [4136] "2013-04-17" "2013-06-01" "2013-06-01" "2013-06-01" "2013-06-01"
##  [4141] "2013-06-01" "2013-03-20" "2011-10-16" "2013-03-20" "2012-11-26"
##  [4146] "2013-03-20" "2011-10-16" "2011-10-16" "2012-11-26" "2011-06-17"
##  [4151] "2013-03-20" "2013-03-20" "2011-06-17" "2011-10-16" "2011-10-16"
##  [4156] "2011-06-13" "2011-06-13" "2013-05-23" "2013-02-05" "2013-05-31"
##  [4161] "2013-02-05" "2013-02-05" "2013-05-23" "2013-02-05" "2013-09-15"
##  [4166] "2013-05-23" "2013-02-08" "2013-09-15" "2013-05-31" "2013-02-05"
##  [4171] "2013-02-08" "2013-05-23" "2013-02-08" "2013-05-23" "2013-02-08"
##  [4176] "2013-02-08" "2013-02-23" "2013-02-15" "2013-02-23" "2013-02-15"
##  [4181] "2011-11-14" "2013-02-15" "2013-02-23" "2013-02-23" "2013-02-15"
##  [4186] "2013-02-23" "2011-11-14" "2012-09-19" "2013-11-09" "2013-11-09"
##  [4191] "2012-09-19" "2013-11-09" "2013-08-13" "2012-11-05" "2013-08-13"
##  [4196] "2013-08-13" "2011-03-27" "2012-11-05" "2012-11-05" "2011-03-27"
##  [4201] "2011-03-27" "2012-06-01" "2012-06-01" "2012-06-01" "2013-08-19"
##  [4206] "2011-02-22" "2013-08-19" "2011-02-22" "2011-02-22" "2011-07-10"
##  [4211] "2011-02-22" "2011-02-22" "2011-07-10" "2013-01-26" "2012-08-14"
##  [4216] "2012-08-14" "2012-08-14" "2012-08-14" "2013-01-26" "2012-08-14"
##  [4221] "2011-04-13" "2011-04-13" "2011-04-13" "2011-04-13" "2011-04-13"
##  [4226] "2011-12-26" "2013-03-27" "2011-12-26" "2013-03-27" "2013-03-27"
##  [4231] "2012-03-28" "2012-03-28" "2012-03-28" "2012-03-28" "2012-03-28"
##  [4236] "2011-12-26" "2013-08-28" "2011-03-24" "2013-08-28" "2013-08-28"
##  [4241] "2013-08-28" "2013-06-02" "2011-03-24" "2013-06-02" "2013-06-02"
##  [4246] "2013-08-28" "2011-03-24" "2011-08-01" "2011-08-01" "2011-08-01"
##  [4251] "2011-08-01" "2012-03-04" "2012-03-12" "2012-03-12" "2012-03-04"
##  [4256] "2012-03-04" "2012-03-02" "2012-03-02" "2012-03-02" "2012-03-02"
##  [4261] "2012-03-12" "2012-03-02" "2012-03-12" "2012-03-15" "2012-03-15"
##  [4266] "2012-03-12" "2012-03-15" "2012-03-12" "2013-07-11" "2011-09-08"
##  [4271] "2013-07-11" "2011-09-08" "2011-09-08" "2013-07-11" "2013-07-29"
##  [4276] "2013-07-31" "2011-11-05" "2013-07-29" "2011-11-05" "2013-07-31"
##  [4281] "2011-11-05" "2011-10-05" "2011-10-05" "2012-02-13" "2012-02-13"
##  [4286] "2011-10-05" "2013-09-07" "2013-09-07" "2013-07-26" "2013-07-26"
##  [4291] "2013-09-07" "2013-07-26" "2013-09-23" "2013-09-07" "2013-09-23"
##  [4296] "2013-09-07" "2011-03-03" "2013-03-12" "2013-05-22" "2011-03-03"
##  [4301] "2011-03-03" "2011-03-03" "2013-05-22" "2013-03-12" "2013-05-22"
##  [4306] "2013-05-22" "2013-03-12" "2011-03-03" "2013-03-12" "2012-08-27"
##  [4311] "2012-08-27" "2012-08-27" "2013-08-27" "2012-08-27" "2013-09-01"
##  [4316] "2013-07-13" "2012-08-27" "2013-08-27" "2013-07-13" "2013-07-13"
##  [4321] "2013-09-01" "2013-11-22" "2012-06-08" "2012-06-08" "2013-11-22"
##  [4326] "2012-06-08" "2013-11-22" "2013-10-27" "2013-11-22" "2013-11-22"
##  [4331] "2013-10-27" "2012-03-07" "2011-03-25" "2013-09-11" "2012-03-07"
##  [4336] "2012-03-07" "2012-03-07" "2011-03-25" "2012-03-07" "2013-09-11"
##  [4341] "2011-05-10" "2011-05-10" "2011-05-10" "2012-12-31" "2012-12-31"
##  [4346] "2012-12-31" "2011-10-30" "2013-11-16" "2011-07-10" "2013-11-16"
##  [4351] "2011-07-10" "2013-11-16" "2011-10-30" "2011-10-30" "2011-10-30"
##  [4356] "2011-07-10" "2011-10-30" "2013-01-11" "2012-04-28" "2013-01-11"
##  [4361] "2012-04-28" "2012-04-28" "2012-07-09" "2013-01-11" "2012-04-28"
##  [4366] "2012-10-09" "2012-10-09" "2012-10-09" "2012-07-09" "2012-10-09"
##  [4371] "2012-04-28" "2012-10-09" "2012-07-09" "2013-10-23" "2013-10-23"
##  [4376] "2013-09-04" "2013-09-04" "2013-10-23" "2014-02-11" "2013-10-23"
##  [4381] "2014-02-11" "2013-10-23" "2013-09-04" "2013-04-13" "2014-02-11"
##  [4386] "2013-09-04" "2013-04-13" "2014-02-11" "2013-04-13" "2014-02-11"
##  [4391] "2013-09-04" "2013-04-13" "2013-09-04" "2013-04-13" "2013-11-22"
##  [4396] "2013-11-22" "2013-09-14" "2013-09-14" "2013-11-22" "2013-11-22"
##  [4401] "2013-09-14" "2013-03-03" "2013-03-03" "2013-10-03" "2013-10-03"
##  [4406] "2012-12-08" "2012-12-01" "2012-12-01" "2012-12-01" "2012-12-01"
##  [4411] "2012-12-08" "2012-12-01" "2012-12-08" "2012-12-08" "2012-12-08"
##  [4416] "2012-10-15" "2012-10-15" "2012-07-05" "2012-07-05" "2012-10-15"
##  [4421] "2011-05-24" "2011-05-24" "2013-04-17" "2013-04-17" "2011-05-24"
##  [4426] "2011-02-01" "2011-02-01" "2011-02-01" "2013-10-31" "2013-10-31"
##  [4431] "2013-10-31" "2012-02-01" "2013-01-22" "2013-01-22" "2013-12-15"
##  [4436] "2013-12-08" "2012-02-01" "2013-01-22" "2013-12-15" "2013-12-15"
##  [4441] "2013-12-08" "2013-01-22" "2013-01-22" "2013-12-08" "2013-09-29"
##  [4446] "2011-09-18" "2011-09-18" "2013-09-29" "2011-09-18" "2012-09-15"
##  [4451] "2012-09-15" "2012-09-15" "2013-02-08" "2011-09-12" "2011-09-12"
##  [4456] "2013-02-08" "2013-02-08" "2013-02-16" "2013-08-13" "2011-09-12"
##  [4461] "2013-02-08" "2013-08-13" "2013-02-16" "2013-02-16" "2013-02-16"
##  [4466] "2013-02-08" "2013-02-16" "2012-10-13" "2013-02-13" "2013-02-13"
##  [4471] "2012-10-13" "2013-10-15" "2012-10-13" "2012-10-13" "2013-10-15"
##  [4476] "2013-10-15" "2012-10-13" "2014-02-01" "2012-07-27" "2012-08-06"
##  [4481] "2012-08-06" "2013-02-17" "2013-02-17" "2014-02-01" "2012-07-27"
##  [4486] "2012-08-06" "2012-07-27" "2014-02-01" "2013-09-06" "2013-09-06"
##  [4491] "2013-11-10" "2013-11-10" "2013-11-10" "2013-11-10" "2013-11-10"
##  [4496] "2011-04-27" "2013-01-31" "2013-01-31" "2011-04-27" "2011-06-21"
##  [4501] "2011-06-21" "2012-11-06" "2012-11-06" "2012-11-06" "2013-11-14"
##  [4506] "2013-11-14" "2013-05-14" "2013-05-14" "2012-09-09" "2013-07-01"
##  [4511] "2013-12-22" "2012-09-09" "2014-01-25" "2013-12-22" "2013-12-22"
##  [4516] "2013-12-22" "2013-07-01" "2013-05-14" "2013-12-22" "2014-01-25"
##  [4521] "2012-09-09" "2013-05-14" "2013-07-01" "2013-05-14" "2012-09-09"
##  [4526] "2013-07-01" "2013-07-01" "2012-09-09" "2013-12-22" "2014-01-28"
##  [4531] "2014-01-28" "2011-08-26" "2013-09-26" "2012-02-13" "2013-09-26"
##  [4536] "2011-08-26" "2011-08-26" "2012-02-13" "2013-09-26" "2012-02-13"
##  [4541] "2012-02-21" "2011-08-26" "2011-08-26" "2012-02-21" "2013-09-26"
##  [4546] "2012-02-21" "2013-05-14" "2013-05-09" "2013-05-14" "2011-11-14"
##  [4551] "2013-05-14" "2013-05-09" "2013-05-09" "2013-05-09" "2013-05-09"
##  [4556] "2013-05-14" "2011-11-14" "2012-04-03" "2013-05-14" "2012-04-03"
##  [4561] "2011-11-14" "2012-04-27" "2012-04-27" "2012-04-27" "2012-04-27"
##  [4566] "2013-03-13" "2012-04-27" "2013-03-13" "2011-02-23" "2011-02-23"
##  [4571] "2013-02-24" "2013-02-24" "2011-02-23" "2013-09-03" "2013-09-03"
##  [4576] "2013-09-03" "2012-06-17" "2013-01-04" "2013-01-04" "2012-06-17"
##  [4581] "2012-06-17" "2012-06-17" "2012-06-17" "2012-07-19" "2012-07-19"
##  [4586] "2012-07-19" "2012-07-19" "2012-07-19" "2011-10-23" "2011-10-23"
##  [4591] "2011-10-23" "2013-09-11" "2013-09-11" "2011-04-10" "2011-04-10"
##  [4596] "2011-04-10" "2011-04-10" "2011-05-03" "2011-05-03" "2011-05-03"
##  [4601] "2013-11-20" "2013-11-20" "2013-11-29" "2013-11-20" "2013-04-06"
##  [4606] "2013-04-06" "2013-11-20" "2013-11-20" "2011-12-28" "2012-03-24"
##  [4611] "2012-03-24" "2013-04-06" "2013-11-20" "2013-11-29" "2013-11-29"
##  [4616] "2013-04-06" "2013-11-29" "2011-12-28" "2013-11-29" "2012-03-24"
##  [4621] "2013-11-29" "2011-08-29" "2013-05-20" "2011-08-29" "2013-05-20"
##  [4626] "2013-05-20" "2011-08-29" "2013-07-16" "2013-07-23" "2013-07-13"
##  [4631] "2012-07-08" "2013-07-16" "2013-07-16" "2013-07-13" "2013-07-16"
##  [4636] "2012-07-08" "2013-07-23" "2013-07-23" "2012-03-21" "2012-03-27"
##  [4641] "2013-10-18" "2013-10-23" "2012-03-21" "2013-10-23" "2013-10-18"
##  [4646] "2013-10-23" "2012-03-27" "2013-10-23" "2013-10-18" "2013-10-23"
##  [4651] "2013-10-18" "2013-10-18" "2013-10-18" "2013-10-23" "2011-06-07"
##  [4656] "2013-05-04" "2011-06-07" "2012-06-01" "2012-06-01" "2013-05-04"
##  [4661] "2012-06-01" "2012-06-01" "2012-06-01" "2012-06-01" "2012-04-26"
##  [4666] "2013-12-20" "2012-05-05" "2012-05-05" "2012-04-26" "2011-09-18"
##  [4671] "2011-09-18" "2011-09-18" "2013-12-20" "2013-12-20" "2011-05-21"
##  [4676] "2012-04-26" "2011-09-18" "2011-05-21" "2012-05-05" "2013-12-21"
##  [4681] "2013-12-21" "2013-12-21" "2013-12-21" "2013-12-21" "2011-09-25"
##  [4686] "2011-09-25" "2012-03-24" "2013-04-05" "2012-03-24" "2012-02-20"
##  [4691] "2013-04-05" "2012-03-24" "2013-01-03" "2012-03-24" "2013-04-05"
##  [4696] "2012-03-24" "2013-01-03" "2012-04-03" "2013-04-05" "2013-01-03"
##  [4701] "2013-03-21" "2013-01-06" "2012-02-20" "2013-03-21" "2013-04-05"
##  [4706] "2013-03-21" "2012-02-20" "2013-01-06" "2013-01-06" "2012-04-03"
##  [4711] "2013-03-21" "2012-02-20" "2012-04-03" "2012-04-03" "2012-02-20"
##  [4716] "2012-04-03" "2011-01-29" "2011-09-16" "2011-01-29" "2011-01-29"
##  [4721] "2011-01-29" "2011-01-29" "2011-02-04" "2011-02-04" "2011-02-04"
##  [4726] "2011-09-16" "2011-02-04" "2011-09-16" "2011-09-16" "2011-02-04"
##  [4731] "2012-10-28" "2012-10-28" "2012-10-28" "2012-12-14" "2012-12-14"
##  [4736] "2013-02-26" "2013-02-26" "2013-02-26" "2012-09-22" "2011-02-22"
##  [4741] "2012-09-22" "2012-09-22" "2013-01-08" "2011-02-22" "2013-01-08"
##  [4746] "2013-01-08" "2011-07-07" "2012-11-07" "2011-09-29" "2012-11-07"
##  [4751] "2011-07-07" "2011-09-29" "2012-11-07" "2011-05-13" "2011-05-13"
##  [4756] "2011-12-18" "2012-05-21" "2012-04-10" "2012-04-16" "2011-05-22"
##  [4761] "2011-12-18" "2011-12-18" "2012-04-10" "2011-05-22" "2011-05-22"
##  [4766] "2012-04-16" "2011-05-13" "2012-05-21" "2011-02-15" "2013-10-05"
##  [4771] "2011-08-21" "2011-08-21" "2011-08-21" "2013-10-05" "2011-08-21"
##  [4776] "2011-02-15" "2013-10-05" "2011-08-21" "2011-06-02" "2011-02-04"
##  [4781] "2011-06-02" "2011-06-02" "2011-06-02" "2011-06-02" "2011-06-02"
##  [4786] "2011-02-04" "2011-09-18" "2011-09-18" "2011-09-18" "2011-05-31"
##  [4791] "2013-10-06" "2013-10-08" "2011-05-31" "2013-10-06" "2013-10-14"
##  [4796] "2011-05-31" "2011-06-10" "2011-03-21" "2013-10-14" "2013-10-06"
##  [4801] "2013-10-08" "2011-06-10" "2011-06-10" "2011-03-21" "2011-06-10"
##  [4806] "2013-10-08" "2013-10-14" "2011-05-31" "2013-02-14" "2013-02-14"
##  [4811] "2012-06-27" "2012-06-27" "2012-06-27" "2011-12-05" "2011-12-05"
##  [4816] "2011-08-27" "2011-12-05" "2011-12-05" "2011-12-05" "2011-08-27"
##  [4821] "2011-08-27" "2011-08-27" "2011-12-05" "2012-11-17" "2012-11-17"
##  [4826] "2011-09-22" "2011-09-22" "2012-06-24" "2012-06-24" "2012-06-24"
##  [4831] "2012-11-19" "2012-11-19" "2011-09-22" "2012-06-24" "2012-06-24"
##  [4836] "2012-10-03" "2012-10-10" "2012-10-10" "2011-11-18" "2011-11-15"
##  [4841] "2012-10-03" "2011-11-18" "2011-07-31" "2011-11-15" "2011-11-15"
##  [4846] "2011-11-12" "2012-10-03" "2011-11-12" "2012-10-03" "2011-09-30"
##  [4851] "2011-09-30" "2011-11-18" "2011-07-31" "2012-10-10" "2012-10-03"
##  [4856] "2011-11-12" "2012-10-10" "2012-10-10" "2011-07-31" "2013-01-26"
##  [4861] "2013-01-26" "2013-10-29" "2013-10-29" "2013-10-29" "2013-10-29"
##  [4866] "2013-10-25" "2011-04-07" "2011-04-07" "2013-10-29" "2013-10-25"
##  [4871] "2013-10-25" "2013-10-25" "2012-07-26" "2011-11-27" "2012-07-26"
##  [4876] "2012-07-26" "2012-07-26" "2011-11-27" "2014-01-03" "2014-01-03"
##  [4881] "2012-10-01" "2012-10-01" "2012-10-01" "2012-10-01" "2012-10-01"
##  [4886] "2012-07-30" "2012-07-30" "2011-08-19" "2011-08-19" "2011-08-18"
##  [4891] "2011-08-18" "2011-08-19" "2011-08-18" "2011-08-18" "2011-08-19"
##  [4896] "2013-11-09" "2013-06-16" "2013-06-16" "2013-11-09" "2013-11-09"
##  [4901] "2012-08-02" "2012-08-02" "2012-08-02" "2013-06-16" "2013-07-09"
##  [4906] "2013-04-01" "2012-09-20" "2012-09-20" "2014-02-01" "2012-09-20"
##  [4911] "2012-09-23" "2013-04-01" "2013-04-01" "2013-04-10" "2013-04-01"
##  [4916] "2012-09-23" "2013-04-01" "2012-09-23" "2013-07-09" "2013-07-09"
##  [4921] "2014-02-01" "2013-04-01" "2013-04-10" "2013-04-10" "2013-04-10"
##  [4926] "2013-04-10" "2013-07-09" "2013-04-10" "2011-03-27" "2011-03-27"
##  [4931] "2011-03-27" "2011-03-27" "2011-03-27" "2011-10-14" "2012-10-19"
##  [4936] "2011-10-14" "2011-10-14" "2012-10-19" "2013-09-30" "2011-10-14"
##  [4941] "2011-10-14" "2013-09-30" "2013-04-21" "2013-02-05" "2013-04-21"
##  [4946] "2013-04-21" "2013-04-21" "2013-04-21" "2013-02-05" "2013-02-05"
##  [4951] "2012-10-29" "2013-03-21" "2013-03-21" "2013-03-21" "2012-10-29"
##  [4956] "2012-08-28" "2012-04-16" "2012-04-16" "2013-07-18" "2012-04-16"
##  [4961] "2012-08-28" "2013-07-18" "2012-04-16" "2012-08-28" "2012-08-28"
##  [4966] "2012-03-24" "2012-03-24" "2013-07-18" "2011-12-29" "2012-06-22"
##  [4971] "2011-12-29" "2011-12-29" "2011-12-29" "2011-12-29" "2012-06-22"
##  [4976] "2012-09-08" "2012-09-08" "2012-09-08" "2012-09-08" "2012-09-08"
##  [4981] "2013-08-13" "2013-08-13" "2013-08-13" "2011-04-26" "2011-04-26"
##  [4986] "2011-04-26" "2013-08-13" "2011-04-26" "2011-04-26" "2013-08-13"
##  [4991] "2011-04-26" "2013-08-19" "2013-04-15" "2013-04-15" "2013-08-19"
##  [4996] "2013-09-11" "2013-04-15" "2013-09-11" "2013-04-15" "2013-08-19"
##  [5001] "2013-04-15" "2012-04-01" "2012-04-01" "2013-11-20" "2013-11-20"
##  [5006] "2012-04-01" "2013-08-07" "2013-08-16" "2013-08-07" "2013-08-16"
##  [5011] "2013-08-07" "2013-08-16" "2012-06-18" "2012-06-18" "2012-06-18"
##  [5016] "2012-06-18" "2012-01-16" "2012-06-18" "2012-01-16" "2012-02-27"
##  [5021] "2011-11-05" "2012-02-27" "2011-11-05" "2014-01-23" "2011-11-05"
##  [5026] "2014-01-23" "2013-06-22" "2011-11-05" "2012-02-04" "2011-11-05"
##  [5031] "2012-02-04" "2013-06-22" "2012-12-26" "2011-04-13" "2014-02-09"
##  [5036] "2012-12-26" "2012-12-26" "2011-04-22" "2011-04-13" "2012-12-26"
##  [5041] "2014-02-09" "2011-04-22" "2012-12-26" "2012-10-11" "2012-05-11"
##  [5046] "2012-10-11" "2013-06-05" "2012-10-11" "2013-06-05" "2013-06-05"
##  [5051] "2012-05-11" "2013-06-05" "2013-06-05" "2012-10-11" "2012-10-11"
##  [5056] "2012-10-11" "2013-08-06" "2013-05-19" "2013-05-19" "2013-05-22"
##  [5061] "2013-05-19" "2013-05-19" "2013-08-06" "2013-08-06" "2013-08-06"
##  [5066] "2013-08-06" "2013-05-22" "2013-05-22" "2013-05-19" "2013-05-19"
##  [5071] "2013-02-15" "2013-02-15" "2013-02-15" "2013-02-15" "2013-02-15"
##  [5076] "2012-09-18" "2012-09-18" "2012-09-18" "2011-06-30" "2012-04-18"
##  [5081] "2012-04-18" "2012-04-19" "2012-04-19" "2011-06-30" "2012-05-21"
##  [5086] "2013-11-17" "2013-11-17" "2012-05-21" "2012-05-21" "2013-03-26"
##  [5091] "2013-03-26" "2013-11-17" "2012-05-24" "2011-08-05" "2012-05-21"
##  [5096] "2011-06-30" "2011-08-05" "2012-05-24" "2012-05-24" "2012-05-24"
##  [5101] "2013-03-26" "2013-03-26" "2011-08-05" "2012-05-21" "2011-06-30"
##  [5106] "2011-09-23" "2011-09-23" "2012-05-24" "2013-03-26" "2013-12-14"
##  [5111] "2011-07-18" "2013-12-14" "2011-07-18" "2011-07-18" "2011-12-29"
##  [5116] "2011-12-29" "2011-12-29" "2011-12-29" "2012-01-09" "2012-01-09"
##  [5121] "2012-07-14" "2012-07-14" "2012-07-14" "2013-09-16" "2013-09-16"
##  [5126] "2013-09-16" "2013-09-16" "2013-09-16" "2011-07-24" "2011-07-24"
##  [5131] "2011-08-22" "2011-04-03" "2011-07-24" "2011-04-03" "2011-08-22"
##  [5136] "2011-11-12" "2011-11-12" "2011-11-12" "2013-01-22" "2013-01-22"
##  [5141] "2013-01-22" "2012-07-22" "2013-05-30" "2013-05-30" "2012-07-22"
##  [5146] "2012-07-22" "2013-05-30" "2012-07-22" "2013-05-30" "2013-05-30"
##  [5151] "2013-08-07" "2011-12-15" "2013-08-11" "2013-08-11" "2013-08-11"
##  [5156] "2013-08-11" "2013-08-07" "2011-10-07" "2013-08-11" "2013-07-31"
##  [5161] "2012-08-31" "2011-12-15" "2011-12-15" "2012-08-31" "2011-12-15"
##  [5166] "2011-10-07" "2011-12-15" "2011-12-15" "2013-08-11" "2013-07-31"
##  [5171] "2013-01-04" "2014-01-09" "2014-01-09" "2013-01-04" "2013-01-04"
##  [5176] "2012-02-29" "2013-08-03" "2013-08-03" "2012-08-09" "2013-01-04"
##  [5181] "2012-02-29" "2013-08-03" "2014-01-09" "2012-08-09" "2012-08-09"
##  [5186] "2014-01-09" "2014-01-09" "2013-08-03" "2012-02-29" "2013-08-03"
##  [5191] "2013-08-03" "2013-01-04" "2012-08-09" "2014-01-09" "2012-08-09"
##  [5196] "2012-02-29" "2012-01-14" "2012-01-14" "2012-01-14" "2012-01-14"
##  [5201] "2012-01-14" "2012-01-14" "2012-10-17" "2012-01-28" "2012-01-28"
##  [5206] "2012-01-19" "2012-01-19" "2012-01-19" "2012-01-19" "2012-01-19"
##  [5211] "2012-10-17" "2013-11-06" "2013-11-06" "2012-06-15" "2013-11-06"
##  [5216] "2012-01-19" "2012-06-15" "2013-11-06" "2013-11-06" "2013-11-06"
##  [5221] "2012-06-15" "2012-06-15" "2012-12-07" "2011-11-19" "2011-11-19"
##  [5226] "2011-11-19" "2013-02-12" "2011-11-19" "2012-12-07" "2011-11-19"
##  [5231] "2013-02-12" "2012-12-07" "2012-10-23" "2012-10-23" "2012-10-23"
##  [5236] "2013-03-11" "2013-03-13" "2013-03-11" "2013-03-13" "2013-03-11"
##  [5241] "2013-03-13" "2012-09-05" "2012-09-05" "2013-03-13" "2013-03-13"
##  [5246] "2013-03-11" "2013-03-11" "2013-03-13" "2013-03-11" "2013-05-14"
##  [5251] "2013-09-15" "2012-02-22" "2013-10-21" "2013-09-15" "2013-06-22"
##  [5256] "2013-10-21" "2012-02-22" "2013-05-14" "2013-09-15" "2013-10-21"
##  [5261] "2013-06-22" "2013-10-21" "2013-06-22" "2013-10-21" "2013-10-21"
##  [5266] "2013-06-22" "2013-01-27" "2013-01-27" "2013-01-27" "2013-01-27"
##  [5271] "2012-12-24" "2013-08-08" "2013-01-27" "2012-12-24" "2013-08-08"
##  [5276] "2012-12-28" "2012-12-28" "2013-08-08" "2012-12-24" "2012-12-24"
##  [5281] "2012-12-28" "2012-12-24" "2012-12-28" "2012-12-28" "2012-12-24"
##  [5286] "2013-08-08" "2013-07-04" "2013-08-08" "2012-12-28" "2013-07-04"
##  [5291] "2014-02-05" "2012-03-22" "2014-02-05" "2011-06-18" "2011-06-18"
##  [5296] "2012-03-22" "2012-09-19" "2012-09-19" "2012-09-19" "2014-02-05"
##  [5301] "2011-06-18" "2013-04-24" "2013-04-24" "2013-04-22" "2013-04-22"
##  [5306] "2013-04-24" "2013-04-22" "2011-07-11" "2011-07-11" "2011-07-11"
##  [5311] "2011-07-11" "2011-07-11" "2012-06-17" "2012-06-17" "2012-06-17"
##  [5316] "2012-06-17" "2012-04-05" "2013-08-16" "2012-04-05" "2012-04-09"
##  [5321] "2013-10-22" "2012-11-13" "2013-08-16" "2013-10-22" "2013-03-23"
##  [5326] "2012-04-09" "2012-11-13" "2013-03-23" "2013-08-16" "2012-06-08"
##  [5331] "2013-11-29" "2013-11-29" "2012-06-08" "2012-06-08" "2013-06-05"
##  [5336] "2013-06-05" "2012-09-26" "2012-09-26" "2012-09-26" "2013-04-02"
##  [5341] "2013-04-02" "2013-04-02" "2011-09-27" "2011-09-27" "2011-09-27"
##  [5346] "2012-05-08" "2011-11-12" "2012-04-09" "2012-04-09" "2013-11-02"
##  [5351] "2013-11-02" "2012-04-09" "2012-05-08" "2012-05-08" "2011-11-12"
##  [5356] "2013-11-02" "2011-11-12" "2011-09-04" "2014-01-03" "2012-04-24"
##  [5361] "2012-04-24" "2011-09-04" "2011-09-01" "2014-01-03" "2011-09-01"
##  [5366] "2012-04-24" "2014-01-03" "2011-09-04" "2012-04-24" "2012-04-24"
##  [5371] "2012-06-12" "2013-01-05" "2012-06-19" "2012-06-12" "2012-06-12"
##  [5376] "2012-06-19" "2013-01-05" "2012-06-19" "2012-06-12" "2012-06-19"
##  [5381] "2012-06-19" "2012-06-12" "2013-12-24" "2013-12-24" "2013-12-16"
##  [5386] "2013-12-16" "2013-12-24" "2013-12-16" "2012-11-04" "2012-11-04"
##  [5391] "2012-04-12" "2012-04-12" "2012-04-12" "2011-05-14" "2012-03-11"
##  [5396] "2012-03-11" "2012-03-11" "2012-03-11" "2013-03-05" "2012-01-31"
##  [5401] "2012-01-31" "2011-05-14" "2012-03-11" "2013-03-05" "2013-03-05"
##  [5406] "2012-01-31" "2011-05-14" "2012-01-21" "2013-03-05" "2012-01-21"
##  [5411] "2011-05-14" "2013-03-05" "2012-01-21" "2011-06-20" "2011-06-20"
##  [5416] "2011-06-20" "2012-12-03" "2012-12-03" "2012-12-03" "2012-12-03"
##  [5421] "2013-11-23" "2013-11-23" "2013-11-29" "2013-11-29" "2012-11-11"
##  [5426] "2011-10-29" "2011-10-29" "2012-11-11" "2012-11-11" "2012-11-11"
##  [5431] "2012-11-11" "2012-01-20" "2013-12-16" "2011-12-11" "2011-12-11"
##  [5436] "2011-12-11" "2011-12-11" "2012-01-20" "2013-12-16" "2013-12-16"
##  [5441] "2011-12-11" "2012-08-31" "2012-11-06" "2012-08-31" "2012-08-31"
##  [5446] "2013-01-26" "2012-08-31" "2013-01-26" "2013-01-26" "2012-05-16"
##  [5451] "2012-01-09" "2012-11-06" "2013-01-26" "2012-11-06" "2012-05-16"
##  [5456] "2012-05-16" "2012-01-09" "2012-08-31" "2012-11-06" "2013-01-26"
##  [5461] "2012-11-06" "2012-03-07" "2012-02-28" "2012-03-07" "2013-02-20"
##  [5466] "2012-03-03" "2013-09-23" "2012-03-03" "2013-09-23" "2012-06-03"
##  [5471] "2012-02-28" "2013-02-20" "2012-03-07" "2013-02-20" "2012-02-28"
##  [5476] "2012-06-03" "2013-09-23" "2012-03-03" "2014-01-28" "2014-01-28"
##  [5481] "2014-01-28" "2014-01-28" "2014-01-28" "2012-11-21" "2012-03-09"
##  [5486] "2012-03-09" "2012-03-09" "2013-10-02" "2012-11-21" "2013-10-02"
##  [5491] "2013-10-02" "2012-09-27" "2012-09-27" "2014-01-01" "2013-01-15"
##  [5496] "2013-02-28" "2012-03-29" "2012-09-27" "2012-09-27" "2012-09-27"
##  [5501] "2013-01-15" "2012-03-29" "2012-09-27" "2013-02-28" "2013-02-28"
##  [5506] "2013-01-15" "2014-01-01" "2014-01-01" "2012-03-29" "2013-05-05"
##  [5511] "2013-05-05" "2013-05-05" "2013-05-05" "2013-06-18" "2013-06-18"
##  [5516] "2013-06-18" "2013-06-18" "2013-09-16" "2011-11-08" "2013-09-16"
##  [5521] "2013-09-16" "2011-11-08" "2011-11-08" "2013-09-16" "2011-11-08"
##  [5526] "2013-09-16" "2011-11-08" "2012-05-25" "2012-05-25" "2012-05-25"
##  [5531] "2012-05-25" "2013-07-31" "2013-07-20" "2012-01-19" "2013-07-20"
##  [5536] "2012-01-19" "2013-07-31" "2013-07-20" "2013-07-20" "2013-07-20"
##  [5541] "2011-09-25" "2012-03-15" "2011-09-25" "2012-03-15" "2012-03-15"
##  [5546] "2011-04-04" "2011-09-25" "2012-03-15" "2011-04-04" "2012-03-15"
##  [5551] "2011-04-04" "2012-08-26" "2013-12-16" "2011-02-23" "2013-12-16"
##  [5556] "2013-12-16" "2012-08-26" "2012-08-26" "2011-02-23" "2011-02-23"
##  [5561] "2012-08-26" "2011-02-23" "2011-02-23" "2013-08-18" "2014-01-17"
##  [5566] "2013-08-18" "2013-08-18" "2013-08-18" "2011-08-11" "2013-08-18"
##  [5571] "2011-08-11" "2014-01-17" "2014-01-17" "2013-08-22" "2013-08-22"
##  [5576] "2012-05-03" "2012-05-03" "2012-05-03" "2012-05-03" "2012-05-03"
##  [5581] "2013-09-15" "2013-09-15" "2011-11-26" "2013-09-16" "2013-09-15"
##  [5586] "2013-09-16" "2012-10-29" "2013-09-16" "2011-11-26" "2013-09-15"
##  [5591] "2013-09-16" "2013-09-15" "2012-10-29" "2013-09-16" "2013-07-09"
##  [5596] "2013-07-09" "2011-03-27" "2011-03-27" "2011-06-22" "2011-08-30"
##  [5601] "2011-08-30" "2011-06-17" "2013-07-03" "2013-07-03" "2011-08-30"
##  [5606] "2011-08-22" "2011-06-22" "2013-07-03" "2011-06-17" "2011-08-22"
##  [5611] "2011-08-22" "2011-08-30" "2011-08-30" "2011-06-17" "2011-08-22"
##  [5616] "2013-07-03" "2011-06-17" "2011-08-22" "2011-06-22" "2011-06-22"
##  [5621] "2011-06-22" "2011-06-17" "2012-08-01" "2012-08-01" "2011-01-29"
##  [5626] "2011-01-29" "2011-01-29" "2011-01-29" "2011-01-29" "2013-05-17"
##  [5631] "2013-05-17" "2013-05-17" "2013-05-17" "2013-05-17" "2012-06-24"
##  [5636] "2012-06-24" "2012-05-18" "2012-06-24" "2012-05-18" "2012-04-03"
##  [5641] "2012-06-24" "2012-06-24" "2012-04-03" "2011-05-04" "2011-05-04"
##  [5646] "2011-05-04" "2012-12-01" "2013-08-10" "2013-08-10" "2012-12-01"
##  [5651] "2012-12-01" "2014-01-16" "2014-01-16" "2014-01-16" "2014-01-16"
##  [5656] "2014-01-16" "2014-01-16" "2011-08-21" "2011-08-14" "2011-08-21"
##  [5661] "2013-03-15" "2011-08-14" "2011-08-14" "2013-03-15" "2011-08-21"
##  [5666] "2012-03-02" "2012-03-02" "2012-03-02" "2012-03-02" "2012-03-02"
##  [5671] "2012-03-02" "2012-08-17" "2012-08-17" "2011-03-24" "2011-03-24"
##  [5676] "2011-03-24" "2011-03-24" "2011-03-24" "2013-01-19" "2013-01-19"
##  [5681] "2013-01-19" "2013-01-19" "2013-01-19" "2013-01-19" "2013-06-15"
##  [5686] "2013-03-14" "2013-06-15" "2013-06-15" "2013-06-15" "2012-12-20"
##  [5691] "2013-03-14" "2012-06-30" "2013-06-15" "2013-06-15" "2012-06-30"
##  [5696] "2012-12-20" "2013-03-14" "2012-09-10" "2011-02-03" "2011-02-03"
##  [5701] "2012-09-10" "2011-02-12" "2013-11-18" "2012-09-10" "2013-11-18"
##  [5706] "2011-02-12" "2013-11-18" "2012-09-10" "2012-09-10" "2013-11-18"
##  [5711] "2013-01-14" "2011-11-23" "2013-01-14" "2013-12-31" "2013-01-14"
##  [5716] "2012-08-29" "2011-11-23" "2013-01-14" "2011-11-23" "2011-11-22"
##  [5721] "2011-11-22" "2013-01-14" "2013-02-07" "2013-02-07" "2013-12-31"
##  [5726] "2013-02-07" "2012-08-29" "2011-03-07" "2011-03-07" "2013-12-31"
##  [5731] "2011-11-22" "2012-08-29" "2012-02-28" "2012-04-22" "2012-02-02"
##  [5736] "2012-02-28" "2012-04-22" "2012-02-28" "2012-04-22" "2012-02-02"
##  [5741] "2011-08-22" "2011-08-22" "2011-08-22" "2011-08-22" "2011-08-22"
##  [5746] "2013-06-30" "2013-12-05" "2011-07-15" "2013-03-17" "2013-06-30"
##  [5751] "2013-12-05" "2013-12-05" "2011-07-15" "2013-07-03" "2013-06-30"
##  [5756] "2013-07-03" "2011-07-15" "2013-06-30" "2013-06-30" "2013-03-17"
##  [5761] "2013-12-05" "2013-12-05" "2011-10-12" "2011-10-12" "2011-04-20"
##  [5766] "2011-10-12" "2011-04-20" "2011-10-12" "2011-04-20" "2011-09-07"
##  [5771] "2011-09-27" "2011-09-27" "2011-09-13" "2011-09-27" "2011-09-07"
##  [5776] "2011-09-07" "2011-09-27" "2011-09-13" "2011-05-01" "2011-09-27"
##  [5781] "2012-04-29" "2012-04-29" "2011-09-27" "2011-09-13" "2011-05-01"
##  [5786] "2012-04-29" "2012-04-29" "2012-04-29" "2013-04-16" "2013-04-16"
##  [5791] "2013-04-16" "2013-07-10" "2013-07-10" "2012-03-21" "2013-01-10"
##  [5796] "2013-01-10" "2012-03-21" "2013-06-30" "2013-06-30" "2012-03-21"
##  [5801] "2012-03-21" "2011-03-16" "2012-08-27" "2011-03-16" "2012-08-27"
##  [5806] "2012-08-27" "2011-09-04" "2011-09-04" "2013-09-28" "2013-09-28"
##  [5811] "2011-09-04" "2013-09-28" "2013-09-28" "2011-09-04" "2012-12-24"
##  [5816] "2012-12-24" "2012-12-24" "2011-09-04" "2011-07-25" "2011-02-22"
##  [5821] "2011-02-22" "2011-02-22" "2011-07-25" "2013-09-05" "2013-09-05"
##  [5826] "2011-12-13" "2011-12-13" "2012-03-29" "2012-04-12" "2012-04-12"
##  [5831] "2012-03-29" "2012-04-12" "2012-11-04" "2012-11-04" "2012-11-04"
##  [5836] "2013-12-25" "2013-12-25" "2013-07-05" "2013-12-25" "2013-07-05"
##  [5841] "2012-02-12" "2013-10-10" "2013-10-13" "2012-02-12" "2011-10-04"
##  [5846] "2013-03-03" "2013-03-03" "2013-10-10" "2013-10-13" "2012-02-12"
##  [5851] "2011-10-04" "2011-10-04" "2011-07-06" "2011-07-06" "2011-07-06"
##  [5856] "2013-07-18" "2013-07-18" "2011-07-06" "2013-07-18" "2011-07-06"
##  [5861] "2012-01-14" "2013-11-27" "2011-07-03" "2011-06-11" "2011-06-06"
##  [5866] "2012-01-14" "2013-11-27" "2011-06-06" "2011-06-11" "2011-06-06"
##  [5871] "2011-07-03" "2013-11-27" "2011-07-03" "2011-06-06" "2011-06-11"
##  [5876] "2011-06-06" "2011-06-11" "2011-06-11" "2011-06-11" "2011-06-06"
##  [5881] "2012-01-14" "2012-01-14" "2012-01-14" "2011-11-15" "2012-11-10"
##  [5886] "2011-03-05" "2011-03-05" "2011-11-15" "2012-11-10" "2012-11-10"
##  [5891] "2011-11-15" "2011-11-15" "2011-03-05" "2011-11-15" "2011-05-28"
##  [5896] "2011-05-28" "2011-05-22" "2011-05-22" "2011-05-28" "2011-05-22"
##  [5901] "2013-09-03" "2013-12-04" "2013-09-03" "2012-10-18" "2013-09-03"
##  [5906] "2013-11-27" "2013-12-04" "2013-09-03" "2012-10-18" "2013-11-27"
##  [5911] "2012-10-18" "2014-02-08" "2012-10-10" "2011-08-05" "2014-02-08"
##  [5916] "2012-10-10" "2011-08-05" "2014-02-08" "2011-08-05" "2012-10-10"
##  [5921] "2012-11-12" "2012-11-12" "2012-03-26" "2012-03-26" "2012-07-24"
##  [5926] "2012-07-24" "2012-03-26" "2012-03-26" "2012-03-26" "2011-09-05"
##  [5931] "2011-09-05" "2011-09-05" "2011-12-24" "2011-12-24" "2011-12-24"
##  [5936] "2011-12-24" "2013-08-29" "2011-12-24" "2013-08-29" "2013-08-29"
##  [5941] "2011-09-03" "2011-08-01" "2011-08-31" "2011-08-31" "2011-09-03"
##  [5946] "2012-04-28" "2011-09-03" "2012-04-28" "2012-12-17" "2012-12-17"
##  [5951] "2011-09-03" "2011-08-01" "2011-09-03" "2011-08-31" "2011-08-31"
##  [5956] "2012-12-17" "2011-08-01" "2011-08-31" "2011-08-01" "2012-12-17"
##  [5961] "2011-08-01" "2011-08-01" "2012-12-17" "2011-03-05" "2013-06-10"
##  [5966] "2013-06-10" "2013-06-08" "2011-03-05" "2013-06-08" "2013-06-08"
##  [5971] "2011-03-05" "2014-01-16" "2013-03-11" "2014-01-16" "2013-06-08"
##  [5976] "2014-01-16" "2013-03-11" "2013-06-10" "2014-01-16" "2011-03-13"
##  [5981] "2011-03-13" "2013-06-10" "2011-03-13" "2013-06-10" "2013-06-08"
##  [5986] "2014-01-16" "2014-01-10" "2012-03-04" "2012-03-04" "2013-03-23"
##  [5991] "2014-01-10" "2013-06-22" "2012-03-04" "2013-03-20" "2013-03-23"
##  [5996] "2013-03-20" "2013-03-23" "2014-01-10" "2013-03-23" "2013-06-22"
##  [6001] "2013-06-22" "2012-03-04" "2012-03-04" "2012-03-04" "2013-03-20"
##  [6006] "2013-03-20" "2013-06-22" "2013-06-22" "2013-03-23" "2013-03-20"
##  [6011] "2011-10-23" "2011-06-30" "2011-10-23" "2013-03-14" "2011-06-30"
##  [6016] "2011-07-03" "2013-03-14" "2011-07-03" "2011-07-03" "2013-03-14"
##  [6021] "2011-07-03" "2011-06-29" "2011-06-15" "2011-07-12" "2011-07-12"
##  [6026] "2011-07-12" "2011-07-12" "2011-06-29" "2011-07-07" "2011-07-07"
##  [6031] "2011-06-15" "2011-07-12" "2011-07-07" "2011-06-29" "2012-08-07"
##  [6036] "2012-08-07" "2012-11-04" "2012-10-26" "2012-10-26" "2012-11-04"
##  [6041] "2012-11-04" "2012-10-26" "2012-11-04" "2012-10-26" "2012-10-26"
##  [6046] "2012-08-07" "2012-10-26" "2012-11-04" "2012-11-04" "2011-07-13"
##  [6051] "2011-07-13" "2013-05-17" "2012-12-23" "2013-05-17" "2012-12-23"
##  [6056] "2012-12-23" "2013-05-17" "2013-05-17" "2013-05-17" "2012-12-23"
##  [6061] "2012-12-23" "2013-10-20" "2013-10-20" "2011-09-08" "2011-09-08"
##  [6066] "2011-12-19" "2011-12-19" "2011-09-08" "2011-12-19" "2011-08-10"
##  [6071] "2011-08-14" "2013-07-08" "2011-08-10" "2011-08-10" "2013-07-14"
##  [6076] "2011-08-14" "2013-07-08" "2011-08-14" "2013-07-14" "2013-07-14"
##  [6081] "2013-07-08" "2011-09-29" "2011-08-10" "2013-07-08" "2011-08-10"
##  [6086] "2013-07-14" "2011-08-14" "2011-09-29" "2013-07-14" "2013-07-14"
##  [6091] "2013-07-08" "2013-07-08" "2011-08-14" "2013-07-21" "2011-03-06"
##  [6096] "2011-03-06" "2013-07-21" "2013-10-03" "2013-10-03" "2013-10-03"
##  [6101] "2011-03-06" "2011-03-06" "2013-07-21" "2013-10-03" "2013-10-08"
##  [6106] "2013-10-03" "2013-10-08" "2013-10-08" "2013-10-08" "2011-03-06"
##  [6111] "2013-10-08" "2013-01-18" "2013-01-18" "2012-06-16" "2012-06-16"
##  [6116] "2012-06-16" "2012-06-16" "2012-06-16" "2012-06-16" "2012-03-19"
##  [6121] "2013-03-04" "2012-03-19" "2012-03-19" "2013-09-25" "2012-03-19"
##  [6126] "2012-01-03" "2013-09-25" "2012-03-19" "2013-09-25" "2013-04-26"
##  [6131] "2013-09-25" "2013-04-26" "2012-01-03" "2013-03-04" "2012-01-03"
##  [6136] "2013-03-04" "2013-04-26" "2012-01-03" "2013-03-04" "2013-09-25"
##  [6141] "2013-04-26" "2013-04-26" "2013-03-04" "2011-02-15" "2013-01-18"
##  [6146] "2013-01-18" "2011-12-24" "2011-12-24" "2013-10-25" "2013-10-25"
##  [6151] "2013-01-18" "2013-01-18" "2013-10-25" "2013-01-18" "2011-02-15"
##  [6156] "2013-10-19" "2013-10-17" "2013-10-19" "2013-10-14" "2013-10-14"
##  [6161] "2013-10-17" "2012-10-16" "2013-12-21" "2012-02-27" "2012-02-27"
##  [6166] "2012-02-27" "2013-12-21" "2012-10-16" "2012-10-16" "2012-10-16"
##  [6171] "2012-12-21" "2012-12-21" "2012-12-21" "2013-05-13" "2012-03-06"
##  [6176] "2013-05-13" "2012-02-25" "2013-05-13" "2012-02-25" "2012-03-06"
##  [6181] "2013-05-13" "2013-05-13" "2012-11-19" "2011-11-30" "2012-11-19"
##  [6186] "2011-11-30" "2011-11-30" "2012-11-19" "2013-10-22" "2013-05-22"
##  [6191] "2013-05-22" "2012-12-15" "2012-12-15" "2012-12-15" "2013-05-22"
##  [6196] "2012-12-15" "2012-12-15" "2013-10-22" "2013-05-22" "2013-10-22"
##  [6201] "2013-05-22" "2011-04-20" "2013-05-25" "2014-01-13" "2014-01-13"
##  [6206] "2011-04-20" "2011-04-28" "2014-01-16" "2014-01-16" "2011-04-28"
##  [6211] "2013-05-25" "2013-05-25" "2013-05-25" "2013-05-25" "2013-02-19"
##  [6216] "2013-02-19" "2011-06-25" "2011-06-25" "2013-02-19" "2011-06-25"
##  [6221] "2013-02-19" "2013-11-10" "2013-11-10" "2013-11-10" "2011-07-22"
##  [6226] "2012-12-27" "2012-12-27" "2012-12-27" "2011-07-22" "2011-07-22"
##  [6231] "2011-01-26" "2011-01-26" "2012-05-19" "2011-04-28" "2012-05-19"
##  [6236] "2011-04-28" "2011-04-28" "2011-01-26" "2011-01-26" "2011-01-26"
##  [6241] "2013-05-20" "2013-05-20" "2012-12-31" "2013-06-03" "2013-06-03"
##  [6246] "2013-06-03" "2013-06-03" "2013-06-03" "2011-05-03" "2013-06-03"
##  [6251] "2012-12-31" "2012-12-31" "2011-05-03" "2011-07-30" "2011-07-30"
##  [6256] "2011-10-13" "2011-07-30" "2011-02-07" "2011-10-13" "2011-02-07"
##  [6261] "2011-02-07" "2011-02-07" "2012-06-26" "2011-02-07" "2011-10-13"
##  [6266] "2011-07-30" "2011-10-13" "2012-06-26" "2012-06-26" "2011-10-13"
##  [6271] "2011-07-30" "2013-04-23" "2013-04-23" "2011-08-13" "2011-02-27"
##  [6276] "2011-02-27" "2013-04-23" "2011-08-13" "2011-02-27" "2011-08-13"
##  [6281] "2011-08-13" "2011-08-13" "2011-02-27" "2013-09-06" "2011-11-18"
##  [6286] "2013-09-06" "2011-11-18" "2013-09-06" "2013-09-06" "2011-11-18"
##  [6291] "2011-11-18" "2011-11-18" "2013-09-06" "2013-07-01" "2013-07-01"
##  [6296] "2011-09-04" "2011-09-04" "2011-09-04" "2011-09-04" "2014-01-25"
##  [6301] "2014-01-25" "2013-05-08" "2013-05-08" "2013-05-08" "2013-05-08"
##  [6306] "2013-05-08" "2011-11-25" "2011-06-01" "2011-08-16" "2011-11-25"
##  [6311] "2011-08-08" "2011-02-08" "2011-08-08" "2011-02-08" "2011-08-08"
##  [6316] "2011-06-01" "2011-08-16" "2011-08-16" "2011-08-16" "2011-08-08"
##  [6321] "2011-06-01" "2011-08-08" "2011-08-16" "2011-03-15" "2011-03-15"
##  [6326] "2011-03-15" "2011-08-07" "2011-08-07" "2012-09-15" "2012-09-15"
##  [6331] "2012-07-14" "2012-07-14" "2011-08-24" "2011-08-24" "2012-09-15"
##  [6336] "2012-07-14" "2012-07-14" "2012-07-14" "2012-07-14" "2012-09-15"
##  [6341] "2012-09-15" "2012-09-15" "2011-08-24" "2011-10-02" "2011-10-02"
##  [6346] "2011-10-02" "2012-07-26" "2012-07-26" "2012-07-26" "2012-07-26"
##  [6351] "2012-07-26" "2013-04-16" "2012-03-13" "2013-04-17" "2013-04-16"
##  [6356] "2013-04-16" "2013-04-17" "2012-03-13" "2013-04-17" "2012-07-01"
##  [6361] "2012-07-01" "2012-07-01" "2013-02-26" "2013-02-26" "2013-03-08"
##  [6366] "2013-03-08" "2013-02-26" "2011-08-18" "2011-12-24" "2011-12-24"
##  [6371] "2012-05-11" "2012-05-11" "2011-12-24" "2012-05-11" "2011-08-18"
##  [6376] "2011-11-10" "2011-11-10" "2011-11-10" "2013-08-01" "2013-08-03"
##  [6381] "2013-08-03" "2013-08-01" "2011-11-10" "2011-11-10" "2013-10-28"
##  [6386] "2013-10-28" "2013-11-06" "2011-05-09" "2011-05-09" "2013-11-06"
##  [6391] "2011-05-09" "2013-10-28" "2011-05-09" "2013-11-06" "2013-10-28"
##  [6396] "2011-05-09" "2011-05-09" "2013-11-06" "2013-11-06" "2013-10-28"
##  [6401] "2012-01-10" "2012-10-17" "2012-10-17" "2012-01-10" "2012-10-17"
##  [6406] "2012-10-17" "2012-10-17" "2013-02-15" "2013-10-03" "2013-10-03"
##  [6411] "2013-02-15" "2013-10-03" "2013-02-15" "2013-11-16" "2013-11-16"
##  [6416] "2011-12-15" "2013-11-16" "2011-12-15" "2012-04-07" "2012-04-07"
##  [6421] "2013-09-15" "2013-09-15" "2013-09-15" "2013-09-15" "2013-01-12"
##  [6426] "2013-01-16" "2013-01-16" "2013-01-12" "2013-10-11" "2012-04-07"
##  [6431] "2013-10-11" "2013-09-15" "2013-09-15" "2013-01-12" "2013-01-16"
##  [6436] "2013-02-24" "2013-02-24" "2013-02-24" "2013-09-01" "2013-09-01"
##  [6441] "2013-02-24" "2014-01-24" "2014-01-24" "2014-01-24" "2012-01-31"
##  [6446] "2014-01-24" "2014-01-24" "2012-01-31" "2011-11-08" "2011-11-03"
##  [6451] "2011-11-08" "2011-11-08" "2011-11-03" "2011-11-03" "2013-03-12"
##  [6456] "2013-03-12" "2011-03-20" "2012-05-17" "2012-05-17" "2012-05-17"
##  [6461] "2011-11-24" "2012-05-17" "2011-03-20" "2011-03-20" "2011-11-24"
##  [6466] "2011-03-20" "2011-03-20" "2011-11-24" "2011-11-24" "2011-11-24"
##  [6471] "2012-05-17" "2013-04-07" "2012-04-12" "2013-04-07" "2012-04-12"
##  [6476] "2012-04-12" "2013-04-07" "2013-04-07" "2013-04-07" "2012-04-12"
##  [6481] "2011-04-09" "2011-04-09" "2011-04-09" "2011-05-20" "2011-05-20"
##  [6486] "2013-01-26" "2013-01-26" "2012-12-06" "2013-01-26" "2012-12-06"
##  [6491] "2013-01-26" "2012-12-06" "2012-12-06" "2013-01-26" "2013-06-15"
##  [6496] "2013-06-15" "2012-11-28" "2013-06-15" "2013-06-15" "2013-06-15"
##  [6501] "2012-11-28" "2012-01-09" "2011-05-15" "2012-03-23" "2012-03-23"
##  [6506] "2012-01-09" "2012-03-23" "2011-09-30" "2011-05-15" "2012-03-23"
##  [6511] "2012-01-09" "2012-01-09" "2011-09-30" "2012-03-23" "2012-01-22"
##  [6516] "2012-01-22" "2011-11-22" "2011-11-22" "2011-11-22" "2012-01-22"
##  [6521] "2011-11-22" "2011-11-22" "2011-11-22" "2012-01-22" "2012-01-22"
##  [6526] "2011-11-22" "2011-11-22" "2012-12-04" "2014-01-10" "2014-01-10"
##  [6531] "2012-12-06" "2014-01-10" "2012-12-04" "2012-12-06" "2011-06-06"
##  [6536] "2013-09-19" "2011-06-06" "2013-09-19" "2011-06-06" "2011-06-06"
##  [6541] "2011-06-06" "2013-09-19" "2013-09-19" "2012-04-29" "2012-04-29"
##  [6546] "2013-02-03" "2013-01-27" "2013-01-27" "2013-01-27" "2011-03-06"
##  [6551] "2013-02-03" "2013-02-03" "2011-03-06" "2011-03-06" "2014-01-31"
##  [6556] "2014-01-31" "2014-01-31" "2014-02-15" "2014-02-15" "2012-06-18"
##  [6561] "2012-06-18" "2012-06-18" "2014-01-24" "2013-07-30" "2013-07-30"
##  [6566] "2012-11-25" "2014-01-24" "2013-07-30" "2012-11-25" "2014-01-24"
##  [6571] "2013-07-30" "2013-07-30" "2011-11-22" "2011-11-22" "2011-11-22"
##  [6576] "2013-07-07" "2013-07-07" "2014-02-03" "2011-10-17" "2011-10-17"
##  [6581] "2011-10-17" "2011-10-17" "2014-02-03" "2011-10-17" "2013-07-27"
##  [6586] "2013-07-27" "2011-01-26" "2013-07-27" "2013-07-27" "2011-01-26"
##  [6591] "2012-02-27" "2012-02-27" "2012-02-27" "2011-01-26" "2012-02-27"
##  [6596] "2012-02-27" "2013-03-08" "2012-06-14" "2012-06-14" "2013-03-08"
##  [6601] "2013-03-08" "2011-04-10" "2011-04-10" "2012-06-14" "2012-06-14"
##  [6606] "2012-06-14" "2013-03-08" "2013-03-08" "2012-03-30" "2011-09-03"
##  [6611] "2013-04-10" "2012-03-30" "2012-03-30" "2011-09-03" "2013-04-10"
##  [6616] "2012-11-14" "2012-11-14" "2012-11-14" "2012-11-14" "2012-11-14"
##  [6621] "2013-03-13" "2013-03-13" "2013-03-13" "2013-03-13" "2013-03-13"
##  [6626] "2012-04-08" "2012-04-08" "2012-04-08" "2012-04-08" "2012-04-08"
##  [6631] "2011-08-21" "2013-07-04" "2013-07-04" "2011-08-21" "2011-07-13"
##  [6636] "2011-06-10" "2011-06-10" "2011-07-13" "2011-07-13" "2011-07-13"
##  [6641] "2013-03-15" "2013-03-15" "2013-03-15" "2013-03-15" "2011-07-13"
##  [6646] "2013-08-19" "2013-04-04" "2013-08-19" "2013-04-04" "2013-04-04"
##  [6651] "2011-03-12" "2011-03-12" "2013-08-19" "2011-03-12" "2013-04-04"
##  [6656] "2012-09-24" "2012-08-14" "2012-09-24" "2012-08-14" "2012-08-14"
##  [6661] "2012-08-14" "2013-12-30" "2013-12-30" "2013-12-30" "2013-12-29"
##  [6666] "2013-12-30" "2013-12-29" "2013-12-30" "2013-12-29" "2013-12-29"
##  [6671] "2011-11-19" "2013-12-29" "2011-11-19" "2011-11-19" "2011-11-19"
##  [6676] "2012-10-14" "2011-12-09" "2011-12-09" "2011-12-09" "2012-10-14"
##  [6681] "2012-10-14" "2011-12-09" "2012-12-26" "2012-12-26" "2012-12-26"
##  [6686] "2013-02-08" "2012-02-13" "2012-02-13" "2012-04-22" "2011-12-03"
##  [6691] "2012-10-05" "2012-10-05" "2012-04-22" "2012-12-26" "2011-12-03"
##  [6696] "2012-10-05" "2012-02-13" "2011-12-03" "2011-12-03" "2013-02-08"
##  [6701] "2012-10-05" "2011-12-03" "2012-10-05" "2012-10-05" "2012-04-22"
##  [6706] "2013-03-26" "2013-03-26" "2013-07-21" "2013-07-21" "2013-03-26"
##  [6711] "2013-03-26" "2013-03-26" "2013-07-21" "2013-07-21" "2013-07-21"
##  [6716] "2013-10-11" "2012-05-23" "2013-10-11" "2012-05-18" "2013-10-11"
##  [6721] "2012-05-23" "2012-05-18" "2013-10-11" "2012-05-23" "2012-05-18"
##  [6726] "2013-09-16" "2013-09-16" "2012-07-17" "2013-11-28" "2013-09-16"
##  [6731] "2012-07-17" "2013-11-28" "2013-09-16" "2012-07-17" "2013-09-06"
##  [6736] "2013-09-06" "2013-11-28" "2013-09-06" "2013-09-06" "2011-12-20"
##  [6741] "2011-12-20" "2011-04-01" "2011-04-01" "2011-04-01" "2013-02-07"
##  [6746] "2011-10-05" "2011-10-05" "2011-10-05" "2011-10-05" "2013-02-07"
##  [6751] "2011-10-05" "2012-06-18" "2012-06-18" "2012-10-06" "2013-09-04"
##  [6756] "2012-10-06" "2012-06-24" "2012-10-02" "2012-10-02" "2012-06-24"
##  [6761] "2012-06-24" "2012-10-02" "2012-10-06" "2013-09-04" "2013-09-04"
##  [6766] "2013-09-04" "2012-10-06" "2013-09-04" "2012-10-02" "2012-06-24"
##  [6771] "2012-10-02" "2012-10-06" "2012-10-23" "2011-03-01" "2014-01-09"
##  [6776] "2014-01-09" "2012-10-23" "2012-10-23" "2014-01-09" "2012-10-23"
##  [6781] "2014-01-09" "2012-10-15" "2014-01-09" "2012-10-23" "2012-10-15"
##  [6786] "2012-10-15" "2011-03-01" "2012-10-15" "2012-10-15" "2012-12-01"
##  [6791] "2013-11-25" "2011-04-25" "2013-11-12" "2013-11-25" "2012-12-01"
##  [6796] "2013-11-25" "2013-11-12" "2012-12-01" "2013-11-12" "2011-04-25"
##  [6801] "2011-04-25" "2013-11-12" "2013-01-20" "2013-05-02" "2013-05-02"
##  [6806] "2012-09-11" "2013-07-01" "2013-07-01" "2012-09-11" "2013-01-20"
##  [6811] "2013-07-01" "2013-01-20" "2013-07-01" "2013-05-02" "2012-09-11"
##  [6816] "2012-11-07" "2012-09-11" "2013-05-02" "2013-05-02" "2013-07-01"
##  [6821] "2012-11-07" "2012-09-11" "2013-12-18" "2013-12-18" "2013-12-18"
##  [6826] "2013-12-18" "2013-12-18" "2014-01-08" "2013-07-23" "2014-01-08"
##  [6831] "2013-11-07" "2013-07-23" "2014-01-08" "2013-07-23" "2014-01-08"
##  [6836] "2011-09-05" "2013-11-07" "2013-07-23" "2014-01-08" "2011-09-05"
##  [6841] "2013-07-23" "2013-10-24" "2014-02-10" "2013-10-21" "2013-10-24"
##  [6846] "2014-02-10" "2013-10-24" "2013-10-21" "2014-02-10" "2013-10-21"
##  [6851] "2014-02-10" "2013-10-21" "2013-10-24" "2014-02-10" "2013-10-21"
##  [6856] "2013-10-24" "2014-01-28" "2011-10-20" "2014-01-28" "2011-10-20"
##  [6861] "2013-01-24" "2013-05-28" "2013-10-22" "2013-10-22" "2011-06-15"
##  [6866] "2013-01-24" "2014-02-12" "2013-05-28" "2013-10-22" "2011-11-14"
##  [6871] "2013-01-24" "2013-01-24" "2011-06-15" "2013-10-22" "2011-11-14"
##  [6876] "2011-06-15" "2013-01-24" "2011-06-15" "2011-06-15" "2014-02-12"
##  [6881] "2014-02-12" "2013-10-22" "2014-02-10" "2014-02-10" "2012-04-19"
##  [6886] "2012-04-19" "2012-04-19" "2011-09-12" "2011-10-03" "2013-12-12"
##  [6891] "2011-10-03" "2011-09-12" "2013-12-12" "2011-10-03" "2013-12-22"
##  [6896] "2013-12-22" "2012-05-04" "2011-09-06" "2013-10-19" "2011-09-06"
##  [6901] "2012-05-04" "2011-09-06" "2012-05-04" "2013-10-19" "2013-10-19"
##  [6906] "2012-05-04" "2012-05-04" "2011-12-09" "2011-12-09" "2011-06-24"
##  [6911] "2011-06-24" "2011-12-09" "2013-08-16" "2011-07-07" "2012-05-25"
##  [6916] "2013-06-27" "2011-07-07" "2012-06-17" "2012-06-17" "2013-06-27"
##  [6921] "2012-06-17" "2013-06-27" "2012-05-16" "2012-05-16" "2013-08-16"
##  [6926] "2012-05-25" "2013-06-27" "2012-05-25" "2013-06-27" "2011-07-07"
##  [6931] "2012-08-26" "2012-08-26" "2012-05-16" "2012-06-17" "2012-06-17"
##  [6936] "2012-04-23" "2013-08-05" "2012-04-23" "2013-08-05" "2013-08-05"
##  [6941] "2012-04-23" "2012-04-23" "2012-04-23" "2011-04-20" "2011-04-20"
##  [6946] "2011-04-20" "2011-04-05" "2011-04-20" "2011-04-05" "2011-04-20"
##  [6951] "2013-05-01" "2013-05-01" "2013-05-01" "2013-05-01" "2013-07-07"
##  [6956] "2013-05-01" "2013-07-07" "2013-07-07" "2013-03-14" "2013-03-14"
##  [6961] "2013-03-14" "2013-03-14" "2013-03-14" "2013-03-14" "2011-11-21"
##  [6966] "2012-08-11" "2012-08-11" "2011-05-27" "2012-08-11" "2012-12-16"
##  [6971] "2012-12-16" "2011-11-21" "2011-11-21" "2012-12-16" "2011-05-27"
##  [6976] "2011-11-21" "2012-08-25" "2011-05-27" "2012-08-25" "2012-08-25"
##  [6981] "2011-11-21" "2012-08-25" "2012-08-25" "2012-08-25" "2011-10-03"
##  [6986] "2011-10-03" "2011-10-03" "2011-11-18" "2014-02-19" "2011-11-18"
##  [6991] "2011-12-07" "2011-12-07" "2014-02-19" "2011-12-07" "2011-11-18"
##  [6996] "2011-07-09" "2011-07-09" "2013-04-01" "2012-01-23" "2012-01-23"
##  [7001] "2013-04-01" "2013-05-22" "2013-04-01" "2013-05-22" "2012-01-23"
##  [7006] "2013-05-22" "2013-05-22" "2013-05-22" "2012-12-23" "2012-12-23"
##  [7011] "2012-12-23" "2012-12-23" "2012-12-23" "2011-11-10" "2011-11-10"
##  [7016] "2011-11-10" "2011-11-28" "2014-02-14" "2011-11-28" "2014-02-14"
##  [7021] "2011-11-28" "2011-11-28" "2014-02-14" "2011-07-26" "2011-07-26"
##  [7026] "2013-09-09" "2012-11-07" "2012-11-07" "2013-09-09" "2013-09-09"
##  [7031] "2014-02-18" "2012-06-07" "2012-05-16" "2014-02-18" "2012-05-16"
##  [7036] "2012-06-07" "2013-04-11" "2013-04-11" "2014-02-18" "2012-02-18"
##  [7041] "2012-05-16" "2014-02-17" "2013-04-11" "2012-02-10" "2012-02-10"
##  [7046] "2012-06-07" "2013-04-11" "2013-04-11" "2014-02-18" "2012-02-18"
##  [7051] "2014-02-17" "2014-02-17" "2012-05-16" "2014-02-17" "2012-06-07"
##  [7056] "2013-08-02" "2013-08-12" "2013-08-13" "2013-08-13" "2013-08-12"
##  [7061] "2013-08-13" "2013-08-13" "2012-07-22" "2012-07-22" "2013-08-13"
##  [7066] "2013-08-02" "2013-08-13" "2013-08-12" "2013-08-12" "2012-07-22"
##  [7071] "2013-08-18" "2012-07-22" "2012-07-22" "2013-08-12" "2013-08-18"
##  [7076] "2013-08-12" "2013-08-07" "2013-08-20" "2013-08-07" "2011-12-07"
##  [7081] "2013-08-07" "2013-08-07" "2011-12-07" "2013-08-07" "2013-08-20"
##  [7086] "2013-08-20" "2013-05-22" "2013-05-22" "2013-05-22" "2012-09-12"
##  [7091] "2012-09-12" "2012-09-12" "2013-01-29" "2012-09-12" "2013-01-29"
##  [7096] "2012-09-12" "2012-09-12" "2011-12-12" "2012-11-17" "2012-11-17"
##  [7101] "2013-12-27" "2011-12-12" "2012-11-17" "2013-12-27" "2011-12-12"
##  [7106] "2012-04-22" "2011-05-10" "2013-01-09" "2012-04-24" "2013-10-24"
##  [7111] "2013-01-09" "2011-05-10" "2011-05-10" "2014-02-17" "2014-02-17"
##  [7116] "2013-10-24" "2011-05-10" "2012-04-24" "2013-01-09" "2012-04-22"
##  [7121] "2011-05-10" "2012-04-24" "2013-10-24" "2012-04-22" "2014-02-17"
##  [7126] "2012-04-22" "2012-04-22" "2013-12-18" "2013-12-18" "2013-12-18"
##  [7131] "2011-05-30" "2011-05-27" "2011-05-27" "2011-05-27" "2011-05-30"
##  [7136] "2011-05-30" "2011-05-30" "2011-05-27" "2011-05-27" "2011-05-30"
##  [7141] "2013-10-20" "2013-10-11" "2013-10-11" "2013-10-21" "2013-10-20"
##  [7146] "2013-10-21" "2013-10-09" "2013-08-10" "2013-08-10" "2013-08-10"
##  [7151] "2011-06-03" "2011-06-03" "2013-10-09" "2013-10-09" "2011-06-03"
##  [7156] "2011-06-03" "2011-06-03" "2012-11-08" "2012-04-05" "2012-11-08"
##  [7161] "2012-04-05" "2012-04-05" "2012-04-05" "2012-11-08" "2013-08-11"
##  [7166] "2013-08-18" "2013-08-11" "2013-08-18" "2012-12-10" "2012-12-10"
##  [7171] "2012-08-29" "2012-12-10" "2012-12-10" "2012-08-29" "2014-01-23"
##  [7176] "2012-02-17" "2012-12-10" "2014-01-23" "2012-12-10" "2012-08-29"
##  [7181] "2012-02-17" "2013-07-10" "2013-07-10" "2011-08-05" "2012-02-08"
##  [7186] "2011-08-05" "2012-02-08" "2012-02-11" "2011-08-05" "2012-03-12"
##  [7191] "2012-02-08" "2012-02-11" "2012-02-11" "2012-02-11" "2012-03-12"
##  [7196] "2012-02-11" "2011-08-05" "2011-08-05" "2011-08-05" "2012-03-12"
##  [7201] "2013-10-03" "2013-10-03" "2012-12-24" "2013-01-30" "2013-01-30"
##  [7206] "2012-12-24" "2013-10-03" "2013-10-03" "2013-01-30" "2012-12-24"
##  [7211] "2013-10-03" "2012-12-24" "2012-12-24" "2014-01-21" "2014-01-12"
##  [7216] "2014-01-12" "2011-07-21" "2011-07-21" "2014-01-21" "2011-07-21"
##  [7221] "2014-01-21" "2014-01-12" "2011-07-21" "2012-07-24" "2013-06-12"
##  [7226] "2013-06-12" "2012-07-24" "2012-07-24" "2012-02-13" "2012-02-13"
##  [7231] "2012-02-13" "2014-02-02" "2014-02-02" "2012-11-05" "2012-11-05"
##  [7236] "2012-11-05" "2012-05-31" "2012-11-05" "2014-02-02" "2012-05-31"
##  [7241] "2012-11-05" "2012-05-31" "2011-08-02" "2013-03-10" "2013-03-10"
##  [7246] "2011-08-02" "2013-03-28" "2013-12-01" "2013-04-07" "2013-12-01"
##  [7251] "2013-12-01" "2013-03-28" "2013-12-01" "2013-05-25" "2013-05-25"
##  [7256] "2013-04-07" "2013-03-28" "2013-05-25" "2013-03-28" "2013-03-28"
##  [7261] "2013-03-28" "2013-12-11" "2013-12-11" "2011-03-12" "2011-03-12"
##  [7266] "2011-03-12" "2013-01-11" "2013-01-11" "2013-01-11" "2013-01-11"
##  [7271] "2013-01-11" "2013-12-23" "2013-12-23" "2013-01-27" "2013-12-23"
##  [7276] "2013-01-27" "2011-11-12" "2012-03-26" "2013-12-23" "2011-11-12"
##  [7281] "2013-12-23" "2011-11-12" "2012-03-26" "2011-11-12" "2012-03-26"
##  [7286] "2012-07-16" "2012-07-16" "2012-07-16" "2012-07-16" "2012-07-16"
##  [7291] "2011-11-10" "2011-08-12" "2012-02-12" "2011-08-12" "2011-11-10"
##  [7296] "2012-02-12" "2011-08-12" "2011-11-10" "2011-11-10" "2011-08-12"
##  [7301] "2011-08-12" "2011-11-10" "2013-06-04" "2011-07-26" "2013-06-04"
##  [7306] "2011-10-02" "2013-06-04" "2011-10-02" "2013-06-04" "2011-07-26"
##  [7311] "2013-06-04" "2011-10-02" "2013-06-04" "2011-07-26" "2012-10-21"
##  [7316] "2012-10-21" "2012-10-21" "2012-10-21" "2013-06-21" "2013-06-15"
##  [7321] "2013-06-21" "2013-06-15" "2013-06-21" "2013-06-21" "2013-06-15"
##  [7326] "2013-06-15" "2013-06-21" "2013-06-15" "2011-05-01" "2011-05-01"
##  [7331] "2013-05-04" "2013-05-04" "2013-05-04" "2011-10-24" "2011-10-24"
##  [7336] "2011-09-29" "2011-09-29" "2011-09-29" "2011-09-29" "2011-09-29"
##  [7341] "2011-08-09" "2011-06-28" "2011-08-09" "2011-06-28" "2011-08-09"
##  [7346] "2013-01-30" "2011-08-09" "2013-01-30" "2013-01-30" "2011-08-09"
##  [7351] "2013-09-10" "2013-09-10" "2011-08-09" "2011-02-07" "2011-02-07"
##  [7356] "2011-02-07" "2011-02-07" "2011-02-07" "2012-06-22" "2012-02-18"
##  [7361] "2012-06-22" "2012-02-18" "2012-06-22" "2012-06-22" "2012-02-18"
##  [7366] "2012-06-22" "2012-02-18" "2012-02-18" "2012-09-24" "2011-03-07"
##  [7371] "2013-08-12" "2012-09-24" "2012-09-24" "2013-08-12" "2011-03-07"
##  [7376] "2011-03-07" "2013-08-12" "2013-08-12" "2013-08-12" "2011-06-11"
##  [7381] "2013-12-30" "2011-06-11" "2013-12-30" "2013-12-30" "2011-06-11"
##  [7386] "2013-12-30" "2013-12-30" "2011-06-11" "2013-12-30" "2011-06-11"
##  [7391] "2011-06-11" "2013-10-27" "2013-10-27" "2013-10-27" "2012-07-17"
##  [7396] "2012-07-17" "2012-07-17" "2012-07-25" "2013-12-03" "2013-12-03"
##  [7401] "2012-07-25" "2013-12-03" "2012-07-25" "2012-03-02" "2012-08-10"
##  [7406] "2012-08-10" "2012-08-10" "2012-08-10" "2012-03-02" "2012-08-10"
##  [7411] "2011-10-28" "2012-01-07" "2011-11-02" "2011-10-28" "2012-01-07"
##  [7416] "2011-11-02" "2012-10-08" "2011-11-02" "2012-10-08" "2011-10-28"
##  [7421] "2012-01-07" "2011-08-16" "2011-08-16" "2012-11-29" "2013-03-19"
##  [7426] "2012-09-24" "2014-01-28" "2012-11-29" "2012-03-21" "2014-01-28"
##  [7431] "2014-01-28" "2013-03-19" "2012-09-24" "2012-03-21" "2013-03-19"
##  [7436] "2012-02-03" "2012-02-03" "2013-10-08" "2013-03-08" "2013-03-08"
##  [7441] "2013-10-08" "2013-10-08" "2013-10-08" "2013-10-08" "2013-10-24"
##  [7446] "2013-10-24" "2013-08-07" "2013-10-24" "2013-10-24" "2013-10-24"
##  [7451] "2013-08-07" "2012-07-17" "2011-11-15" "2012-06-28" "2012-07-17"
##  [7456] "2012-06-28" "2012-09-26" "2011-11-15" "2012-06-28" "2012-09-26"
##  [7461] "2011-11-15" "2012-06-28" "2012-06-28" "2013-03-03" "2013-03-03"
##  [7466] "2012-12-17" "2012-12-17" "2013-03-03" "2013-03-03" "2013-03-03"
##  [7471] "2012-01-23" "2012-01-15" "2012-01-15" "2012-01-15" "2012-01-23"
##  [7476] "2012-01-23" "2014-02-19" "2014-02-19" "2011-04-26" "2011-04-26"
##  [7481] "2011-04-24" "2011-04-24" "2011-04-24" "2011-04-26" "2013-04-10"
##  [7486] "2013-04-10" "2013-04-10" "2011-03-03" "2012-08-25" "2011-03-03"
##  [7491] "2012-08-25" "2011-06-30" "2013-11-14" "2012-08-20" "2013-11-14"
##  [7496] "2013-11-14" "2013-11-14" "2011-06-30" "2011-06-30" "2013-11-14"
##  [7501] "2012-08-20" "2012-08-20" "2011-06-30" "2011-06-30" "2012-03-17"
##  [7506] "2013-05-31" "2013-08-11" "2011-05-06" "2012-03-17" "2013-05-31"
##  [7511] "2011-05-06" "2013-08-11" "2013-05-31" "2011-05-06" "2013-08-11"
##  [7516] "2013-08-11" "2013-08-11" "2013-05-31" "2012-03-17" "2013-05-31"
##  [7521] "2012-02-25" "2012-02-25" "2011-12-12" "2012-04-19" "2012-04-19"
##  [7526] "2012-02-25" "2012-04-19" "2012-03-03" "2012-03-03" "2011-12-12"
##  [7531] "2012-04-19" "2011-12-12" "2011-12-12" "2012-03-03" "2011-12-12"
##  [7536] "2012-04-19" "2011-03-18" "2012-12-31" "2013-01-03" "2012-12-31"
##  [7541] "2011-03-18" "2013-01-03" "2011-12-15" "2013-06-08" "2011-12-15"
##  [7546] "2011-12-24" "2013-06-08" "2013-06-08" "2013-06-08" "2011-05-14"
##  [7551] "2013-08-12" "2013-08-12" "2011-05-14" "2011-12-15" "2013-08-12"
##  [7556] "2011-12-24" "2011-07-17" "2011-07-17" "2012-02-23" "2012-02-23"
##  [7561] "2013-03-25" "2013-03-25" "2013-03-25" "2013-03-25" "2013-01-30"
##  [7566] "2011-05-22" "2013-01-30" "2011-08-27" "2011-05-22" "2013-01-06"
##  [7571] "2011-05-22" "2011-08-27" "2013-01-30" "2013-01-06" "2011-08-27"
##  [7576] "2011-08-27" "2011-05-22" "2013-01-06" "2013-01-06" "2013-01-30"
##  [7581] "2013-01-06" "2011-05-22" "2013-01-30" "2011-08-27" "2012-06-17"
##  [7586] "2012-06-08" "2012-06-08" "2012-08-02" "2012-06-08" "2013-11-17"
##  [7591] "2012-06-17" "2013-11-17" "2012-08-02" "2012-06-08" "2012-06-17"
##  [7596] "2012-06-17" "2013-11-28" "2013-11-28" "2013-11-28" "2013-01-04"
##  [7601] "2013-01-04" "2013-11-28" "2013-10-05" "2011-12-28" "2013-10-05"
##  [7606] "2013-10-05" "2011-12-28" "2013-10-05" "2013-10-05" "2012-07-09"
##  [7611] "2012-07-09" "2011-02-21" "2011-02-21" "2011-02-21" "2011-02-21"
##  [7616] "2011-02-21" "2011-02-25" "2011-02-25" "2011-02-25" "2011-02-25"
##  [7621] "2011-02-25" "2011-11-15" "2014-02-05" "2014-02-05" "2014-02-07"
##  [7626] "2014-02-07" "2011-11-15" "2011-11-15" "2011-05-16" "2011-06-07"
##  [7631] "2011-05-31" "2011-05-16" "2012-11-03" "2011-05-16" "2011-06-07"
##  [7636] "2011-06-07" "2011-06-07" "2011-05-31" "2011-06-07" "2011-05-31"
##  [7641] "2012-11-03" "2011-05-31" "2012-11-03" "2012-08-19" "2011-05-31"
##  [7646] "2012-11-03" "2012-11-03" "2011-05-16" "2012-08-19" "2011-05-16"
##  [7651] "2013-05-08" "2013-05-08" "2012-06-13" "2013-05-08" "2012-06-13"
##  [7656] "2011-08-08" "2013-05-08" "2011-08-08" "2012-06-13" "2012-06-13"
##  [7661] "2012-06-13" "2012-06-13" "2011-08-08" "2011-08-08" "2011-08-08"
##  [7666] "2011-02-15" "2011-02-15" "2011-02-15" "2012-11-10" "2012-11-10"
##  [7671] "2013-04-21" "2013-04-21" "2013-04-21" "2011-06-01" "2011-06-01"
##  [7676] "2012-01-01" "2011-06-01" "2012-01-01" "2013-04-21" "2013-04-21"
##  [7681] "2012-08-26" "2012-08-26" "2011-04-26" "2012-08-20" "2012-08-20"
##  [7686] "2012-08-26" "2011-04-26" "2012-08-20" "2012-08-26" "2012-08-20"
##  [7691] "2013-12-27" "2012-08-26" "2013-12-27" "2012-08-20" "2013-11-04"
##  [7696] "2013-11-04" "2011-08-26" "2011-08-26" "2011-09-12" "2011-09-12"
##  [7701] "2011-09-12" "2013-04-08" "2011-06-10" "2014-01-05" "2013-04-08"
##  [7706] "2014-01-05" "2011-06-10" "2014-01-05" "2014-01-05" "2014-01-05"
##  [7711] "2011-07-29" "2011-07-29" "2013-04-08" "2011-06-10" "2011-07-29"
##  [7716] "2011-06-28" "2011-06-28" "2011-11-24" "2011-06-28" "2011-06-28"
##  [7721] "2011-11-24" "2011-11-24" "2011-06-28" "2011-06-28" "2011-11-24"
##  [7726] "2011-11-24" "2012-02-05" "2012-02-05" "2012-05-08" "2012-05-08"
##  [7731] "2011-04-10" "2011-04-10" "2012-05-08" "2011-04-10" "2012-05-08"
##  [7736] "2012-08-21" "2012-08-17" "2012-05-25" "2012-08-17" "2012-08-21"
##  [7741] "2012-08-17" "2013-03-25" "2013-04-01" "2012-05-25" "2012-05-25"
##  [7746] "2013-03-25" "2012-05-25" "2013-04-01" "2013-04-01" "2012-05-25"
##  [7751] "2012-08-21" "2013-03-25" "2012-09-08" "2012-09-08" "2012-09-08"
##  [7756] "2012-09-08" "2012-09-08" "2011-12-28" "2011-12-28" "2011-11-13"
##  [7761] "2011-11-13" "2013-01-24" "2011-12-28" "2011-11-13" "2011-12-28"
##  [7766] "2013-01-24" "2011-05-16" "2012-07-19" "2012-07-19" "2012-07-19"
##  [7771] "2012-07-19" "2011-05-16" "2012-07-19" "2012-11-30" "2012-11-30"
##  [7776] "2012-11-30" "2012-11-30" "2011-05-20" "2011-05-20" "2011-05-20"
##  [7781] "2011-05-20" "2011-05-20" "2013-08-22" "2012-11-16" "2013-08-22"
##  [7786] "2013-08-22" "2013-08-22" "2012-11-16" "2013-01-29" "2013-01-29"
##  [7791] "2013-01-29" "2013-01-29" "2012-04-19" "2012-04-19" "2013-01-29"
##  [7796] "2013-01-29" "2012-11-14" "2012-11-14" "2011-09-04" "2012-11-12"
##  [7801] "2011-09-04" "2011-09-04" "2012-11-12" "2011-09-04" "2012-11-12"
##  [7806] "2012-11-12" "2011-09-04" "2012-11-14" "2012-08-23" "2013-03-09"
##  [7811] "2011-09-04" "2012-08-23" "2012-11-12" "2013-03-10" "2012-11-14"
##  [7816] "2012-11-14" "2013-03-09" "2013-03-10" "2012-10-06" "2012-10-06"
##  [7821] "2012-10-06" "2012-10-06" "2012-10-06" "2012-10-06" "2012-04-13"
##  [7826] "2012-04-13" "2012-04-13" "2012-08-03" "2012-08-03" "2012-04-13"
##  [7831] "2012-04-13" "2012-08-03" "2013-04-20" "2013-04-20" "2013-04-20"
##  [7836] "2012-07-27" "2012-07-27" "2012-07-27" "2012-07-27" "2012-07-27"
##  [7841] "2012-02-19" "2012-02-19" "2012-02-19" "2012-02-19" "2011-09-15"
##  [7846] "2011-09-15" "2011-11-19" "2011-12-07" "2011-11-19" "2012-02-19"
##  [7851] "2011-11-19" "2011-11-19" "2011-12-07" "2011-04-02" "2011-04-02"
##  [7856] "2011-11-19" "2011-11-19" "2012-07-19" "2013-06-08" "2012-10-13"
##  [7861] "2012-07-19" "2012-07-19" "2012-07-19" "2012-10-13" "2013-06-08"
##  [7866] "2012-10-13" "2012-07-19" "2012-03-29" "2012-03-29" "2013-05-17"
##  [7871] "2013-05-17" "2012-03-29" "2012-03-29" "2012-03-29" "2013-02-08"
##  [7876] "2013-02-08" "2013-02-08" "2011-08-01" "2012-05-12" "2011-08-01"
##  [7881] "2012-05-20" "2013-02-28" "2012-05-20" "2012-05-12" "2012-05-12"
##  [7886] "2013-02-28" "2011-08-01" "2012-09-03" "2011-08-01" "2012-05-20"
##  [7891] "2012-05-12" "2012-05-20" "2012-09-03" "2012-09-03" "2012-05-20"
##  [7896] "2011-08-01" "2012-05-20" "2012-05-12" "2012-05-12" "2011-08-01"
##  [7901] "2012-02-20" "2013-06-30" "2012-04-16" "2012-04-16" "2012-02-20"
##  [7906] "2012-02-20" "2013-07-06" "2013-06-20" "2012-04-16" "2013-06-20"
##  [7911] "2013-07-06" "2012-02-20" "2013-06-20" "2013-07-06" "2012-02-20"
##  [7916] "2012-02-20" "2012-03-15" "2013-06-30" "2013-07-06" "2013-06-20"
##  [7921] "2012-04-16" "2013-06-20" "2013-06-30" "2012-03-15" "2013-06-30"
##  [7926] "2013-06-30" "2013-03-20" "2013-03-20" "2013-08-05" "2013-08-05"
##  [7931] "2013-08-05" "2013-08-05" "2013-08-05" "2012-11-09" "2012-11-09"
##  [7936] "2011-07-26" "2012-03-06" "2012-10-05" "2011-07-26" "2012-10-05"
##  [7941] "2012-03-06" "2012-10-05" "2012-03-06" "2013-05-09" "2012-10-05"
##  [7946] "2012-03-06" "2012-10-05" "2013-05-09" "2013-05-09" "2012-03-06"
##  [7951] "2013-05-11" "2013-05-17" "2013-05-11" "2013-05-11" "2012-05-27"
##  [7956] "2013-05-11" "2011-04-16" "2012-05-27" "2012-02-12" "2013-05-17"
##  [7961] "2013-05-17" "2013-05-11" "2013-05-17" "2013-05-17" "2012-02-12"
##  [7966] "2011-04-16" "2012-11-17" "2012-11-23" "2012-11-23" "2012-11-23"
##  [7971] "2012-11-23" "2012-11-17" "2012-11-17" "2012-11-17" "2011-09-20"
##  [7976] "2012-12-27" "2011-09-20" "2011-09-20" "2011-09-20" "2012-12-27"
##  [7981] "2012-12-27" "2011-09-20" "2012-10-31" "2012-12-08" "2012-10-31"
##  [7986] "2012-12-08" "2012-10-31" "2012-10-31" "2013-01-03" "2013-01-03"
##  [7991] "2013-01-03" "2013-01-03" "2013-01-03" "2011-12-29" "2011-03-13"
##  [7996] "2011-03-13" "2011-12-29" "2011-03-13" "2012-02-08" "2011-03-13"
##  [8001] "2011-03-13" "2011-03-13" "2011-12-29" "2012-02-08" "2012-03-16"
##  [8006] "2012-03-16" "2012-03-16" "2012-03-16" "2012-03-16" "2013-12-13"
##  [8011] "2013-12-13" "2013-10-15" "2013-10-15" "2012-02-18" "2012-02-18"
##  [8016] "2013-09-28" "2012-02-18" "2013-09-28" "2013-09-28" "2012-02-18"
##  [8021] "2013-12-09" "2011-06-15" "2013-12-09" "2013-12-09" "2013-12-09"
##  [8026] "2013-12-07" "2011-06-23" "2013-12-07" "2011-07-12" "2011-06-23"
##  [8031] "2011-06-15" "2011-06-15" "2011-06-15" "2011-06-15" "2013-12-07"
##  [8036] "2013-12-07" "2011-06-23" "2011-07-12" "2011-06-23" "2011-06-23"
##  [8041] "2011-07-12" "2011-05-12" "2011-05-22" "2011-05-12" "2011-05-12"
##  [8046] "2011-10-16" "2011-05-22" "2011-10-16" "2011-10-16" "2011-05-12"
##  [8051] "2011-05-22" "2011-05-22" "2011-05-25" "2012-05-20" "2013-09-23"
##  [8056] "2013-09-23" "2012-05-20" "2013-09-23" "2011-05-25" "2013-09-23"
##  [8061] "2011-05-25" "2011-05-25" "2011-05-25" "2011-05-25" "2012-09-29"
##  [8066] "2012-09-29" "2012-09-29" "2012-09-29" "2013-08-07" "2013-09-23"
##  [8071] "2013-09-23" "2013-08-07" "2013-08-07" "2013-09-23" "2013-09-23"
##  [8076] "2012-09-29" "2013-08-07" "2013-08-07" "2013-09-23" "2012-09-28"
##  [8081] "2012-09-28" "2012-06-18" "2012-06-18" "2012-06-18" "2013-01-01"
##  [8086] "2013-01-01" "2011-10-28" "2011-10-28" "2011-10-28" "2011-10-28"
##  [8091] "2013-06-15" "2013-06-15" "2013-06-15" "2013-06-15" "2011-10-28"
##  [8096] "2013-06-15" "2013-02-06" "2013-02-06" "2013-02-12" "2012-02-11"
##  [8101] "2013-02-06" "2012-02-11" "2013-02-12" "2013-02-12" "2013-02-06"
##  [8106] "2013-02-12" "2011-08-11" "2011-08-11" "2011-08-11" "2012-05-09"
##  [8111] "2012-05-09" "2012-05-09" "2011-08-11" "2011-08-11" "2011-08-11"
##  [8116] "2012-04-08" "2012-04-08" "2012-04-12" "2012-04-12" "2012-04-12"
##  [8121] "2012-04-11" "2012-04-12" "2012-04-11" "2012-04-11" "2012-04-11"
##  [8126] "2013-11-24" "2011-12-20" "2013-11-24" "2011-12-20" "2013-06-10"
##  [8131] "2013-06-10" "2012-02-22" "2012-02-22" "2013-03-28" "2013-03-28"
##  [8136] "2012-02-22" "2013-03-28" "2013-09-06" "2013-03-28" "2013-03-28"
##  [8141] "2013-09-06" "2013-09-13" "2013-03-28" "2013-09-13" "2011-05-24"
##  [8146] "2011-05-24" "2014-01-07" "2014-01-07" "2014-01-07" "2011-05-24"
##  [8151] "2014-01-07" "2012-02-29" "2012-02-29" "2013-03-18" "2013-03-18"
##  [8156] "2013-01-19" "2013-01-19" "2013-03-10" "2013-03-18" "2013-09-20"
##  [8161] "2013-09-20" "2013-09-20" "2013-03-18" "2013-01-19" "2013-09-20"
##  [8166] "2013-03-10" "2013-03-18" "2013-09-20" "2013-03-10" "2013-03-10"
##  [8171] "2013-03-10" "2012-01-16" "2011-10-22" "2013-07-04" "2012-01-16"
##  [8176] "2011-10-22" "2013-07-04" "2013-11-13" "2011-10-22" "2011-10-06"
##  [8181] "2011-10-06" "2013-11-13" "2013-11-13" "2011-10-23" "2011-10-23"
##  [8186] "2011-10-23" "2013-03-19" "2013-03-19" "2013-03-19" "2011-10-23"
##  [8191] "2011-10-23" "2012-03-24" "2013-05-11" "2013-05-11" "2012-03-24"
##  [8196] "2013-05-11" "2011-04-03" "2013-09-14" "2013-09-16" "2013-09-16"
##  [8201] "2013-09-16" "2011-04-03" "2013-09-14" "2013-09-16" "2013-09-16"
##  [8206] "2013-09-14" "2013-09-14" "2013-09-16" "2011-04-03" "2013-09-14"
##  [8211] "2011-04-03" "2013-09-14" "2011-04-03" "2012-06-14" "2011-11-14"
##  [8216] "2013-04-16" "2013-04-16" "2012-06-14" "2011-11-14" "2011-11-14"
##  [8221] "2012-12-11" "2012-10-18" "2012-10-18" "2012-12-11" "2012-12-11"
##  [8226] "2013-09-20" "2011-10-20" "2013-08-13" "2011-10-20" "2013-09-20"
##  [8231] "2013-08-13" "2012-12-03" "2012-12-03" "2012-12-03" "2012-12-03"
##  [8236] "2012-12-03" "2011-04-16" "2011-04-16" "2011-04-19" "2011-04-16"
##  [8241] "2013-09-20" "2012-03-10" "2012-03-10" "2011-04-19" "2013-09-20"
##  [8246] "2011-04-19" "2013-09-20" "2012-01-29" "2012-01-29" "2012-02-02"
##  [8251] "2012-08-23" "2013-11-30" "2012-08-23" "2012-02-02" "2012-06-02"
##  [8256] "2011-03-31" "2012-02-02" "2012-02-02" "2013-11-30" "2012-01-05"
##  [8261] "2012-01-05" "2012-01-05" "2013-11-30" "2012-06-02" "2012-01-05"
##  [8266] "2012-02-02" "2012-01-05" "2011-03-31" "2011-05-08" "2011-05-08"
##  [8271] "2011-05-08" "2013-10-13" "2013-10-13" "2013-10-13" "2012-12-06"
##  [8276] "2012-12-06" "2012-12-06" "2013-12-05" "2013-12-05" "2013-12-05"
##  [8281] "2012-08-30" "2011-05-24" "2012-01-03" "2012-08-30" "2012-01-03"
##  [8286] "2013-11-05" "2012-01-03" "2011-05-24" "2011-05-24" "2012-08-21"
##  [8291] "2012-08-21" "2013-11-05" "2012-01-03" "2013-11-05" "2012-01-03"
##  [8296] "2013-11-05" "2013-11-05" "2012-01-03" "2013-01-02" "2013-01-02"
##  [8301] "2013-01-02" "2012-05-08" "2011-08-02" "2012-05-08" "2011-03-10"
##  [8306] "2011-03-14" "2011-08-02" "2012-05-08" "2011-03-10" "2011-03-14"
##  [8311] "2011-08-02" "2011-08-02" "2011-08-02" "2011-03-10" "2011-03-14"
##  [8316] "2011-10-23" "2012-09-26" "2012-09-26" "2011-10-23" "2011-10-23"
##  [8321] "2012-09-26" "2012-09-26" "2012-09-26" "2012-04-22" "2012-04-22"
##  [8326] "2012-04-22" "2012-04-08" "2012-04-08" "2013-04-01" "2013-04-01"
##  [8331] "2012-04-08" "2012-04-08" "2012-04-08" "2012-09-01" "2012-09-01"
##  [8336] "2012-09-01" "2013-11-02" "2013-11-02" "2013-11-02" "2013-11-02"
##  [8341] "2013-11-02" "2013-11-02" "2011-08-27" "2011-08-27" "2011-12-27"
##  [8346] "2011-12-27" "2011-12-27" "2011-12-27" "2012-08-14" "2013-12-16"
##  [8351] "2012-10-14" "2012-04-26" "2013-05-06" "2013-05-06" "2012-10-14"
##  [8356] "2012-08-14" "2012-04-26" "2013-12-12" "2013-12-12" "2012-10-14"
##  [8361] "2013-12-12" "2012-04-26" "2013-12-16" "2013-12-16" "2013-03-30"
##  [8366] "2013-03-30" "2011-02-14" "2011-02-14" "2013-03-30" "2011-02-14"
##  [8371] "2013-03-10" "2011-02-14" "2013-03-10" "2011-02-14" "2011-07-13"
##  [8376] "2011-07-13" "2011-07-13" "2011-07-13" "2013-11-09" "2011-07-13"
##  [8381] "2013-11-09" "2011-02-15" "2011-02-22" "2011-02-15" "2013-07-30"
##  [8386] "2013-07-30" "2011-02-22" "2013-07-30" "2011-02-22" "2011-02-22"
##  [8391] "2011-02-15" "2011-02-15" "2013-07-30" "2013-07-30" "2011-02-15"
##  [8396] "2011-02-22" "2013-06-24" "2013-06-24" "2012-10-05" "2012-10-05"
##  [8401] "2013-06-24" "2013-07-02" "2013-07-02" "2011-07-28" "2012-08-08"
##  [8406] "2013-07-02" "2012-08-08" "2012-10-05" "2011-07-28" "2012-08-08"
##  [8411] "2011-06-29" "2011-06-29" "2012-07-26" "2012-10-20" "2012-07-26"
##  [8416] "2011-06-29" "2012-07-26" "2012-07-26" "2012-03-28" "2012-03-28"
##  [8421] "2012-03-28" "2012-03-28" "2012-07-26" "2012-10-20" "2012-03-28"
##  [8426] "2012-11-05" "2012-11-05" "2013-12-26" "2013-12-26" "2011-12-07"
##  [8431] "2011-12-07" "2011-05-09" "2013-12-26" "2013-12-26" "2011-05-09"
##  [8436] "2012-01-12" "2012-01-12" "2013-12-21" "2012-01-03" "2013-12-21"
##  [8441] "2013-12-21" "2012-01-03" "2011-04-23" "2011-04-23" "2013-07-07"
##  [8446] "2013-07-07" "2013-07-07" "2013-02-17" "2012-11-05" "2012-11-05"
##  [8451] "2013-02-17" "2013-02-17" "2012-09-08" "2012-09-08" "2012-03-10"
##  [8456] "2011-07-14" "2011-07-14" "2012-08-26" "2012-03-10" "2012-08-26"
##  [8461] "2012-08-26" "2012-08-26" "2012-08-26" "2012-01-13" "2013-12-18"
##  [8466] "2013-12-26" "2013-02-13" "2013-12-18" "2012-01-13" "2013-12-26"
##  [8471] "2013-12-26" "2013-02-13" "2013-12-26" "2013-12-26" "2013-12-18"
##  [8476] "2013-12-18" "2012-01-13" "2013-12-18" "2013-02-13" "2011-11-27"
##  [8481] "2011-11-27" "2011-12-02" "2013-11-14" "2013-11-14" "2011-12-02"
##  [8486] "2011-12-02" "2011-11-27" "2012-09-08" "2011-11-27" "2012-09-08"
##  [8491] "2012-09-08" "2012-09-08" "2011-12-02" "2013-11-14" "2011-11-27"
##  [8496] "2013-11-14" "2011-12-02" "2012-09-08" "2011-06-01" "2011-06-01"
##  [8501] "2011-06-01" "2011-06-01" "2011-06-01" "2011-06-01" "2013-08-09"
##  [8506] "2013-06-05" "2012-12-17" "2012-12-17" "2012-12-17" "2013-08-09"
##  [8511] "2013-06-05" "2011-04-10" "2011-04-10" "2012-03-01" "2012-03-01"
##  [8516] "2012-03-01" "2011-04-10" "2011-04-10" "2012-03-01" "2012-08-21"
##  [8521] "2011-04-10" "2012-08-21" "2011-04-10" "2012-07-10" "2012-07-10"
##  [8526] "2012-07-10" "2014-02-13" "2014-02-20" "2013-10-06" "2012-01-06"
##  [8531] "2014-02-13" "2012-01-06" "2013-10-06" "2014-02-20" "2012-11-06"
##  [8536] "2012-11-06" "2011-07-18" "2011-07-18" "2011-07-18" "2011-07-18"
##  [8541] "2012-11-06" "2011-07-18" "2013-10-16" "2013-10-16" "2013-10-16"
##  [8546] "2013-10-16" "2012-06-05" "2012-02-24" "2012-06-05" "2012-12-31"
##  [8551] "2012-12-31" "2012-02-24" "2012-02-24" "2012-12-31" "2012-02-24"
##  [8556] "2012-02-24" "2012-02-24" "2012-06-05" "2012-07-23" "2013-06-16"
##  [8561] "2012-07-23" "2013-06-16" "2012-07-23" "2012-07-23" "2012-06-11"
##  [8566] "2012-06-11" "2012-11-25" "2013-02-10" "2012-11-25" "2012-11-25"
##  [8571] "2013-02-10" "2012-11-25" "2012-11-25" "2012-12-03" "2012-12-03"
##  [8576] "2012-12-03" "2012-12-03" "2012-12-03" "2013-07-04" "2012-10-15"
##  [8581] "2012-10-15" "2013-07-04" "2012-10-15" "2012-10-15" "2013-07-04"
##  [8586] "2013-11-06" "2013-06-30" "2013-11-06" "2013-11-06" "2013-06-30"
##  [8591] "2013-11-06" "2013-11-06" "2012-09-08" "2012-02-11" "2012-09-08"
##  [8596] "2012-02-11" "2012-02-11" "2012-09-08" "2012-02-11" "2012-09-08"
##  [8601] "2012-02-11" "2012-09-08" "2012-09-08" "2011-06-30" "2011-06-30"
##  [8606] "2011-06-30" "2011-06-30" "2011-06-30" "2011-12-13" "2011-12-06"
##  [8611] "2011-08-12" "2011-08-12" "2011-12-13" "2011-12-06" "2012-05-23"
##  [8616] "2011-12-06" "2012-05-23" "2011-08-12" "2012-05-23" "2011-12-13"
##  [8621] "2012-01-18" "2012-01-18" "2012-01-18" "2013-01-28" "2012-01-18"
##  [8626] "2012-01-18" "2013-01-28" "2012-07-31" "2014-01-22" "2012-07-31"
##  [8631] "2012-07-31" "2014-01-22" "2013-06-10" "2013-06-10" "2013-06-10"
##  [8636] "2011-08-02" "2011-08-02" "2011-08-02" "2011-08-02" "2011-08-02"
##  [8641] "2011-08-02" "2013-02-12" "2013-02-12" "2011-03-05" "2012-06-24"
##  [8646] "2012-06-24" "2012-04-23" "2012-04-25" "2012-04-25" "2012-04-23"
##  [8651] "2012-06-24" "2012-04-25" "2012-06-24" "2012-06-24" "2012-04-23"
##  [8656] "2011-03-05" "2012-09-27" "2011-05-12" "2012-09-27" "2011-05-12"
##  [8661] "2011-03-24" "2011-03-24" "2011-03-24" "2011-03-24" "2011-03-24"
##  [8666] "2011-03-24" "2013-03-01" "2011-10-25" "2011-05-24" "2011-05-24"
##  [8671] "2011-10-25" "2013-03-01" "2013-03-01" "2011-10-25" "2011-05-24"
##  [8676] "2011-10-25" "2011-05-24" "2011-05-24" "2011-10-25" "2013-11-08"
##  [8681] "2013-11-08" "2013-11-08" "2013-11-08" "2013-08-03" "2013-08-03"
##  [8686] "2013-08-03" "2013-08-03" "2013-11-08" "2013-08-03" "2014-01-30"
##  [8691] "2013-03-11" "2011-04-24" "2014-01-30" "2011-04-24" "2014-01-30"
##  [8696] "2011-04-24" "2013-03-11" "2014-01-30" "2011-04-24" "2011-04-24"
##  [8701] "2013-03-11" "2013-03-11" "2013-03-11" "2013-03-11" "2013-07-15"
##  [8706] "2013-06-27" "2013-07-15" "2013-07-15" "2013-06-27" "2011-06-13"
##  [8711] "2011-06-15" "2011-03-25" "2011-06-13" "2011-03-25" "2011-06-15"
##  [8716] "2011-06-15" "2011-06-13" "2011-06-13" "2011-06-15" "2012-06-21"
##  [8721] "2012-06-21" "2011-11-28" "2011-11-28" "2011-01-31" "2012-06-20"
##  [8726] "2013-01-10" "2013-01-10" "2011-01-31" "2011-11-28" "2013-01-10"
##  [8731] "2011-05-12" "2011-05-12" "2011-01-31" "2012-06-20" "2011-05-12"
##  [8736] "2013-01-10" "2013-01-10" "2011-04-27" "2011-07-07" "2011-04-27"
##  [8741] "2013-09-21" "2011-07-13" "2011-07-13" "2013-10-08" "2011-04-27"
##  [8746] "2011-07-07" "2013-09-14" "2013-09-21" "2011-07-07" "2011-07-07"
##  [8751] "2013-10-08" "2011-04-27" "2013-10-08" "2013-09-21" "2013-09-14"
##  [8756] "2012-10-18" "2011-07-13" "2011-07-13" "2011-07-07" "2013-09-14"
##  [8761] "2011-07-13" "2013-10-08" "2011-04-27" "2013-09-14" "2011-07-13"
##  [8766] "2013-09-21" "2013-09-14" "2011-07-07" "2012-10-18" "2013-09-21"
##  [8771] "2011-12-16" "2014-01-24" "2011-02-02" "2011-12-06" "2011-12-16"
##  [8776] "2014-02-11" "2014-01-24" "2014-01-24" "2014-01-24" "2014-02-11"
##  [8781] "2011-12-06" "2014-02-11" "2014-02-20" "2011-12-16" "2011-12-06"
##  [8786] "2011-12-06" "2014-02-20" "2014-01-24" "2011-12-16" "2014-02-20"
##  [8791] "2011-12-06" "2011-12-16" "2014-02-11" "2012-05-20" "2012-05-20"
##  [8796] "2014-02-20" "2014-02-20" "2014-02-11" "2011-02-02" "2012-05-20"
##  [8801] "2012-05-20" "2012-05-20" "2011-10-27" "2011-10-27" "2011-10-27"
##  [8806] "2014-01-08" "2014-01-08" "2012-06-17" "2014-01-08" "2012-06-17"
##  [8811] "2013-03-19" "2013-03-19" "2013-03-24" "2013-03-19" "2012-12-30"
##  [8816] "2013-03-19" "2013-01-02" "2013-03-24" "2013-01-02" "2012-12-30"
##  [8821] "2013-03-24" "2013-03-24" "2013-03-19" "2013-03-24" "2011-10-20"
##  [8826] "2011-10-20" "2011-10-20" "2011-10-20" "2011-10-20" "2014-02-18"
##  [8831] "2014-02-18" "2013-08-21" "2013-08-21" "2013-08-21" "2011-01-26"
##  [8836] "2014-02-18" "2013-08-21" "2014-02-18" "2014-02-18" "2011-06-03"
##  [8841] "2013-06-24" "2013-08-21" "2013-06-24" "2013-06-24" "2011-01-26"
##  [8846] "2011-06-03" "2012-07-07" "2012-03-01" "2013-03-15" "2013-03-15"
##  [8851] "2013-03-15" "2012-07-07" "2012-03-01" "2013-03-15" "2012-07-07"
##  [8856] "2012-07-07" "2013-03-15" "2013-03-15" "2012-07-07" "2013-12-25"
##  [8861] "2013-12-25" "2013-12-25" "2012-09-10" "2013-07-15" "2013-12-25"
##  [8866] "2013-12-25" "2012-09-10" "2013-07-15" "2012-09-18" "2012-09-14"
##  [8871] "2012-09-14" "2012-09-18" "2012-09-18" "2012-09-14" "2013-04-25"
##  [8876] "2014-01-07" "2013-04-25" "2013-04-25" "2013-04-25" "2013-04-25"
##  [8881] "2014-01-07" "2012-05-03" "2013-01-07" "2012-05-03" "2013-01-07"
##  [8886] "2012-05-03" "2013-01-07" "2012-12-25" "2012-05-18" "2012-05-18"
##  [8891] "2012-12-25" "2012-12-25" "2013-07-22" "2013-05-12" "2013-10-28"
##  [8896] "2013-07-22" "2013-11-03" "2013-11-05" "2013-07-22" "2013-07-22"
##  [8901] "2013-11-05" "2013-05-12" "2013-11-03" "2013-10-28" "2013-05-30"
##  [8906] "2013-05-30" "2013-07-22" "2013-05-30" "2013-05-12" "2012-09-29"
##  [8911] "2012-12-10" "2012-09-08" "2012-11-11" "2012-09-08" "2012-12-10"
##  [8916] "2012-12-10" "2013-11-01" "2012-11-11" "2012-11-11" "2012-09-08"
##  [8921] "2012-09-08" "2012-09-29" "2012-12-10" "2012-09-08" "2013-11-01"
##  [8926] "2012-09-29" "2013-11-01" "2013-11-01" "2012-09-29" "2012-09-29"
##  [8931] "2012-11-11" "2011-04-22" "2013-11-01" "2011-04-22" "2012-12-10"
##  [8936] "2012-11-11" "2013-01-23" "2013-01-23" "2013-01-23" "2013-01-23"
##  [8941] "2013-01-23" "2013-07-20" "2013-01-23" "2012-02-18" "2012-02-08"
##  [8946] "2012-02-18" "2013-07-22" "2013-07-22" "2012-02-08" "2012-02-08"
##  [8951] "2012-02-18" "2013-07-20" "2013-07-22" "2012-10-09" "2012-10-09"
##  [8956] "2011-11-04" "2012-10-09" "2011-11-04" "2012-10-09" "2013-06-06"
##  [8961] "2011-11-04" "2013-06-06" "2013-04-15" "2011-12-15" "2011-12-15"
##  [8966] "2013-04-15" "2011-12-15" "2014-02-20" "2012-11-02" "2013-08-01"
##  [8971] "2013-08-01" "2012-11-02" "2012-11-02" "2012-11-02" "2012-11-02"
##  [8976] "2014-02-20" "2014-02-20" "2013-12-21" "2013-03-29" "2013-03-29"
##  [8981] "2013-12-21" "2013-07-24" "2013-03-29" "2013-12-21" "2013-12-21"
##  [8986] "2013-03-29" "2013-07-31" "2013-07-31" "2013-03-29" "2013-07-24"
##  [8991] "2011-05-23" "2012-10-23" "2011-05-23" "2012-10-23" "2011-05-23"
##  [8996] "2011-05-23" "2011-05-23" "2011-05-23" "2012-10-23" "2011-02-09"
##  [9001] "2011-02-09" "2012-08-28" "2011-02-09" "2013-04-22" "2013-04-24"
##  [9006] "2013-04-22" "2012-08-28" "2012-08-28" "2013-04-24" "2012-10-28"
##  [9011] "2012-10-28" "2012-08-28" "2012-10-28" "2013-04-12" "2011-10-01"
##  [9016] "2013-04-12" "2014-01-15" "2013-10-02" "2014-01-15" "2013-04-12"
##  [9021] "2013-04-12" "2013-04-12" "2011-10-01" "2014-01-15" "2013-10-02"
##  [9026] "2011-07-14" "2011-08-30" "2011-08-30" "2013-09-22" "2013-09-22"
##  [9031] "2011-08-30" "2013-09-22" "2013-10-27" "2011-07-14" "2013-10-27"
##  [9036] "2013-10-27" "2013-09-22" "2013-09-22" "2011-07-14" "2013-10-27"
##  [9041] "2013-10-27" "2013-01-27" "2011-10-11" "2011-10-11" "2013-01-27"
##  [9046] "2013-01-27" "2011-10-11" "2013-01-27" "2013-01-27" "2012-05-14"
##  [9051] "2012-05-14" "2012-05-14" "2012-05-14" "2012-05-14" "2012-05-14"
##  [9056] "2013-08-28" "2011-02-13" "2013-08-28" "2011-02-13" "2011-09-22"
##  [9061] "2011-09-22" "2013-08-28" "2011-02-13" "2013-08-28" "2011-02-13"
##  [9066] "2013-08-28" "2011-09-22" "2012-07-06" "2013-08-27" "2013-08-27"
##  [9071] "2012-07-06" "2013-12-19" "2012-05-18" "2012-05-18" "2013-12-19"
##  [9076] "2012-05-12" "2012-05-12" "2013-01-26" "2013-10-01" "2014-01-23"
##  [9081] "2014-01-23" "2013-01-26" "2012-05-12" "2012-05-12" "2013-10-01"
##  [9086] "2012-03-24" "2012-03-24" "2013-07-10" "2013-07-10" "2013-10-18"
##  [9091] "2013-10-21" "2013-10-21" "2013-10-18" "2013-10-21" "2013-07-10"
##  [9096] "2013-10-18" "2013-10-21" "2013-10-18" "2013-09-12" "2011-08-09"
##  [9101] "2013-09-12" "2011-08-09" "2011-04-13" "2012-11-30" "2012-11-30"
##  [9106] "2012-11-30" "2013-03-09" "2011-04-13" "2013-03-09" "2013-05-31"
##  [9111] "2013-05-31" "2013-05-31" "2013-10-27" "2013-05-31" "2013-10-27"
##  [9116] "2013-10-27" "2012-03-19" "2013-10-27" "2013-10-27" "2013-05-31"
##  [9121] "2013-05-31" "2012-03-19" "2013-04-01" "2012-12-07" "2012-12-07"
##  [9126] "2013-04-01" "2012-12-07" "2012-09-19" "2012-09-19" "2012-09-19"
##  [9131] "2012-11-07" "2012-09-19" "2012-09-19" "2013-09-03" "2013-09-03"
##  [9136] "2012-11-07" "2013-09-03" "2013-09-03" "2013-09-03" "2013-04-26"
##  [9141] "2011-02-24" "2011-02-24" "2012-01-06" "2011-02-24" "2013-04-26"
##  [9146] "2011-02-24" "2011-02-24" "2011-02-24" "2012-01-06" "2013-12-01"
##  [9151] "2013-01-15" "2013-01-15" "2013-01-15" "2012-12-22" "2012-12-22"
##  [9156] "2013-12-01" "2011-04-14" "2012-06-15" "2013-12-25" "2011-04-14"
##  [9161] "2012-06-15" "2012-04-19" "2012-04-19" "2012-06-15" "2013-12-25"
##  [9166] "2013-12-25" "2013-12-25" "2012-06-15" "2011-12-16" "2012-06-10"
##  [9171] "2012-06-10" "2012-06-10" "2011-12-16" "2012-06-10" "2012-06-10"
##  [9176] "2012-07-17" "2012-11-27" "2012-07-17" "2012-11-27" "2011-08-25"
##  [9181] "2012-11-27" "2011-08-25" "2012-11-27" "2011-08-25" "2012-11-27"
##  [9186] "2012-07-17" "2011-08-25" "2011-08-25" "2011-09-25" "2011-09-25"
##  [9191] "2011-09-25" "2011-09-25" "2011-04-27" "2013-08-01" "2012-03-06"
##  [9196] "2013-08-01" "2013-08-01" "2011-04-27" "2011-04-27" "2011-09-25"
##  [9201] "2013-08-01" "2011-04-27" "2013-08-01" "2013-08-01" "2012-03-06"
##  [9206] "2012-03-06" "2012-12-20" "2012-12-20" "2012-12-20" "2012-12-16"
##  [9211] "2011-12-11" "2012-12-16" "2012-12-16" "2012-12-16" "2012-12-16"
##  [9216] "2011-12-11" "2011-12-11" "2011-12-11" "2011-12-11" "2013-05-07"
##  [9221] "2013-05-07" "2013-05-07" "2011-06-18" "2011-06-18" "2011-06-18"
##  [9226] "2011-12-05" "2011-12-05" "2011-12-05" "2013-02-02" "2013-02-02"
##  [9231] "2013-02-02" "2013-02-02" "2013-06-01" "2013-06-01" "2013-06-01"
##  [9236] "2011-08-25" "2013-06-01" "2013-05-24" "2013-06-01" "2013-05-24"
##  [9241] "2013-05-24" "2013-05-24" "2011-08-25" "2011-08-25" "2013-05-24"
##  [9246] "2011-08-25" "2012-09-19" "2012-09-19" "2011-12-02" "2013-09-28"
##  [9251] "2013-09-28" "2011-12-24" "2011-12-24" "2011-12-24" "2013-09-28"
##  [9256] "2011-12-24" "2011-12-02" "2012-07-09" "2012-07-09" "2013-11-02"
##  [9261] "2013-11-02" "2012-03-16" "2012-07-09" "2013-11-02" "2012-03-16"
##  [9266] "2012-03-16" "2012-03-16" "2012-03-16" "2013-11-05" "2013-11-05"
##  [9271] "2011-12-16" "2011-06-08" "2011-12-16" "2011-12-16" "2011-02-12"
##  [9276] "2011-02-22" "2011-12-16" "2011-12-16" "2011-06-08" "2011-02-12"
##  [9281] "2012-10-01" "2011-12-16" "2012-10-01" "2012-10-01" "2012-10-01"
##  [9286] "2011-02-22" "2014-02-03" "2014-02-03" "2011-02-22" "2011-02-12"
##  [9291] "2012-10-01" "2011-06-08" "2012-10-01" "2013-02-13" "2011-11-22"
##  [9296] "2011-11-22" "2012-06-23" "2011-11-22" "2011-11-30" "2011-11-22"
##  [9301] "2013-02-13" "2011-11-22" "2011-11-30" "2012-06-23" "2013-02-13"
##  [9306] "2012-06-23" "2012-06-23" "2011-11-30" "2011-11-30" "2011-11-30"
##  [9311] "2012-06-23" "2012-06-23" "2012-08-20" "2013-09-21" "2012-08-20"
##  [9316] "2012-08-20" "2013-09-21" "2012-08-20" "2012-08-20" "2012-05-30"
##  [9321] "2012-05-30" "2012-05-30" "2012-05-30" "2012-05-30" "2013-09-21"
##  [9326] "2012-02-27" "2013-01-13" "2013-01-13" "2012-02-27" "2013-01-13"
##  [9331] "2013-01-13" "2013-01-13" "2011-05-10" "2011-05-10" "2011-05-10"
##  [9336] "2011-05-10" "2011-05-10" "2011-12-02" "2011-12-02" "2011-12-02"
##  [9341] "2011-12-02" "2011-12-02" "2012-03-21" "2012-03-21" "2012-03-15"
##  [9346] "2012-03-15" "2012-03-21" "2012-03-15" "2012-03-21" "2012-03-21"
##  [9351] "2012-03-15" "2012-03-15" "2013-02-15" "2013-02-15" "2013-02-15"
##  [9356] "2013-08-28" "2012-05-29" "2012-05-29" "2013-08-28" "2012-05-29"
##  [9361] "2013-09-26" "2013-09-26" "2013-09-26" "2012-04-23" "2012-04-23"
##  [9366] "2012-05-23" "2012-05-23" "2011-02-05" "2011-04-28" "2012-05-23"
##  [9371] "2012-05-23" "2011-04-28" "2011-02-05" "2011-10-18" "2011-10-18"
##  [9376] "2011-10-18" "2011-10-18" "2011-10-18" "2012-05-23" "2011-10-18"
##  [9381] "2012-05-23" "2013-06-17" "2013-06-17" "2013-06-17" "2013-06-17"
##  [9386] "2013-06-17" "2013-06-17" "2012-03-07" "2012-12-11" "2011-06-14"
##  [9391] "2011-06-14" "2012-12-11" "2012-12-11" "2011-06-14" "2012-12-11"
##  [9396] "2011-06-14" "2012-03-07" "2011-06-14" "2013-10-27" "2012-12-11"
##  [9401] "2011-06-14" "2013-10-27" "2012-12-11" "2011-06-15" "2013-02-14"
##  [9406] "2013-02-14" "2011-06-15" "2012-09-02" "2012-03-14" "2012-09-02"
##  [9411] "2012-09-02" "2012-03-14" "2014-02-16" "2012-03-14" "2014-02-16"
##  [9416] "2012-03-14" "2014-02-16" "2012-09-02" "2012-09-02" "2012-03-14"
##  [9421] "2013-07-08" "2012-08-27" "2013-12-08" "2012-11-11" "2012-08-27"
##  [9426] "2012-08-19" "2012-08-27" "2013-07-08" "2012-11-11" "2012-08-19"
##  [9431] "2013-12-08" "2012-08-19" "2011-12-23" "2011-12-23" "2013-05-17"
##  [9436] "2011-10-23" "2013-05-17" "2013-05-17" "2013-08-06" "2013-05-17"
##  [9441] "2013-05-17" "2011-10-23" "2013-05-16" "2013-08-13" "2013-05-16"
##  [9446] "2013-08-06" "2013-05-16" "2013-08-13" "2013-05-16" "2013-05-16"
##  [9451] "2011-10-23" "2012-05-31" "2012-05-31" "2012-05-31" "2011-06-19"
##  [9456] "2011-08-16" "2012-05-31" "2012-05-31" "2011-06-19" "2011-08-17"
##  [9461] "2011-08-17" "2011-08-16" "2011-06-19" "2011-06-19" "2011-06-19"
##  [9466] "2013-08-25" "2013-08-25" "2013-08-25" "2013-01-19" "2013-01-19"
##  [9471] "2013-01-19" "2011-04-27" "2011-04-27" "2011-04-27" "2011-04-27"
##  [9476] "2011-12-09" "2011-12-09" "2011-04-27" "2011-12-09" "2011-04-22"
##  [9481] "2011-04-22" "2012-10-16" "2011-04-22" "2011-04-22" "2011-04-22"
##  [9486] "2012-10-25" "2012-10-16" "2012-08-15" "2012-08-15" "2012-10-25"
##  [9491] "2012-08-15" "2011-04-22" "2012-10-25" "2012-10-16" "2012-03-18"
##  [9496] "2012-03-18" "2012-03-18" "2012-03-18" "2012-03-18" "2013-01-31"
##  [9501] "2013-02-16" "2013-01-31" "2013-02-16" "2013-02-16" "2013-01-31"
##  [9506] "2013-01-31" "2013-01-31" "2011-08-10" "2011-08-01" "2012-03-07"
##  [9511] "2012-03-07" "2011-08-01" "2012-03-07" "2012-03-07" "2011-08-10"
##  [9516] "2012-03-07" "2014-02-05" "2014-02-09" "2013-08-31" "2014-02-05"
##  [9521] "2014-02-07" "2014-02-09" "2014-02-09" "2014-02-05" "2014-02-05"
##  [9526] "2013-08-31" "2014-02-09" "2011-03-28" "2014-02-09" "2014-02-07"
##  [9531] "2014-02-07" "2011-03-28" "2014-02-05" "2014-02-07" "2014-02-07"
##  [9536] "2011-03-28" "2011-03-28" "2011-03-28" "2012-03-23" "2012-03-23"
##  [9541] "2012-03-23" "2012-03-23" "2012-03-23" "2011-04-22" "2011-04-22"
##  [9546] "2012-11-12" "2013-10-13" "2013-10-13" "2011-04-22" "2011-12-01"
##  [9551] "2013-10-13" "2011-12-01" "2011-04-15" "2011-04-15" "2012-11-12"
##  [9556] "2011-04-15" "2011-04-22" "2011-12-01" "2011-04-15" "2013-06-27"
##  [9561] "2012-07-20" "2013-06-27" "2013-06-07" "2012-07-20" "2013-06-07"
##  [9566] "2013-06-07" "2012-07-20" "2013-06-07" "2013-06-07" "2012-08-02"
##  [9571] "2012-04-21" "2012-08-02" "2012-04-21" "2012-06-14" "2012-04-21"
##  [9576] "2012-06-14" "2012-04-21" "2012-04-21" "2012-06-14" "2012-10-29"
##  [9581] "2011-08-09" "2012-10-29" "2011-08-09" "2012-10-29" "2012-10-29"
##  [9586] "2011-07-30" "2011-07-30" "2012-10-29" "2012-02-01" "2013-08-21"
##  [9591] "2012-02-01" "2012-02-01" "2013-10-15" "2013-08-15" "2012-02-01"
##  [9596] "2013-08-21" "2013-10-15" "2013-08-15" "2012-02-01" "2013-03-23"
##  [9601] "2011-03-24" "2011-06-19" "2013-03-23" "2013-03-23" "2011-03-24"
##  [9606] "2011-03-24" "2011-03-24" "2013-03-23" "2013-03-23" "2011-06-19"
##  [9611] "2011-03-24" "2011-06-19" "2013-05-24" "2013-04-07" "2013-04-07"
##  [9616] "2013-05-24" "2013-04-07" "2013-08-16" "2013-08-16" "2012-10-10"
##  [9621] "2013-07-17" "2013-03-27" "2012-10-10" "2013-03-27" "2013-07-17"
##  [9626] "2013-03-27" "2011-03-21" "2011-03-21" "2011-03-21" "2012-10-10"
##  [9631] "2013-07-17" "2013-03-11" "2013-03-11" "2012-11-26" "2012-02-15"
##  [9636] "2012-02-15" "2013-08-27" "2012-02-15" "2012-02-15" "2012-11-26"
##  [9641] "2012-11-26" "2013-08-27" "2014-01-02" "2013-08-27" "2012-02-15"
##  [9646] "2014-01-02" "2012-05-06" "2012-10-12" "2012-10-12" "2012-05-06"
##  [9651] "2013-10-27" "2013-10-27" "2011-05-02" "2013-05-31" "2013-05-31"
##  [9656] "2012-02-11" "2013-05-31" "2011-05-02" "2013-06-15" "2011-05-08"
##  [9661] "2011-05-02" "2013-06-15" "2012-02-11" "2013-06-15" "2013-06-15"
##  [9666] "2012-02-11" "2011-05-08" "2011-05-08" "2012-02-11" "2012-02-11"
##  [9671] "2013-03-09" "2013-03-09" "2013-03-09" "2013-03-09" "2013-03-09"
##  [9676] "2012-01-31" "2012-01-31" "2013-06-11" "2011-02-26" "2013-06-11"
##  [9681] "2011-02-26" "2011-02-26" "2011-02-26" "2011-02-26" "2011-02-26"
##  [9686] "2012-01-17" "2012-10-13" "2012-01-17" "2012-01-17" "2012-01-17"
##  [9691] "2012-10-13" "2012-10-13" "2012-10-13" "2012-01-17" "2014-02-02"
##  [9696] "2011-08-28" "2014-02-02" "2014-02-02" "2011-08-28" "2014-02-02"
##  [9701] "2014-02-02" "2011-08-28" "2011-11-01" "2012-05-15" "2011-11-01"
##  [9706] "2011-11-01" "2012-05-15" "2011-11-01" "2013-04-21" "2013-04-21"
##  [9711] "2012-09-05" "2013-02-01" "2013-02-01" "2012-09-05" "2013-04-21"
##  [9716] "2013-04-21" "2013-02-01" "2012-09-05" "2013-02-01" "2013-02-01"
##  [9721] "2012-06-26" "2011-08-16" "2011-08-09" "2012-06-26" "2011-08-09"
##  [9726] "2011-08-16" "2011-08-09" "2011-08-09" "2011-08-09" "2012-12-02"
##  [9731] "2012-06-26" "2013-07-28" "2013-07-28" "2013-07-28" "2012-12-02"
##  [9736] "2012-06-26" "2012-06-26" "2011-08-16" "2011-08-16" "2011-08-16"
##  [9741] "2013-08-01" "2013-08-01" "2013-08-01" "2012-12-05" "2012-12-05"
##  [9746] "2012-12-05" "2012-12-05" "2012-12-05" "2012-12-05" "2011-08-27"
##  [9751] "2013-04-18" "2013-04-18" "2013-04-18" "2011-08-27" "2013-04-18"
##  [9756] "2011-08-27" "2011-08-27" "2011-08-27" "2011-08-27" "2013-04-18"
##  [9761] "2011-07-23" "2013-11-02" "2011-07-18" "2011-07-23" "2013-11-02"
##  [9766] "2011-07-18" "2011-01-30" "2011-08-22" "2011-08-22" "2011-08-22"
##  [9771] "2011-01-30" "2012-05-23" "2011-01-30" "2012-05-23" "2012-05-23"
##  [9776] "2011-11-19" "2011-08-22" "2012-05-23" "2012-05-23" "2011-11-19"
##  [9781] "2011-08-22" "2011-08-22" "2011-01-30" "2011-01-30" "2012-05-28"
##  [9786] "2013-05-24" "2013-05-24" "2012-05-28" "2012-05-28" "2013-05-24"
##  [9791] "2012-05-28" "2012-05-28" "2013-05-24" "2012-05-28" "2013-05-24"
##  [9796] "2012-09-24" "2012-09-16" "2012-02-02" "2012-02-02" "2012-09-16"
##  [9801] "2012-09-24" "2013-09-17" "2013-09-17" "2012-09-17" "2013-09-17"
##  [9806] "2011-03-22" "2011-03-22" "2012-09-19" "2011-02-20" "2013-09-17"
##  [9811] "2012-09-19" "2012-09-17" "2013-09-17" "2012-09-17" "2011-02-20"
##  [9816] "2012-09-19" "2013-09-17" "2012-09-19" "2011-03-22" "2011-03-22"
##  [9821] "2011-12-31" "2012-01-04" "2011-12-31" "2011-04-06" "2012-01-04"
##  [9826] "2011-12-31" "2011-04-06" "2012-01-04" "2012-11-16" "2012-11-07"
##  [9831] "2013-07-28" "2012-11-07" "2012-11-16" "2012-01-12" "2013-07-28"
##  [9836] "2012-01-12" "2012-01-12" "2012-11-16" "2011-10-01" "2012-01-12"
##  [9841] "2012-11-07" "2012-11-07" "2012-01-12" "2011-10-01" "2012-11-16"
##  [9846] "2013-06-04" "2012-12-22" "2012-12-31" "2012-12-22" "2012-12-31"
##  [9851] "2013-06-04" "2012-12-22" "2012-12-31" "2012-12-31" "2012-12-22"
##  [9856] "2012-12-22" "2013-06-04" "2012-12-31" "2013-06-04" "2013-09-05"
##  [9861] "2012-11-05" "2012-11-05" "2012-11-05" "2013-09-05" "2013-09-05"
##  [9866] "2013-09-05" "2012-08-28" "2013-09-05" "2012-08-28" "2013-09-05"
##  [9871] "2012-05-08" "2012-05-08" "2012-05-08" "2011-04-30" "2012-05-08"
##  [9876] "2012-05-08" "2012-05-08" "2011-04-30" "2011-04-30" "2013-12-02"
##  [9881] "2013-12-02" "2013-12-02" "2012-03-14" "2012-03-14" "2013-12-02"
##  [9886] "2013-12-02" "2012-03-14" "2013-12-02" "2012-04-22" "2012-04-22"
##  [9891] "2012-06-22" "2012-06-22" "2012-04-22" "2012-04-20" "2012-04-22"
##  [9896] "2013-05-25" "2012-06-22" "2012-04-20" "2012-04-20" "2013-07-26"
##  [9901] "2013-02-28" "2012-04-20" "2012-04-22" "2012-04-22" "2013-07-26"
##  [9906] "2013-05-25" "2013-05-25" "2012-04-22" "2013-02-28" "2012-04-20"
##  [9911] "2013-07-26" "2012-04-22" "2012-04-22" "2012-04-22" "2013-02-28"
##  [9916] "2012-06-22" "2013-05-25" "2013-05-25" "2012-06-22" "2013-07-26"
##  [9921] "2013-07-26" "2011-10-24" "2011-10-24" "2011-10-24" "2011-08-22"
##  [9926] "2011-08-22" "2013-11-17" "2011-08-22" "2011-10-24" "2013-06-04"
##  [9931] "2013-06-04" "2013-11-17" "2011-08-22" "2013-06-04" "2013-11-17"
##  [9936] "2013-11-17" "2011-08-22" "2013-11-17" "2013-11-17" "2012-02-05"
##  [9941] "2012-02-04" "2012-02-05" "2012-02-05" "2012-02-04" "2012-02-04"
##  [9946] "2011-08-05" "2011-08-09" "2011-08-05" "2011-08-09" "2011-08-05"
##  [9951] "2011-08-09" "2011-08-24" "2012-03-11" "2011-04-19" "2011-04-19"
##  [9956] "2011-08-24" "2013-05-08" "2013-09-15" "2013-05-08" "2011-08-24"
##  [9961] "2013-09-15" "2012-03-11" "2012-03-11" "2012-03-11" "2011-08-24"
##  [9966] "2013-05-08" "2011-08-24" "2012-03-11" "2013-09-15" "2012-01-06"
##  [9971] "2011-06-22" "2011-09-23" "2012-01-06" "2011-09-23" "2011-06-22"
##  [9976] "2011-09-23" "2011-09-23" "2012-01-14" "2012-01-14" "2011-09-23"
##  [9981] "2014-02-07" "2012-01-06" "2012-01-14" "2014-02-07" "2012-01-06"
##  [9986] "2012-01-14" "2012-01-06" "2012-01-14" "2012-01-06" "2014-02-07"
##  [9991] "2012-01-14" "2012-04-04" "2012-11-12" "2012-04-04" "2012-04-04"
##  [9996] "2013-12-15" "2012-04-04" "2012-04-04" "2012-11-12" "2012-11-12"
## [10001] "2012-04-04" "2013-12-15" "2013-12-15" "2013-04-02" "2013-04-02"
## [10006] "2012-07-15" "2013-03-26" "2012-07-15" "2013-03-26" "2012-07-15"
## [10011] "2011-08-09" "2011-08-09" "2012-02-02" "2012-08-25" "2012-02-02"
## [10016] "2012-02-02" "2012-02-02" "2012-08-25" "2012-09-02" "2012-02-02"
## [10021] "2012-09-02" "2012-11-15" "2012-11-15" "2012-11-15" "2011-03-04"
## [10026] "2011-08-23" "2011-03-04" "2011-03-04" "2011-08-18" "2011-08-23"
## [10031] "2011-03-04" "2011-08-18" "2011-03-04" "2011-08-18" "2011-08-23"
## [10036] "2011-08-18" "2011-08-23" "2011-08-18" "2011-08-18" "2011-08-23"
## [10041] "2012-11-15" "2011-08-23" "2013-03-20" "2013-03-20" "2013-03-20"
## [10046] "2013-03-20" "2013-03-20" "2014-01-27" "2013-12-02" "2014-01-27"
## [10051] "2014-01-27" "2013-11-29" "2013-12-02" "2012-02-09" "2012-02-09"
## [10056] "2013-11-29" "2012-02-09" "2013-08-08" "2013-08-08" "2013-08-08"
## [10061] "2011-08-05" "2013-08-08" "2013-08-08" "2011-07-30" "2011-07-30"
## [10066] "2011-07-30" "2011-08-05" "2013-04-27" "2013-04-27" "2012-07-11"
## [10071] "2011-08-28" "2013-08-27" "2011-08-28" "2013-08-27" "2012-07-11"
## [10076] "2013-08-27" "2011-08-28" "2011-08-28" "2011-08-28" "2011-08-28"
## [10081] "2011-03-01" "2013-08-08" "2013-08-08" "2011-03-01" "2011-03-01"
## [10086] "2011-02-21" "2013-08-08" "2011-02-21" "2011-02-21" "2012-08-11"
## [10091] "2012-08-21" "2011-01-30" "2011-01-30" "2013-05-07" "2012-08-11"
## [10096] "2013-05-07" "2012-08-21" "2012-08-11" "2012-08-21" "2011-08-30"
## [10101] "2011-08-30" "2012-10-11" "2012-10-11" "2012-10-11" "2011-08-30"
## [10106] "2013-01-29" "2011-12-09" "2013-01-29" "2013-01-29" "2011-12-09"
## [10111] "2011-12-09" "2013-10-20" "2011-05-01" "2011-05-01" "2013-01-04"
## [10116] "2013-01-04" "2013-10-20" "2013-10-18" "2011-05-01" "2013-10-20"
## [10121] "2013-10-20" "2013-10-18" "2013-10-20" "2013-10-18" "2011-05-01"
## [10126] "2011-05-01" "2013-10-18" "2013-01-04" "2013-10-18" "2013-01-04"
## [10131] "2011-05-06" "2011-05-06" "2011-05-06" "2011-05-06" "2011-05-06"
## [10136] "2013-06-09" "2011-02-10" "2013-06-11" "2012-02-05" "2013-06-11"
## [10141] "2012-02-05" "2013-06-09" "2011-02-10" "2013-06-09" "2012-02-05"
## [10146] "2013-06-09" "2012-02-05" "2011-05-06" "2013-06-09" "2012-02-05"
## [10151] "2013-06-11" "2013-06-11" "2013-06-11" "2013-03-09" "2013-03-09"
## [10156] "2013-10-14" "2013-10-14" "2013-10-14" "2012-01-30" "2012-08-19"
## [10161] "2012-08-19" "2013-09-22" "2013-10-14" "2013-09-22" "2012-01-30"
## [10166] "2012-01-30" "2012-12-08" "2012-12-08" "2013-03-27" "2013-07-20"
## [10171] "2013-04-06" "2011-06-25" "2013-10-24" "2013-07-20" "2013-04-06"
## [10176] "2013-10-24" "2012-10-29" "2013-03-27" "2012-10-29" "2013-07-20"
## [10181] "2013-10-24" "2011-06-25" "2011-06-25" "2011-06-25" "2012-10-29"
## [10186] "2013-12-04" "2013-12-04" "2011-11-25" "2011-11-25" "2011-11-25"
## [10191] "2012-03-24" "2012-03-24" "2012-03-24" "2013-08-18" "2013-08-18"
## [10196] "2013-08-18" "2013-08-18" "2013-08-18" "2013-08-18" "2011-06-20"
## [10201] "2011-06-20" "2013-09-01" "2013-09-01" "2011-06-25" "2013-12-30"
## [10206] "2013-09-01" "2011-06-20" "2011-06-25" "2013-12-30" "2011-06-25"
## [10211] "2011-12-09" "2011-12-05" "2011-12-09" "2011-12-09" "2011-12-05"
## [10216] "2011-12-09" "2011-12-05" "2011-12-09" "2011-12-05" "2011-12-05"
## [10221] "2011-12-05" "2011-12-05" "2011-12-05" "2013-09-02" "2013-09-02"
## [10226] "2013-09-02" "2012-05-04" "2012-05-04" "2012-05-04" "2012-05-04"
## [10231] "2012-05-04" "2011-06-19" "2011-08-08" "2011-08-08" "2011-08-08"
## [10236] "2011-08-08" "2011-06-19" "2011-06-19" "2011-06-19" "2011-08-08"
## [10241] "2013-11-22" "2013-11-22" "2013-11-22" "2013-11-22" "2012-12-14"
## [10246] "2013-11-22" "2011-05-31" "2012-12-14" "2011-05-31" "2011-05-31"
## [10251] "2011-05-31" "2011-03-15" "2011-03-09" "2011-03-09" "2011-03-09"
## [10256] "2011-03-15" "2011-03-09" "2011-03-09" "2012-06-15" "2011-03-15"
## [10261] "2011-03-09" "2012-06-15" "2011-03-15" "2011-02-02" "2011-03-15"
## [10266] "2011-03-15" "2011-02-02" "2013-08-28" "2013-06-13" "2013-06-13"
## [10271] "2013-08-28" "2012-02-07" "2012-02-07" "2012-02-07" "2013-08-28"
## [10276] "2012-02-07" "2012-02-07" "2011-05-05" "2011-05-05" "2011-05-05"
## [10281] "2011-05-05" "2011-05-05" "2011-05-05" "2011-12-05" "2013-02-20"
## [10286] "2013-02-23" "2013-02-20" "2011-12-02" "2013-02-20" "2011-07-04"
## [10291] "2011-07-04" "2013-02-23" "2013-02-20" "2011-12-05" "2011-12-05"
## [10296] "2013-02-23" "2011-12-02" "2011-12-02" "2013-02-23" "2013-02-23"
## [10301] "2013-02-20" "2011-08-19" "2011-08-19" "2011-08-19" "2011-10-02"
## [10306] "2011-10-02" "2011-10-02" "2011-10-02" "2011-10-02" "2012-05-23"
## [10311] "2012-05-23" "2012-05-23" "2012-05-23" "2012-05-23" "2011-08-12"
## [10316] "2013-09-25" "2011-02-11" "2011-08-12" "2011-02-11" "2011-02-11"
## [10321] "2011-02-11" "2011-08-12" "2013-09-25" "2011-08-12" "2011-02-11"
## [10326] "2011-02-25" "2013-09-24" "2011-02-25" "2013-09-24" "2013-09-24"
## [10331] "2013-09-24" "2013-09-24" "2013-09-24" "2012-07-28" "2011-02-07"
## [10336] "2011-02-07" "2013-06-19" "2012-07-28" "2013-06-19" "2013-06-19"
## [10341] "2013-06-19" "2013-06-19" "2011-02-07" "2011-11-17" "2011-11-17"
## [10346] "2011-11-17" "2012-12-12" "2012-12-12" "2014-01-19" "2012-10-16"
## [10351] "2014-01-19" "2014-01-19" "2013-10-08" "2014-01-19" "2012-10-16"
## [10356] "2013-10-08" "2012-10-16" "2014-01-10" "2014-01-19" "2012-10-16"
## [10361] "2014-01-10" "2014-01-10" "2013-10-08" "2013-10-08" "2013-10-08"
## [10366] "2012-10-16" "2014-01-10" "2013-10-08" "2014-01-10" "2011-02-02"
## [10371] "2011-02-07" "2012-03-15" "2013-02-24" "2012-03-15" "2012-03-15"
## [10376] "2011-02-07" "2012-03-15" "2013-11-30" "2011-02-02" "2011-02-02"
## [10381] "2013-02-24" "2011-02-07" "2013-11-30" "2013-02-24" "2011-02-02"
## [10386] "2013-11-30" "2013-11-30" "2011-02-07" "2012-03-15" "2012-03-28"
## [10391] "2012-03-28" "2014-01-19" "2012-08-13" "2012-07-06" "2012-08-13"
## [10396] "2012-07-06" "2014-01-19" "2012-08-13" "2012-07-06" "2013-06-01"
## [10401] "2014-01-19" "2012-08-13" "2012-08-13" "2013-06-01" "2013-06-01"
## [10406] "2011-11-20" "2012-02-15" "2011-11-20" "2011-11-20" "2012-02-15"
## [10411] "2013-05-19" "2013-05-19" "2013-05-19" "2013-05-19" "2013-05-19"
## [10416] "2011-08-29" "2011-08-29" "2012-09-23" "2012-02-20" "2011-08-29"
## [10421] "2012-02-20" "2012-09-23" "2012-02-20" "2013-10-10" "2013-10-10"
## [10426] "2011-04-13" "2011-04-13" "2011-04-13" "2014-02-19" "2012-12-13"
## [10431] "2012-12-13" "2014-02-19" "2014-02-19" "2014-02-19" "2014-02-19"
## [10436] "2013-03-17" "2013-03-17" "2012-12-13" "2013-02-01" "2013-02-01"
## [10441] "2013-12-09" "2013-12-09" "2013-05-10" "2013-05-10" "2012-06-05"
## [10446] "2013-05-10" "2013-05-10" "2013-05-10" "2012-06-05" "2013-12-09"
## [10451] "2013-12-09" "2012-06-27" "2012-06-30" "2012-06-30" "2012-06-30"
## [10456] "2012-06-27" "2012-06-30" "2012-06-30" "2013-06-28" "2013-06-28"
## [10461] "2013-06-28" "2011-03-09" "2011-03-09" "2013-06-28" "2013-06-28"
## [10466] "2011-03-09" "2011-08-16" "2011-08-16" "2012-10-29" "2011-05-04"
## [10471] "2011-08-16" "2011-08-16" "2011-05-04" "2012-10-29" "2011-07-12"
## [10476] "2011-06-27" "2011-07-12" "2011-06-19" "2013-02-23" "2011-06-19"
## [10481] "2011-06-27" "2011-06-27" "2013-02-23" "2013-02-23" "2011-06-19"
## [10486] "2011-06-19" "2011-06-19" "2011-06-27" "2011-06-27" "2011-02-16"
## [10491] "2011-02-16" "2012-12-08" "2012-12-08" "2012-04-08" "2012-04-16"
## [10496] "2012-04-08" "2012-04-16" "2012-04-08" "2012-04-08" "2012-04-08"
## [10501] "2012-04-19" "2012-04-08" "2012-04-19" "2013-02-08" "2013-02-08"
## [10506] "2013-02-08" "2013-02-08" "2013-02-08" "2011-11-21" "2011-11-21"
## [10511] "2011-07-28" "2014-02-20" "2011-07-28" "2014-02-20" "2014-02-20"
## [10516] "2014-02-20" "2011-07-28" "2014-02-20" "2011-08-13" "2013-04-23"
## [10521] "2013-12-28" "2011-08-13" "2013-04-23" "2012-06-24" "2011-08-13"
## [10526] "2013-01-28" "2013-12-18" "2013-12-18" "2013-04-23" "2012-06-24"
## [10531] "2013-12-28" "2013-01-28" "2013-12-18" "2013-12-18" "2013-12-28"
## [10536] "2012-06-24" "2012-06-24" "2013-12-28" "2013-01-28" "2012-06-24"
## [10541] "2013-12-18" "2013-12-28" "2011-02-20" "2011-02-20" "2011-02-20"
## [10546] "2011-02-20" "2011-02-20" "2011-07-02" "2011-07-02" "2011-07-02"
## [10551] "2013-03-11" "2013-04-22" "2013-04-22" "2012-11-11" "2013-04-18"
## [10556] "2013-03-11" "2012-11-11" "2013-03-18" "2013-04-22" "2013-03-18"
## [10561] "2012-11-11" "2011-03-28" "2013-03-18" "2013-04-18" "2011-03-28"
## [10566] "2013-04-22" "2011-03-28" "2013-04-22" "2013-04-18" "2011-03-28"
## [10571] "2011-03-28" "2011-07-10" "2011-07-04" "2011-07-10" "2011-07-10"
## [10576] "2011-07-04" "2011-07-04" "2011-07-04" "2011-07-04" "2011-07-10"
## [10581] "2011-07-10" "2013-02-05" "2013-02-05" "2013-02-05" "2012-01-07"
## [10586] "2012-01-07" "2012-01-07" "2012-01-07" "2012-01-07" "2011-03-27"
## [10591] "2011-03-27" "2011-03-27" "2011-06-24" "2013-02-06" "2013-02-06"
## [10596] "2011-06-24" "2013-02-06" "2013-02-03" "2013-02-03" "2011-06-24"
## [10601] "2013-02-03" "2011-09-26" "2011-09-26" "2014-01-30" "2014-01-30"
## [10606] "2014-01-30" "2014-01-30" "2013-09-29" "2013-09-29" "2014-01-30"
## [10611] "2011-11-25" "2013-09-11" "2011-11-25" "2012-02-28" "2013-09-11"
## [10616] "2013-09-11" "2012-02-28" "2012-02-28" "2012-02-28" "2013-09-11"
## [10621] "2013-09-11" "2012-02-28" "2011-03-17" "2011-10-23" "2012-12-13"
## [10626] "2011-09-22" "2011-03-17" "2011-10-23" "2012-12-14" "2011-10-23"
## [10631] "2011-03-17" "2012-12-14" "2011-09-22" "2012-12-13" "2011-02-15"
## [10636] "2011-02-15" "2011-02-15" "2013-07-06" "2011-02-15" "2011-02-15"
## [10641] "2013-07-06" "2013-06-06" "2013-06-06" "2013-06-06" "2012-10-02"
## [10646] "2012-10-02" "2012-10-02" "2012-10-23" "2012-10-23" "2012-11-13"
## [10651] "2012-11-13" "2012-10-23" "2012-10-23" "2012-11-13" "2012-11-13"
## [10656] "2012-10-23" "2011-07-14" "2011-02-01" "2011-02-10" "2011-02-10"
## [10661] "2011-07-14" "2011-04-30" "2012-08-10" "2011-07-14" "2011-05-05"
## [10666] "2012-08-10" "2011-07-14" "2011-05-05" "2011-07-14" "2011-04-30"
## [10671] "2011-02-01" "2013-12-02" "2013-12-02" "2013-12-02" "2012-06-28"
## [10676] "2013-12-02" "2013-12-02" "2012-06-28" "2013-05-18" "2011-08-28"
## [10681] "2013-01-10" "2013-01-10" "2013-05-18" "2011-08-28" "2011-10-18"
## [10686] "2011-10-25" "2012-01-25" "2013-05-07" "2012-01-25" "2013-05-07"
## [10691] "2011-01-31" "2011-10-25" "2012-01-25" "2013-05-07" "2011-10-18"
## [10696] "2011-01-31" "2011-01-31" "2013-05-07" "2013-05-07" "2013-07-28"
## [10701] "2013-07-28" "2013-07-26" "2013-07-28" "2012-04-01" "2013-07-28"
## [10706] "2012-04-01" "2013-07-28" "2013-07-28" "2013-07-26" "2013-07-26"
## [10711] "2012-04-01" "2013-07-26" "2013-07-26" "2013-07-26" "2012-04-01"
## [10716] "2012-04-01" "2014-01-29" "2014-01-28" "2012-04-03" "2014-01-29"
## [10721] "2013-10-11" "2013-10-11" "2013-10-11" "2014-01-29" "2012-04-03"
## [10726] "2012-04-03" "2014-01-28" "2014-01-28" "2011-08-06" "2011-08-06"
## [10731] "2013-09-13" "2011-04-10" "2011-04-10" "2011-04-10" "2013-09-13"
## [10736] "2013-09-13" "2013-09-13" "2013-09-13" "2013-09-13" "2013-07-28"
## [10741] "2012-05-27" "2013-07-28" "2012-05-27" "2012-05-27" "2012-05-27"
## [10746] "2012-05-27" "2013-07-28" "2012-05-27" "2013-03-05" "2013-03-05"
## [10751] "2012-07-03" "2012-07-03" "2013-03-05" "2013-03-05" "2012-07-03"
## [10756] "2012-07-03" "2013-03-05" "2012-08-30" "2013-11-19" "2012-08-30"
## [10761] "2012-08-30" "2013-11-19" "2013-11-19" "2013-11-19" "2012-08-30"
## [10766] "2012-08-30" "2013-11-19" "2011-07-17" "2012-04-06" "2012-04-06"
## [10771] "2012-04-06" "2011-07-17" "2013-05-13" "2011-02-18" "2013-05-13"
## [10776] "2011-07-17" "2011-02-10" "2012-04-06" "2012-04-06" "2013-05-13"
## [10781] "2013-05-13" "2011-02-18" "2013-05-13" "2013-05-13" "2011-02-10"
## [10786] "2013-01-18" "2013-01-18" "2013-06-04" "2012-07-15" "2012-07-19"
## [10791] "2012-07-19" "2012-07-15" "2013-06-04" "2012-07-19" "2011-08-31"
## [10796] "2012-07-19" "2011-08-31" "2012-07-15" "2013-06-04" "2012-05-04"
## [10801] "2013-04-20" "2012-05-04" "2012-05-04" "2012-05-04" "2012-05-04"
## [10806] "2013-04-20" "2013-04-20" "2013-04-20" "2012-03-19" "2012-03-19"
## [10811] "2012-03-19" "2012-03-19" "2012-03-19" "2013-09-24" "2013-09-24"
## [10816] "2013-09-25" "2013-09-25" "2012-09-01" "2012-09-01" "2013-09-24"
## [10821] "2012-09-01" "2012-09-01" "2012-09-01" "2013-09-25" "2012-09-01"
## [10826] "2013-09-25" "2013-09-24" "2013-09-25" "2013-09-24" "2012-03-29"
## [10831] "2013-05-15" "2013-05-15" "2013-05-15" "2012-03-29" "2012-03-29"
## [10836] "2012-09-03" "2012-09-03" "2012-09-03" "2011-07-15" "2011-07-15"
## [10841] "2011-07-19" "2011-07-19" "2011-07-15" "2013-12-12" "2011-08-10"
## [10846] "2011-07-15" "2011-07-19" "2013-12-12" "2011-07-19" "2011-07-19"
## [10851] "2011-08-10" "2011-08-10" "2011-11-12" "2013-12-12" "2013-12-12"
## [10856] "2011-07-15" "2011-07-15" "2011-07-19" "2011-11-12" "2011-11-12"
## [10861] "2011-11-12" "2011-11-12" "2013-12-12" "2013-08-20" "2013-09-25"
## [10866] "2013-08-20" "2013-09-25" "2013-09-25" "2013-09-25" "2013-08-20"
## [10871] "2012-11-23" "2012-07-21" "2012-11-23" "2012-07-21" "2012-07-21"
## [10876] "2011-09-22" "2012-07-17" "2011-09-22" "2012-07-17" "2012-09-04"
## [10881] "2011-09-22" "2012-09-04" "2012-07-17" "2011-09-22" "2011-03-08"
## [10886] "2012-07-17" "2012-09-04" "2012-07-17" "2011-03-08" "2011-09-22"
## [10891] "2012-09-04" "2012-07-17" "2012-09-04" "2014-02-02" "2012-09-01"
## [10896] "2012-09-01" "2012-09-01" "2014-02-02" "2012-09-01" "2014-02-02"
## [10901] "2012-09-01" "2012-12-06" "2012-12-06" "2012-12-06" "2012-12-06"
## [10906] "2012-12-06" "2011-05-02" "2011-05-02" "2011-05-30" "2011-05-30"
## [10911] "2011-05-02" "2011-05-30" "2011-05-02" "2012-12-13" "2012-12-13"
## [10916] "2013-05-05" "2013-05-05" "2013-05-05" "2013-05-05" "2011-10-23"
## [10921] "2011-10-23" "2011-10-23" "2012-07-07" "2012-07-07" "2012-07-07"
## [10926] "2012-07-07" "2011-09-06" "2011-09-06" "2012-07-07" "2012-04-23"
## [10931] "2012-04-23" "2014-02-10" "2014-02-10" "2014-02-10" "2011-11-24"
## [10936] "2014-02-10" "2011-11-24" "2014-02-10" "2013-02-15" "2014-01-26"
## [10941] "2014-02-01" "2011-02-07" "2014-01-26" "2014-01-26" "2014-02-01"
## [10946] "2014-02-01" "2013-02-15" "2013-02-15" "2011-02-07" "2011-02-07"
## [10951] "2012-08-27" "2013-01-29" "2012-08-27" "2013-01-29" "2013-01-29"
## [10956] "2012-08-27" "2013-08-07" "2013-08-07" "2012-03-12" "2011-08-28"
## [10961] "2012-03-12" "2012-03-12" "2011-08-28" "2013-06-02" "2013-01-16"
## [10966] "2012-03-02" "2013-06-02" "2013-01-16" "2013-01-16" "2012-03-02"
## [10971] "2013-06-02" "2013-06-02" "2013-06-02" "2013-01-16" "2013-06-02"
## [10976] "2012-03-02" "2012-05-04" "2012-05-04" "2012-05-04" "2014-02-14"
## [10981] "2014-02-14" "2013-09-15" "2012-07-12" "2013-09-15" "2012-07-12"
## [10986] "2012-07-12" "2012-07-12" "2013-09-15" "2013-04-07" "2013-04-07"
## [10991] "2012-07-06" "2012-10-10" "2012-07-06" "2012-07-06" "2012-07-06"
## [10996] "2012-07-12" "2012-07-06" "2012-07-12" "2012-10-10" "2012-07-06"
## [11001] "2013-08-23" "2011-12-27" "2013-08-23" "2011-12-27" "2013-08-23"
## [11006] "2013-08-23" "2013-08-23" "2012-02-24" "2011-03-06" "2011-03-06"
## [11011] "2012-02-24" "2012-08-30" "2013-04-02" "2012-08-23" "2013-04-02"
## [11016] "2012-02-24" "2012-08-30" "2012-08-30" "2012-08-23" "2013-03-29"
## [11021] "2012-02-24" "2012-02-24" "2012-08-23" "2013-03-29" "2013-03-29"
## [11026] "2013-04-02" "2013-12-02" "2014-01-01" "2014-01-01" "2014-01-01"
## [11031] "2013-06-28" "2013-06-28" "2013-12-02" "2013-12-02" "2013-06-28"
## [11036] "2014-01-01" "2014-01-01" "2014-02-15" "2014-02-15" "2014-02-15"
## [11041] "2012-06-13" "2013-07-18" "2012-06-13" "2011-09-18" "2011-04-10"
## [11046] "2011-04-10" "2012-06-13" "2011-09-18" "2013-07-18" "2011-04-10"
## [11051] "2011-09-18" "2012-04-20" "2011-10-26" "2012-04-20" "2011-10-26"
## [11056] "2011-10-26" "2012-04-20" "2012-04-20" "2012-05-27" "2012-05-27"
## [11061] "2012-05-27" "2012-05-27" "2011-12-06" "2011-12-06" "2011-12-06"
## [11066] "2012-03-14" "2013-11-16" "2011-04-02" "2013-11-16" "2012-07-13"
## [11071] "2012-03-14" "2012-08-15" "2012-03-14" "2012-07-13" "2013-11-16"
## [11076] "2011-04-02" "2012-07-13" "2012-02-19" "2012-02-19" "2012-03-14"
## [11081] "2012-08-15" "2013-11-16" "2012-07-19" "2011-04-02" "2011-04-02"
## [11086] "2012-07-19" "2012-02-19" "2012-07-19" "2011-06-06" "2011-06-06"
## [11091] "2013-03-21" "2013-03-21" "2013-06-15" "2013-06-15" "2013-05-01"
## [11096] "2013-05-01" "2013-06-15" "2013-06-15" "2013-06-15" "2012-08-23"
## [11101] "2012-08-14" "2013-04-30" "2012-03-26" "2012-08-23" "2012-08-14"
## [11106] "2013-04-30" "2012-03-26" "2012-03-26" "2013-04-29" "2013-04-29"
## [11111] "2013-01-04" "2011-08-13" "2012-05-24" "2013-01-04" "2013-07-04"
## [11116] "2013-01-04" "2012-05-24" "2013-07-04" "2011-08-13" "2012-05-24"
## [11121] "2012-05-24" "2011-08-13" "2013-03-03" "2011-07-26" "2012-05-15"
## [11126] "2011-07-26" "2012-05-15" "2013-03-03" "2012-05-15" "2013-03-03"
## [11131] "2013-03-03" "2013-03-03" "2013-06-15" "2013-06-15" "2012-01-19"
## [11136] "2012-01-19" "2013-12-06" "2012-01-19" "2012-01-19" "2013-12-06"
## [11141] "2011-02-02" "2011-01-25" "2011-02-02" "2013-11-19" "2011-01-25"
## [11146] "2011-02-02" "2011-02-02" "2011-01-25" "2011-01-25" "2013-11-19"
## [11151] "2013-11-19" "2011-01-25" "2011-02-02" "2014-01-01" "2014-01-01"
## [11156] "2014-01-01" "2014-01-01" "2014-01-01" "2013-12-26" "2013-02-24"
## [11161] "2013-12-26" "2013-12-26" "2013-12-26" "2013-02-24" "2012-04-23"
## [11166] "2012-04-23" "2012-04-23" "2011-06-13" "2011-06-13" "2011-06-13"
## [11171] "2012-02-15" "2012-02-15" "2014-01-01" "2014-01-01" "2012-02-15"
## [11176] "2014-01-01" "2013-12-07" "2011-11-21" "2013-12-07" "2013-12-07"
## [11181] "2013-07-01" "2013-07-01" "2011-11-21" "2013-08-30" "2013-08-30"
## [11186] "2013-05-12" "2013-08-30" "2013-05-12" "2013-05-12" "2012-02-07"
## [11191] "2014-01-21" "2012-02-07" "2012-04-09" "2014-01-21" "2012-04-09"
## [11196] "2014-01-21" "2012-11-16" "2012-04-09" "2012-11-16" "2012-04-09"
## [11201] "2012-11-16" "2012-11-16" "2012-04-09" "2012-11-16" "2012-11-17"
## [11206] "2013-03-09" "2012-03-05" "2012-03-13" "2012-11-17" "2012-05-30"
## [11211] "2012-11-17" "2012-03-13" "2012-03-05" "2013-03-09" "2013-03-09"
## [11216] "2012-05-30" "2012-03-05" "2013-03-09" "2012-03-13" "2012-03-05"
## [11221] "2012-03-13" "2012-03-05" "2012-05-30" "2012-05-30" "2013-03-09"
## [11226] "2012-03-13" "2012-01-04" "2012-05-08" "2012-01-04" "2012-05-08"
## [11231] "2012-09-05" "2012-09-05" "2012-03-25" "2012-09-05" "2012-09-05"
## [11236] "2012-03-25" "2012-09-05" "2012-03-25" "2012-08-12" "2011-02-01"
## [11241] "2013-09-26" "2013-02-25" "2011-02-01" "2013-09-26" "2013-09-26"
## [11246] "2013-02-25" "2013-09-26" "2014-01-11" "2013-09-26" "2012-08-12"
## [11251] "2014-01-11" "2011-02-01" "2013-02-25" "2013-09-26" "2012-08-12"
## [11256] "2013-12-16" "2013-12-16" "2011-02-11" "2011-02-15" "2011-02-11"
## [11261] "2011-02-15" "2012-05-04" "2012-05-02" "2012-10-12" "2012-05-04"
## [11266] "2012-10-12" "2012-05-02" "2012-05-04" "2012-05-02" "2012-04-29"
## [11271] "2012-05-02" "2012-04-29" "2012-04-29" "2012-05-04" "2012-04-29"
## [11276] "2013-04-11" "2011-06-25" "2012-04-03" "2011-06-25" "2012-11-24"
## [11281] "2013-04-11" "2012-04-03" "2012-04-03" "2012-04-03" "2011-07-20"
## [11286] "2012-04-03" "2011-07-20" "2013-04-11" "2012-04-03" "2012-11-24"
## [11291] "2013-02-16" "2013-02-16" "2011-04-01" "2011-04-01" "2011-04-17"
## [11296] "2011-04-17" "2011-04-17" "2011-04-17" "2011-04-17" "2012-08-18"
## [11301] "2013-08-09" "2011-11-11" "2012-08-13" "2013-08-09" "2011-11-11"
## [11306] "2011-11-11" "2012-08-13" "2012-08-18" "2012-06-10" "2012-06-10"
## [11311] "2014-01-04" "2014-01-04" "2014-01-04" "2012-06-10" "2012-06-10"
## [11316] "2012-06-10" "2013-10-17" "2013-10-17" "2013-10-17" "2013-10-17"
## [11321] "2013-10-17" "2012-02-06" "2012-02-06" "2013-07-24" "2013-07-24"
## [11326] "2013-07-24" "2013-07-24" "2013-07-24" "2013-01-26" "2013-01-26"
## [11331] "2013-01-26" "2012-12-30" "2012-12-30" "2013-05-19" "2012-12-30"
## [11336] "2012-12-30" "2013-05-19" "2011-11-21" "2014-01-20" "2011-11-21"
## [11341] "2014-01-20" "2011-10-22" "2014-01-20" "2011-11-21" "2014-01-20"
## [11346] "2011-10-22" "2014-01-20" "2014-01-20" "2011-11-21" "2012-12-18"
## [11351] "2012-12-18" "2012-12-18" "2012-12-18" "2012-12-18" "2013-05-27"
## [11356] "2012-11-30" "2012-11-30" "2012-11-30" "2012-08-17" "2011-02-02"
## [11361] "2012-08-17" "2012-08-17" "2011-02-02" "2013-05-27" "2011-02-02"
## [11366] "2013-05-07" "2013-05-07" "2013-05-22" "2013-05-22" "2013-05-22"
## [11371] "2013-09-14" "2013-09-14" "2013-05-22" "2013-05-22" "2013-09-14"
## [11376] "2012-09-10" "2012-09-07" "2012-09-07" "2013-01-05" "2012-09-10"
## [11381] "2013-01-05" "2012-09-10" "2012-09-07" "2012-09-07" "2013-05-09"
## [11386] "2013-01-05" "2013-01-05" "2012-09-10" "2012-09-10" "2012-09-07"
## [11391] "2012-02-08" "2013-05-09" "2012-09-10" "2013-05-09" "2013-01-05"
## [11396] "2012-09-07" "2012-02-08" "2013-01-15" "2013-01-15" "2013-01-08"
## [11401] "2014-02-04" "2013-01-15" "2013-01-08" "2013-01-08" "2014-02-04"
## [11406] "2013-07-15" "2013-07-15" "2013-06-12" "2013-01-23" "2013-01-23"
## [11411] "2013-06-12" "2012-06-28" "2013-06-12" "2011-09-12" "2012-06-29"
## [11416] "2012-06-29" "2012-06-29" "2012-06-25" "2012-06-25" "2012-06-28"
## [11421] "2012-06-28" "2011-09-12" "2012-06-25" "2011-09-12" "2013-01-23"
## [11426] "2011-09-12" "2012-12-21" "2012-12-21" "2012-04-07" "2012-02-15"
## [11431] "2012-02-15" "2012-04-07" "2013-11-21" "2013-08-10" "2013-11-21"
## [11436] "2013-11-27" "2012-11-14" "2012-05-03" "2013-11-21" "2013-11-21"
## [11441] "2012-04-25" "2013-11-30" "2013-11-30" "2012-11-14" "2013-11-27"
## [11446] "2012-05-03" "2013-11-30" "2013-11-30" "2013-08-10" "2013-11-21"
## [11451] "2012-05-03" "2013-11-27" "2012-04-25" "2013-11-27" "2013-08-10"
## [11456] "2013-11-27" "2012-04-25" "2013-11-30" "2011-04-18" "2011-09-29"
## [11461] "2011-09-29" "2011-09-29" "2011-09-29" "2011-04-18" "2011-04-18"
## [11466] "2011-04-25" "2011-04-25" "2011-04-25" "2011-12-12" "2011-12-12"
## [11471] "2011-12-12" "2013-03-30" "2013-03-30" "2013-03-30" "2013-03-30"
## [11476] "2013-03-30" "2013-03-30" "2012-08-26" "2012-08-26" "2012-08-26"
## [11481] "2013-07-04" "2013-07-04" "2013-07-04" "2013-04-28" "2013-04-28"
## [11486] "2013-08-28" "2013-04-28" "2013-04-28" "2013-08-28" "2013-04-28"
## [11491] "2012-07-07" "2013-10-25" "2012-07-10" "2012-07-10" "2013-10-25"
## [11496] "2013-10-25" "2012-07-07" "2013-10-25" "2012-07-10" "2013-10-25"
## [11501] "2013-10-25" "2011-09-27" "2011-09-27" "2012-04-16" "2012-04-16"
## [11506] "2011-09-27" "2012-04-16" "2013-03-14" "2013-03-09" "2013-03-11"
## [11511] "2013-09-01" "2013-03-14" "2013-03-11" "2013-03-09" "2013-09-01"
## [11516] "2013-03-11" "2013-03-14" "2013-03-09" "2013-09-01" "2013-09-01"
## [11521] "2012-06-19" "2014-01-10" "2012-06-19" "2014-01-10" "2014-01-10"
## [11526] "2012-07-11" "2011-10-29" "2012-07-11" "2011-10-29" "2011-08-20"
## [11531] "2011-02-28" "2011-02-28" "2012-08-25" "2011-08-20" "2011-02-28"
## [11536] "2011-02-28" "2011-08-20" "2011-08-20" "2012-08-25" "2011-02-28"
## [11541] "2011-08-20" "2011-06-27" "2013-06-21" "2011-02-06" "2012-10-24"
## [11546] "2013-06-21" "2012-10-24" "2011-01-28" "2012-10-24" "2011-01-28"
## [11551] "2013-06-21" "2013-06-21" "2011-01-28" "2011-06-27" "2012-10-24"
## [11556] "2011-01-28" "2012-10-24" "2011-02-06" "2012-10-24" "2011-02-06"
## [11561] "2013-06-21" "2011-01-28" "2011-02-06" "2011-02-06" "2011-02-06"
## [11566] "2011-06-27" "2011-01-28" "2011-03-04" "2011-03-04" "2011-03-04"
## [11571] "2011-03-04" "2011-03-04" "2011-10-16" "2013-07-13" "2013-07-13"
## [11576] "2011-10-09" "2011-10-16" "2013-07-13" "2011-10-09" "2011-10-16"
## [11581] "2011-10-09" "2011-10-09" "2013-07-13" "2011-10-16" "2011-10-16"
## [11586] "2011-10-09" "2013-07-13" "2014-02-11" "2014-02-11" "2012-08-31"
## [11591] "2011-04-03" "2012-08-31" "2012-08-31" "2011-04-03" "2012-08-31"
## [11596] "2012-08-31" "2011-04-03" "2012-02-09" "2012-02-09" "2012-02-09"
## [11601] "2014-01-10" "2014-01-10" "2014-01-10" "2014-01-10" "2014-01-10"
## [11606] "2011-12-15" "2011-12-15" "2011-12-15" "2012-05-28" "2013-01-14"
## [11611] "2013-01-14" "2012-05-28" "2011-09-08" "2013-01-14" "2012-05-28"
## [11616] "2011-09-08" "2011-09-08" "2013-01-14" "2013-01-14" "2011-09-08"
## [11621] "2012-10-17" "2011-12-16" "2011-12-16" "2012-10-17" "2012-10-17"
## [11626] "2012-10-17" "2011-12-16" "2011-12-16" "2011-08-18" "2011-12-16"
## [11631] "2011-08-18" "2013-06-08" "2012-03-28" "2012-03-28" "2013-06-08"
## [11636] "2013-06-08" "2013-06-08" "2013-05-15" "2013-05-15" "2013-05-15"
## [11641] "2013-05-15" "2013-05-15" "2013-06-30" "2013-06-30" "2011-08-05"
## [11646] "2011-08-05" "2012-08-14" "2012-08-14" "2012-08-14" "2012-08-14"
## [11651] "2012-01-22" "2012-01-22" "2013-07-01" "2011-11-27" "2012-02-03"
## [11656] "2013-07-01" "2013-07-01" "2012-02-03" "2013-07-01" "2011-11-23"
## [11661] "2013-07-01" "2011-11-23" "2013-07-01" "2011-11-27" "2011-11-23"
## [11666] "2011-11-27" "2011-09-11" "2011-09-11" "2011-09-11" "2011-12-26"
## [11671] "2011-12-26" "2013-04-12" "2013-04-12" "2013-04-12" "2011-12-26"
## [11676] "2011-04-12" "2011-04-18" "2013-02-20" "2013-02-20" "2012-08-01"
## [11681] "2013-02-20" "2011-04-12" "2013-02-20" "2013-02-11" "2013-02-11"
## [11686] "2013-02-11" "2012-08-01" "2013-02-20" "2013-02-11" "2011-04-18"
## [11691] "2013-02-11" "2011-03-03" "2011-09-05" "2011-03-03" "2013-03-16"
## [11696] "2013-03-16" "2011-03-03" "2013-03-16" "2011-09-05" "2011-03-03"
## [11701] "2011-03-03" "2012-04-24" "2012-04-18" "2012-04-24" "2012-04-18"
## [11706] "2012-04-18" "2012-04-24" "2013-12-17" "2011-10-15" "2013-12-17"
## [11711] "2012-05-10" "2012-05-10" "2011-10-15" "2013-12-17" "2013-12-17"
## [11716] "2012-11-22" "2012-11-22" "2012-11-22" "2012-11-12" "2012-11-12"
## [11721] "2012-11-12" "2012-11-12" "2012-11-12" "2012-11-12" "2012-11-22"
## [11726] "2012-11-22" "2012-11-22" "2011-07-08" "2012-02-12" "2012-02-12"
## [11731] "2011-07-08" "2012-02-12" "2012-02-12" "2012-02-12" "2011-07-08"
## [11736] "2011-02-25" "2011-02-25" "2011-12-28" "2011-02-25" "2012-04-13"
## [11741] "2011-12-28" "2012-04-13" "2011-12-28" "2012-04-13" "2014-01-27"
## [11746] "2014-01-27" "2014-01-27" "2013-09-19" "2013-09-19" "2013-03-30"
## [11751] "2012-03-20" "2013-03-30" "2012-03-20" "2012-03-20" "2013-09-19"
## [11756] "2012-03-20" "2012-03-20" "2012-03-20" "2011-12-01" "2011-12-01"
## [11761] "2011-12-01" "2013-02-17" "2013-02-17" "2013-01-26" "2013-01-26"
## [11766] "2011-08-24" "2012-12-17" "2013-01-26" "2013-01-26" "2013-01-26"
## [11771] "2012-12-17" "2012-12-17" "2011-04-24" "2011-08-24" "2011-04-24"
## [11776] "2011-08-24" "2012-12-17" "2012-12-17" "2013-04-02" "2013-04-02"
## [11781] "2012-03-26" "2012-03-26" "2012-09-06" "2012-09-06" "2013-04-02"
## [11786] "2013-04-02" "2012-09-06" "2013-04-02" "2013-04-02" "2013-05-07"
## [11791] "2012-04-18" "2012-09-06" "2012-04-18" "2012-04-18" "2012-09-06"
## [11796] "2012-09-06" "2012-04-18" "2012-04-18" "2012-03-26" "2012-03-26"
## [11801] "2013-05-07" "2012-03-26" "2013-05-07" "2011-10-09" "2011-10-09"
## [11806] "2011-10-16" "2012-12-09" "2011-10-16" "2011-10-09" "2012-12-09"
## [11811] "2014-01-05" "2011-10-16" "2011-10-16" "2012-12-15" "2011-10-16"
## [11816] "2011-10-09" "2013-12-30" "2014-01-05" "2012-12-09" "2012-12-15"
## [11821] "2012-12-15" "2011-10-09" "2011-10-16" "2013-12-30" "2011-10-09"
## [11826] "2013-11-16" "2013-11-16" "2012-05-07" "2012-05-07" "2012-07-29"
## [11831] "2013-11-21" "2013-06-06" "2011-08-25" "2012-07-29" "2012-07-29"
## [11836] "2013-06-06" "2012-05-07" "2013-11-21" "2011-08-25" "2013-04-09"
## [11841] "2013-04-09" "2013-04-07" "2013-04-07" "2013-12-03" "2013-12-03"
## [11846] "2011-06-13" "2013-12-03" "2011-06-13" "2011-06-13" "2013-02-17"
## [11851] "2013-02-15" "2013-02-15" "2013-02-17" "2013-02-15" "2013-02-15"
## [11856] "2013-02-17" "2013-04-04" "2011-08-15" "2012-11-20" "2013-04-07"
## [11861] "2011-08-15" "2012-11-20" "2013-04-04" "2012-11-20" "2013-04-07"
## [11866] "2011-12-05" "2011-12-05" "2011-12-05" "2013-09-17" "2011-12-10"
## [11871] "2011-12-05" "2011-12-10" "2011-12-10" "2011-12-10" "2011-12-10"
## [11876] "2013-09-17" "2011-12-05" "2012-01-05" "2011-03-12" "2011-03-12"
## [11881] "2012-01-05" "2012-01-05" "2011-03-12" "2011-07-03" "2011-06-08"
## [11886] "2011-06-08" "2011-07-03" "2011-06-08" "2011-06-19" "2011-06-19"
## [11891] "2011-06-19" "2011-06-19" "2011-06-19" "2012-05-13" "2012-05-13"
## [11896] "2012-05-13" "2012-05-13" "2012-05-13" "2012-05-13" "2013-07-16"
## [11901] "2013-07-10" "2013-07-16" "2013-07-16" "2011-08-10" "2013-07-10"
## [11906] "2013-07-16" "2013-07-16" "2011-08-10" "2013-07-10" "2011-08-10"
## [11911] "2014-02-17" "2014-02-17" "2013-07-10" "2011-08-10" "2013-07-10"
## [11916] "2013-08-01" "2012-04-08" "2012-04-08" "2013-08-01" "2012-04-08"
## [11921] "2012-11-29" "2012-11-29" "2013-06-04" "2012-07-19" "2012-07-19"
## [11926] "2013-01-31" "2013-01-31" "2013-06-04" "2013-07-23" "2012-07-19"
## [11931] "2013-07-23" "2013-07-23" "2013-03-18" "2013-03-18" "2013-03-18"
## [11936] "2013-03-18" "2013-03-18" "2012-11-05" "2012-11-05" "2012-11-05"
## [11941] "2011-03-16" "2011-03-21" "2011-10-23" "2011-03-16" "2011-10-23"
## [11946] "2011-10-23" "2011-03-21" "2013-11-10" "2013-11-10" "2011-08-09"
## [11951] "2011-04-01" "2011-04-10" "2011-08-09" "2011-04-01" "2011-04-01"
## [11956] "2011-08-09" "2011-04-01" "2011-04-10" "2011-04-01" "2011-04-10"
## [11961] "2011-04-10" "2011-04-10" "2011-08-09" "2013-10-15" "2012-07-15"
## [11966] "2012-07-15" "2012-07-15" "2012-07-15" "2013-10-15" "2012-07-15"
## [11971] "2013-10-15" "2012-04-17" "2012-07-26" "2012-04-17" "2012-04-17"
## [11976] "2012-04-17" "2012-07-26" "2011-03-15" "2012-04-17" "2012-07-26"
## [11981] "2011-03-15" "2012-07-26" "2012-04-17" "2012-07-26" "2011-08-22"
## [11986] "2011-08-22" "2012-04-14" "2012-04-18" "2012-04-18" "2012-04-14"
## [11991] "2012-04-14" "2012-04-14" "2012-04-18" "2012-04-14" "2012-04-18"
## [11996] "2012-04-18" "2012-04-14" "2013-06-15" "2013-06-14" "2013-06-14"
## [12001] "2013-06-15" "2013-11-30" "2013-06-14" "2013-06-14" "2013-06-15"
## [12006] "2013-11-30" "2013-11-30" "2013-06-15" "2013-07-09" "2013-03-23"
## [12011] "2013-07-09" "2013-03-23" "2013-07-09" "2013-03-23" "2013-07-09"
## [12016] "2013-07-09" "2013-03-23" "2013-03-23" "2011-07-20" "2011-07-20"
## [12021] "2011-07-20" "2011-07-20" "2012-04-23" "2013-08-12" "2012-04-23"
## [12026] "2013-08-12" "2013-08-12" "2013-07-30" "2013-07-30" "2012-04-23"
## [12031] "2013-08-12" "2013-07-30" "2013-08-12" "2011-05-11" "2014-02-06"
## [12036] "2011-05-11" "2014-02-06" "2013-10-09" "2011-05-11" "2013-10-09"
## [12041] "2011-05-11" "2011-05-11" "2014-02-06" "2011-05-11" "2014-02-06"
## [12046] "2014-02-06" "2012-08-10" "2012-08-10" "2012-04-15" "2012-04-15"
## [12051] "2012-04-15" "2012-08-10" "2012-08-10" "2012-08-06" "2012-04-15"
## [12056] "2012-08-06" "2012-04-15" "2013-07-27" "2012-08-06" "2013-07-27"
## [12061] "2013-07-27" "2013-01-21" "2013-01-21" "2013-03-04" "2013-03-15"
## [12066] "2013-03-04" "2012-06-25" "2013-03-15" "2013-03-04" "2013-03-15"
## [12071] "2013-02-15" "2013-03-15" "2013-02-15" "2013-02-15" "2013-03-04"
## [12076] "2012-06-25" "2013-03-15" "2012-10-19" "2012-10-19" "2012-10-19"
## [12081] "2012-10-19" "2012-10-19" "2012-05-20" "2012-05-20" "2012-05-20"
## [12086] "2012-07-06" "2012-07-06" "2012-05-10" "2012-05-10" "2012-05-10"
## [12091] "2013-06-08" "2013-04-30" "2013-04-30" "2013-04-30" "2013-04-30"
## [12096] "2012-12-08" "2013-04-30" "2013-06-08" "2012-05-10" "2012-12-08"
## [12101] "2013-06-08" "2013-06-08" "2012-05-10" "2013-06-08" "2012-05-10"
## [12106] "2011-08-27" "2011-09-01" "2011-08-27" "2011-08-27" "2011-09-01"
## [12111] "2011-09-01" "2012-05-07" "2012-05-07" "2013-09-06" "2011-08-06"
## [12116] "2012-05-07" "2011-08-06" "2013-09-06" "2013-09-06" "2012-05-07"
## [12121] "2011-08-06" "2012-05-07" "2012-05-07" "2012-03-03" "2012-03-03"
## [12126] "2013-02-15" "2013-02-15" "2013-05-12" "2013-02-15" "2013-05-12"
## [12131] "2013-02-15" "2013-02-15" "2013-05-12" "2011-06-06" "2011-06-06"
## [12136] "2011-06-06" "2011-06-06" "2011-06-06" "2011-06-06" "2012-02-03"
## [12141] "2012-02-03" "2011-11-08" "2012-06-24" "2012-06-24" "2012-06-24"
## [12146] "2011-11-08" "2014-01-12" "2011-02-22" "2011-02-22" "2011-02-22"
## [12151] "2014-01-12" "2011-02-22" "2014-01-12" "2014-01-12" "2011-02-22"
## [12156] "2013-07-09" "2013-07-09" "2013-07-09" "2013-07-09" "2013-07-09"
## [12161] "2013-07-09" "2013-08-21" "2013-08-21" "2013-08-21" "2011-10-07"
## [12166] "2012-04-09" "2011-10-07" "2011-10-07" "2013-08-03" "2012-09-03"
## [12171] "2012-10-29" "2012-10-29" "2012-10-29" "2011-10-07" "2013-12-05"
## [12176] "2012-10-29" "2011-10-07" "2012-09-03" "2013-08-03" "2012-04-09"
## [12181] "2012-10-29" "2012-04-09" "2013-12-05" "2012-09-03" "2012-11-17"
## [12186] "2012-11-17" "2012-11-17" "2013-01-19" "2013-01-19" "2013-01-19"
## [12191] "2013-03-20" "2013-03-20" "2013-08-12" "2011-03-21" "2011-03-21"
## [12196] "2013-03-20" "2011-03-21" "2013-08-12" "2013-08-12" "2011-03-21"
## [12201] "2013-03-20" "2011-03-21" "2013-03-20" "2013-08-30" "2013-08-30"
## [12206] "2013-08-30" "2013-08-30" "2013-08-30" "2013-05-20" "2013-03-18"
## [12211] "2013-03-18" "2013-05-20" "2013-03-18" "2013-05-20" "2011-10-08"
## [12216] "2011-10-08" "2013-02-09" "2011-10-08" "2011-03-09" "2011-09-08"
## [12221] "2011-03-09" "2011-10-08" "2011-09-08" "2011-09-08" "2011-10-08"
## [12226] "2013-02-09" "2011-07-21" "2011-07-21" "2013-04-18" "2011-07-21"
## [12231] "2011-07-21" "2011-07-21" "2013-04-18" "2011-07-21" "2012-02-10"
## [12236] "2012-02-10" "2011-10-21" "2012-02-10" "2011-10-21" "2011-10-21"
## [12241] "2011-10-21" "2011-10-21" "2011-06-28" "2013-09-11" "2011-06-28"
## [12246] "2011-05-27" "2011-05-27" "2013-09-11" "2013-09-11" "2012-06-24"
## [12251] "2012-06-24" "2012-01-21" "2012-01-21" "2012-06-24" "2012-06-24"
## [12256] "2011-01-31" "2012-04-19" "2013-08-07" "2013-08-07" "2013-08-07"
## [12261] "2011-01-31" "2012-04-19" "2013-08-07" "2013-12-26" "2014-02-01"
## [12266] "2013-12-26" "2014-02-01" "2013-12-26" "2013-12-26" "2012-12-18"
## [12271] "2013-12-26" "2014-02-01" "2012-12-18" "2012-12-18" "2011-08-18"
## [12276] "2012-05-23" "2012-12-10" "2013-10-30" "2013-10-30" "2013-10-30"
## [12281] "2012-05-23" "2012-05-23" "2013-10-30" "2011-09-01" "2013-10-30"
## [12286] "2011-09-01" "2012-05-23" "2012-05-23" "2011-09-01" "2011-08-18"
## [12291] "2011-09-01" "2012-12-10" "2011-09-01" "2012-05-23" "2012-12-10"
## [12296] "2013-06-18" "2013-06-18" "2011-07-08" "2013-06-18" "2011-07-08"
## [12301] "2011-07-08" "2013-06-18" "2013-06-18" "2013-06-18" "2011-07-08"
## [12306] "2011-03-03" "2011-03-03" "2011-03-03" "2011-07-08" "2011-07-08"
## [12311] "2012-06-26" "2012-05-17" "2012-05-17" "2012-06-26" "2012-11-24"
## [12316] "2012-11-24" "2012-11-24" "2012-05-17" "2012-11-24" "2012-11-24"
## [12321] "2012-11-24" "2012-05-18" "2012-05-25" "2012-05-25" "2012-05-18"
## [12326] "2012-07-23" "2012-07-23" "2013-02-14" "2012-04-04" "2012-04-04"
## [12331] "2012-04-04" "2012-04-04" "2013-02-14" "2012-03-07" "2012-03-07"
## [12336] "2011-07-13" "2011-07-13" "2012-03-07" "2012-03-07" "2012-03-07"
## [12341] "2014-02-19" "2014-02-19" "2012-06-15" "2013-04-02" "2013-04-02"
## [12346] "2013-01-23" "2012-09-24" "2012-09-24" "2012-09-24" "2012-06-15"
## [12351] "2012-09-24" "2012-09-24" "2013-04-05" "2013-01-23" "2012-09-24"
## [12356] "2013-04-05" "2013-09-05" "2013-09-05" "2012-01-10" "2012-01-10"
## [12361] "2013-10-16" "2012-01-10" "2012-01-10" "2012-01-10" "2013-10-16"
## [12366] "2013-10-16" "2011-04-23" "2013-10-18" "2011-04-23" "2011-03-16"
## [12371] "2011-04-23" "2013-10-18" "2011-03-16" "2011-03-16" "2011-07-15"
## [12376] "2011-07-15" "2013-09-05" "2013-09-05" "2013-09-05" "2013-09-05"
## [12381] "2013-05-10" "2013-05-10" "2013-09-05" "2013-09-05" "2012-05-24"
## [12386] "2012-10-30" "2012-05-24" "2012-05-24" "2012-05-24" "2012-10-30"
## [12391] "2012-05-24" "2013-12-01" "2013-04-03" "2012-04-30" "2012-04-30"
## [12396] "2013-04-03" "2011-12-09" "2013-04-03" "2013-04-03" "2013-12-01"
## [12401] "2012-07-29" "2011-12-09" "2012-07-29" "2013-04-03" "2011-12-09"
## [12406] "2011-12-09" "2013-01-05" "2013-01-05" "2012-04-21" "2013-01-05"
## [12411] "2013-01-05" "2012-04-21" "2012-04-21" "2013-01-05" "2013-12-28"
## [12416] "2013-12-28" "2013-12-28" "2013-12-28" "2013-09-06" "2013-09-06"
## [12421] "2013-09-06" "2012-01-15" "2012-12-25" "2012-12-25" "2012-12-25"
## [12426] "2012-01-15" "2012-12-25" "2012-12-25" "2011-12-27" "2011-12-27"
## [12431] "2013-12-26" "2011-11-25" "2011-11-25" "2011-11-25" "2011-11-25"
## [12436] "2013-12-26" "2011-11-25" "2011-11-25" "2011-04-27" "2011-04-27"
## [12441] "2011-04-27" "2011-04-27" "2011-04-27" "2012-07-11" "2012-07-11"
## [12446] "2012-07-11" "2012-07-11" "2012-07-11" "2011-07-04" "2012-11-30"
## [12451] "2011-06-14" "2011-06-14" "2012-11-30" "2013-03-28" "2011-07-04"
## [12456] "2011-07-04" "2011-06-14" "2011-06-14" "2011-07-04" "2011-06-14"
## [12461] "2012-11-30" "2012-11-30" "2013-03-28" "2012-11-30" "2011-06-14"
## [12466] "2012-11-30" "2013-01-21" "2013-05-10" "2013-09-22" "2013-05-10"
## [12471] "2013-01-21" "2013-09-22" "2013-01-21" "2013-01-21" "2013-01-21"
## [12476] "2011-02-09" "2013-05-01" "2013-05-01" "2013-05-01" "2011-02-09"
## [12481] "2013-05-01" "2011-02-09" "2011-12-02" "2013-05-01" "2011-12-02"
## [12486] "2011-12-02" "2011-02-09" "2013-05-01" "2011-12-02" "2011-06-13"
## [12491] "2011-05-29" "2011-06-13" "2011-06-13" "2013-01-01" "2013-12-06"
## [12496] "2011-06-13" "2011-05-29" "2013-12-06" "2013-01-01" "2013-01-01"
## [12501] "2011-06-13" "2014-02-14" "2014-02-14" "2013-05-23" "2014-02-14"
## [12506] "2013-05-23" "2012-04-19" "2012-04-19" "2013-09-06" "2013-09-06"
## [12511] "2012-12-12" "2012-12-12" "2013-09-06" "2013-09-06" "2012-12-12"
## [12516] "2013-06-08" "2012-12-12" "2012-12-12" "2012-12-12" "2013-06-08"
## [12521] "2013-06-08" "2012-06-01" "2011-09-19" "2011-09-09" "2012-06-01"
## [12526] "2011-09-09" "2011-09-19" "2012-07-19" "2012-07-19" "2012-07-19"
## [12531] "2012-07-19" "2012-07-19" "2011-03-12" "2011-03-12" "2011-11-07"
## [12536] "2011-04-22" "2011-04-22" "2011-04-22" "2011-11-07" "2011-11-07"
## [12541] "2012-03-01" "2012-03-01" "2012-01-17" "2012-03-01" "2012-03-01"
## [12546] "2012-03-01" "2011-12-28" "2012-01-17" "2012-01-17" "2011-12-28"
## [12551] "2012-01-17" "2012-12-15" "2012-12-15" "2012-01-17" "2011-12-28"
## [12556] "2011-12-28" "2011-09-05" "2011-09-05" "2011-09-05" "2011-09-05"
## [12561] "2011-09-05" "2013-07-19" "2013-07-19" "2013-07-19" "2013-07-19"
## [12566] "2013-07-19" "2013-06-01" "2013-06-03" "2013-06-03" "2013-06-03"
## [12571] "2013-06-01" "2013-06-01" "2013-06-01" "2013-06-03" "2013-06-01"
## [12576] "2013-06-03" "2012-01-01" "2012-11-03" "2012-01-01" "2012-01-01"
## [12581] "2012-11-03" "2012-11-03" "2012-01-01" "2012-11-03" "2012-01-01"
## [12586] "2011-12-01" "2011-12-01" "2011-12-01" "2011-12-01" "2011-12-01"
## [12591] "2013-09-29" "2013-09-29" "2011-04-29" "2011-04-29" "2011-09-19"
## [12596] "2012-10-19" "2011-09-19" "2011-04-29" "2013-10-28" "2012-10-19"
## [12601] "2012-10-19" "2012-10-19" "2012-10-19" "2012-10-19" "2013-10-28"
## [12606] "2011-09-19" "2012-11-11" "2012-11-11" "2011-10-06" "2011-10-06"
## [12611] "2011-09-16" "2011-09-16" "2012-12-16" "2011-10-06" "2011-10-06"
## [12616] "2011-09-16" "2012-12-16" "2011-10-06" "2013-10-23" "2013-08-04"
## [12621] "2013-10-23" "2013-10-23" "2013-08-04" "2013-10-23" "2013-08-04"
## [12626] "2013-08-04" "2013-10-23" "2012-02-06" "2013-06-21" "2012-02-06"
## [12631] "2013-06-21" "2013-06-21" "2013-06-21" "2012-02-06" "2012-02-06"
## [12636] "2012-02-06" "2013-06-21" "2013-09-25" "2013-05-09" "2013-09-25"
## [12641] "2013-05-09" "2013-05-09" "2013-05-09" "2013-05-09" "2011-03-10"
## [12646] "2011-03-07" "2011-03-07" "2011-03-07" "2011-03-10" "2011-03-07"
## [12651] "2011-03-07" "2014-01-05" "2014-01-05" "2013-04-28" "2013-04-28"
## [12656] "2014-01-05" "2013-04-28" "2011-10-07" "2012-10-17" "2012-10-17"
## [12661] "2011-10-07" "2012-10-17" "2011-09-30" "2011-10-07" "2011-10-07"
## [12666] "2011-09-30" "2011-09-30" "2011-10-07" "2011-09-30" "2011-09-30"
## [12671] "2013-10-10" "2012-05-20" "2013-10-10" "2014-01-24" "2012-05-20"
## [12676] "2011-07-30" "2012-05-20" "2012-05-20" "2011-08-07" "2011-08-07"
## [12681] "2014-01-24" "2014-01-24" "2013-10-10" "2014-01-24" "2011-08-07"
## [12686] "2013-10-10" "2014-01-24" "2011-07-30" "2011-07-30" "2013-10-10"
## [12691] "2013-03-15" "2012-02-22" "2013-03-15" "2013-03-15" "2012-02-22"
## [12696] "2011-04-04" "2011-09-24" "2011-04-04" "2011-09-24" "2011-09-24"
## [12701] "2012-12-16" "2011-09-24" "2012-12-16" "2012-12-16" "2012-12-16"
## [12706] "2011-09-24" "2013-07-21" "2013-07-21" "2013-01-05" "2013-01-05"
## [12711] "2012-12-30" "2012-09-13" "2012-02-06" "2012-09-13" "2012-02-06"
## [12716] "2012-02-06" "2012-12-30" "2012-09-13" "2011-02-09" "2011-07-04"
## [12721] "2012-09-04" "2011-02-09" "2011-07-11" "2011-02-09" "2011-07-13"
## [12726] "2011-07-13" "2011-02-09" "2012-09-04" "2012-09-04" "2012-09-04"
## [12731] "2012-09-04" "2011-07-11" "2011-07-04" "2011-07-11" "2012-08-28"
## [12736] "2013-07-21" "2012-08-16" "2012-08-28" "2013-07-15" "2013-07-21"
## [12741] "2012-08-16" "2012-08-28" "2012-08-16" "2013-07-15" "2012-08-16"
## [12746] "2012-08-16" "2012-08-28" "2013-07-15" "2013-07-21" "2012-08-28"
## [12751] "2013-06-07" "2013-02-03" "2013-02-03" "2013-02-03" "2011-05-19"
## [12756] "2013-06-07" "2011-05-19" "2011-10-20" "2011-05-19" "2011-10-20"
## [12761] "2013-08-14" "2013-03-31" "2013-03-31" "2013-08-14" "2013-08-14"
## [12766] "2013-08-14" "2013-08-14" "2013-03-31" "2013-03-31" "2012-03-08"
## [12771] "2012-03-08" "2013-12-12" "2013-12-12" "2011-05-15" "2011-05-15"
## [12776] "2013-06-05" "2012-07-13" "2013-04-28" "2013-06-05" "2013-06-05"
## [12781] "2013-04-28" "2013-06-05" "2013-04-28" "2013-04-28" "2013-04-28"
## [12786] "2012-05-21" "2012-07-13" "2013-06-05" "2013-06-05" "2012-07-21"
## [12791] "2012-07-21" "2012-05-21" "2012-07-21" "2012-07-13" "2013-12-15"
## [12796] "2012-05-18" "2012-05-18" "2012-05-18" "2012-01-24" "2012-01-24"
## [12801] "2012-01-24" "2013-12-15" "2012-01-24" "2012-01-24" "2012-05-18"
## [12806] "2012-05-18" "2012-05-18" "2012-07-26" "2012-07-21" "2012-07-26"
## [12811] "2012-07-21" "2012-07-21" "2012-07-21" "2012-07-26" "2012-07-26"
## [12816] "2011-02-16" "2011-02-16" "2012-03-02" "2012-03-02" "2011-02-16"
## [12821] "2012-03-02" "2012-03-02" "2012-03-02" "2012-03-02" "2011-08-17"
## [12826] "2011-09-07" "2013-05-30" "2013-01-23" "2013-01-23" "2013-01-23"
## [12831] "2013-01-23" "2013-01-23" "2013-05-30" "2013-01-23" "2011-09-07"
## [12836] "2011-08-17" "2011-09-07" "2012-07-17" "2011-12-19" "2011-12-19"
## [12841] "2012-07-17" "2011-12-19" "2012-07-17" "2011-04-12" "2011-04-12"
## [12846] "2011-12-06" "2011-04-12" "2013-03-27" "2013-03-27" "2011-04-12"
## [12851] "2013-03-27" "2012-09-28" "2013-03-27" "2011-04-12" "2011-12-06"
## [12856] "2013-03-27" "2012-09-28" "2011-03-14" "2012-11-26" "2013-05-03"
## [12861] "2012-11-26" "2012-11-26" "2013-05-03" "2013-05-03" "2012-11-26"
## [12866] "2011-03-14" "2013-05-03" "2012-11-26" "2013-05-03" "2012-11-26"
## [12871] "2013-05-03" "2011-04-02" "2011-04-02" "2011-04-02" "2011-04-02"
## [12876] "2013-01-05" "2013-05-14" "2013-01-05" "2013-01-05" "2013-05-14"
## [12881] "2013-01-05" "2013-05-14" "2013-01-05" "2012-12-16" "2012-12-16"
## [12886] "2011-06-05" "2012-11-07" "2011-06-05" "2012-11-07" "2011-06-05"
## [12891] "2012-11-07" "2011-06-05" "2011-06-05" "2011-10-02" "2011-10-02"
## [12896] "2013-09-28" "2013-09-28" "2013-09-28" "2013-02-01" "2013-02-01"
## [12901] "2013-09-28" "2013-01-15" "2013-01-15" "2012-12-13" "2012-12-16"
## [12906] "2012-12-13" "2012-10-06" "2011-10-30" "2012-12-13" "2011-10-30"
## [12911] "2012-12-16" "2012-10-06" "2012-12-13" "2012-12-16" "2011-10-30"
## [12916] "2012-10-06" "2012-12-16" "2011-05-25" "2011-05-25" "2011-08-18"
## [12921] "2011-08-18" "2013-06-05" "2013-06-05" "2013-06-05" "2011-05-25"
## [12926] "2012-08-21" "2012-08-21" "2013-07-05" "2013-07-05" "2013-07-05"
## [12931] "2013-01-08" "2013-07-05" "2013-01-08" "2013-07-05" "2013-07-05"
## [12936] "2013-01-08" "2012-04-17" "2012-04-17" "2011-03-03" "2012-04-17"
## [12941] "2011-03-03" "2011-10-17" "2011-10-17" "2014-01-18" "2013-06-24"
## [12946] "2014-01-18" "2011-05-29" "2014-01-18" "2013-06-24" "2014-01-18"
## [12951] "2013-06-24" "2011-02-03" "2011-02-27" "2011-02-27" "2011-05-29"
## [12956] "2012-10-02" "2011-05-29" "2013-06-28" "2014-01-18" "2012-10-02"
## [12961] "2013-06-24" "2013-06-20" "2014-01-18" "2013-06-20" "2013-06-20"
## [12966] "2013-06-28" "2013-06-28" "2013-06-28" "2013-06-24" "2011-02-03"
## [12971] "2013-06-20" "2013-06-28" "2013-06-20" "2011-02-03" "2011-06-23"
## [12976] "2011-06-23" "2011-06-23" "2013-09-08" "2013-09-08" "2011-11-25"
## [12981] "2012-08-12" "2012-08-12" "2012-08-12" "2012-08-12" "2011-11-25"
## [12986] "2011-11-25" "2012-08-12" "2012-08-12" "2012-09-26" "2013-01-31"
## [12991] "2011-05-13" "2012-09-26" "2012-09-26" "2013-01-31" "2013-10-20"
## [12996] "2013-10-20" "2012-09-26" "2013-01-31" "2011-05-13" "2012-09-26"
## [13001] "2011-10-04" "2011-10-04" "2011-10-04" "2012-08-21" "2012-08-21"
## [13006] "2012-08-21" "2011-05-28" "2012-08-21" "2011-05-28" "2012-08-21"
## [13011] "2011-05-28" "2012-04-18" "2012-08-30" "2014-02-20" "2012-04-25"
## [13016] "2014-02-20" "2012-04-25" "2012-08-30" "2014-02-20" "2014-02-20"
## [13021] "2012-04-18" "2012-08-30" "2014-02-20" "2014-02-20" "2012-08-30"
## [13026] "2012-08-30" "2012-08-03" "2012-08-03" "2012-08-03" "2011-09-19"
## [13031] "2012-01-28" "2012-05-31" "2014-02-10" "2014-02-10" "2012-05-31"
## [13036] "2011-09-23" "2013-02-01" "2013-02-01" "2011-09-23" "2011-09-19"
## [13041] "2012-05-31" "2012-08-03" "2012-01-28" "2012-05-31" "2013-12-13"
## [13046] "2013-12-13" "2014-01-08" "2012-02-29" "2013-12-13" "2014-01-08"
## [13051] "2013-12-13" "2012-02-29" "2013-05-21" "2012-02-29" "2012-02-29"
## [13056] "2013-12-13" "2012-02-29" "2013-05-21" "2012-06-20" "2012-06-20"
## [13061] "2011-12-20" "2011-12-20" "2012-10-06" "2011-06-04" "2011-06-04"
## [13066] "2011-05-26" "2011-09-23" "2011-05-26" "2011-06-04" "2012-05-31"
## [13071] "2011-06-04" "2011-06-04" "2012-10-06" "2011-05-26" "2012-05-31"
## [13076] "2012-10-06" "2011-09-23" "2011-05-26" "2012-10-06" "2012-10-06"
## [13081] "2011-05-26" "2013-04-12" "2013-04-12" "2013-04-12" "2013-04-12"
## [13086] "2012-07-31" "2011-11-27" "2013-09-19" "2012-07-01" "2012-07-01"
## [13091] "2011-11-27" "2012-07-01" "2013-09-19" "2013-09-19" "2011-11-27"
## [13096] "2012-07-31" "2011-11-27" "2011-11-27" "2012-07-01" "2013-03-15"
## [13101] "2013-05-03" "2013-03-15" "2011-02-02" "2013-05-03" "2011-02-02"
## [13106] "2011-02-02" "2013-03-15" "2013-05-03" "2013-05-03" "2013-05-03"
## [13111] "2013-03-15" "2013-03-15" "2011-02-02" "2011-02-02" "2012-09-23"
## [13116] "2012-09-23" "2013-10-07" "2013-09-30" "2013-10-07" "2013-09-30"
## [13121] "2011-08-16" "2011-10-21" "2011-08-16" "2011-10-21" "2011-08-16"
## [13126] "2011-08-16" "2011-10-21" "2013-10-06" "2012-12-12" "2013-10-06"
## [13131] "2013-10-06" "2013-10-06" "2012-12-12" "2012-08-02" "2011-08-16"
## [13136] "2013-10-06" "2013-10-06" "2012-08-02" "2013-09-28" "2013-09-28"
## [13141] "2013-09-28" "2013-03-01" "2013-03-01" "2013-06-18" "2013-10-02"
## [13146] "2011-11-22" "2012-07-25" "2013-10-02" "2012-07-23" "2011-11-23"
## [13151] "2013-06-19" "2011-11-23" "2013-10-02" "2012-07-23" "2011-11-22"
## [13156] "2011-09-02" "2012-07-25" "2012-07-23" "2012-10-27" "2013-06-19"
## [13161] "2013-06-18" "2012-10-27" "2011-09-02" "2011-09-02" "2012-12-25"
## [13166] "2012-12-25" "2014-01-21" "2012-12-25" "2012-12-25" "2014-01-21"
## [13171] "2012-12-25" "2012-08-14" "2012-08-14" "2012-08-14" "2012-02-15"
## [13176] "2012-02-15" "2012-08-14" "2012-08-14" "2012-04-19" "2012-02-15"
## [13181] "2012-04-19" "2012-04-19" "2012-02-15" "2012-02-15" "2012-06-11"
## [13186] "2012-12-03" "2012-06-11" "2012-12-03" "2012-06-11" "2012-06-11"
## [13191] "2012-12-03" "2012-06-11" "2012-06-11" "2012-12-03" "2012-12-03"
## [13196] "2013-04-10" "2012-07-17" "2013-07-29" "2013-08-02" "2012-01-11"
## [13201] "2013-07-29" "2012-01-11" "2013-04-10" "2013-08-02" "2012-01-17"
## [13206] "2013-04-10" "2012-06-30" "2012-06-30" "2012-01-11" "2013-04-10"
## [13211] "2013-07-29" "2013-07-29" "2012-07-17" "2012-07-17" "2013-08-02"
## [13216] "2012-07-17" "2013-04-10" "2013-07-29" "2012-07-17" "2012-01-17"
## [13221] "2013-08-02" "2013-08-02" "2012-01-17" "2013-04-05" "2013-04-05"
## [13226] "2013-04-05" "2012-10-07" "2013-07-02" "2012-10-07" "2012-10-07"
## [13231] "2013-07-02" "2013-03-07" "2013-03-07" "2013-04-09" "2012-12-01"
## [13236] "2013-04-09" "2013-01-06" "2013-01-06" "2012-11-02" "2012-12-01"
## [13241] "2013-01-06" "2012-11-02" "2013-01-06" "2012-11-02" "2013-01-06"
## [13246] "2013-01-06" "2013-08-22" "2013-08-22" "2014-02-02" "2013-08-22"
## [13251] "2013-07-16" "2013-07-16" "2013-08-22" "2014-02-02" "2013-07-16"
## [13256] "2013-08-22" "2013-08-22" "2013-07-16" "2014-02-02" "2013-07-16"
## [13261] "2011-03-07" "2011-03-15" "2012-03-08" "2011-03-07" "2012-03-08"
## [13266] "2012-03-14" "2012-03-14" "2012-11-17" "2011-03-26" "2012-11-17"
## [13271] "2012-03-14" "2011-03-26" "2011-03-15" "2011-03-15" "2012-11-17"
## [13276] "2011-03-07" "2012-11-17" "2012-11-17" "2012-03-08" "2012-11-17"
## [13281] "2013-07-17" "2013-07-17" "2012-10-09" "2012-10-09" "2013-07-17"
## [13286] "2012-10-09" "2012-04-30" "2012-04-30" "2013-07-17" "2012-10-09"
## [13291] "2012-10-09" "2012-04-30" "2011-11-16" "2011-11-16" "2013-07-17"
## [13296] "2011-04-12" "2011-04-12" "2013-12-24" "2013-12-24" "2013-12-24"
## [13301] "2013-12-24" "2013-12-02" "2011-04-12" "2011-04-12" "2011-09-10"
## [13306] "2013-12-02" "2011-09-10" "2013-12-02" "2013-12-02" "2013-12-24"
## [13311] "2013-12-02" "2011-06-16" "2013-05-22" "2011-06-14" "2011-06-16"
## [13316] "2011-12-03" "2011-06-14" "2011-12-03" "2013-05-22" "2011-12-03"
## [13321] "2013-05-22" "2011-02-23" "2011-02-23" "2013-07-19" "2011-02-23"
## [13326] "2013-07-19" "2011-03-14" "2011-03-14" "2011-03-14" "2014-02-08"
## [13331] "2011-01-29" "2014-02-08" "2011-01-29" "2011-07-03" "2011-07-03"
## [13336] "2012-10-21" "2011-04-29" "2012-10-21" "2011-04-29" "2013-02-27"
## [13341] "2014-02-03" "2013-02-28" "2014-01-29" "2014-02-03" "2014-01-29"
## [13346] "2013-02-27" "2014-02-03" "2013-02-28" "2014-01-29" "2013-10-22"
## [13351] "2013-03-17" "2013-10-22" "2013-10-22" "2013-03-17" "2013-03-17"
## [13356] "2013-03-06" "2011-05-14" "2011-05-14" "2011-11-09" "2011-11-09"
## [13361] "2011-11-09" "2013-03-06" "2011-09-25" "2011-09-25" "2011-09-25"
## [13366] "2012-02-04" "2012-02-04" "2012-02-04" "2013-03-16" "2013-03-16"
## [13371] "2013-03-16" "2013-03-16" "2011-09-28" "2011-09-28" "2011-10-23"
## [13376] "2011-10-23" "2011-09-28" "2013-12-18" "2013-06-29" "2013-12-18"
## [13381] "2012-05-15" "2013-06-29" "2012-05-15" "2012-05-15" "2013-06-29"
## [13386] "2013-12-18" "2013-12-07" "2013-06-29" "2013-12-07" "2012-05-15"
## [13391] "2013-06-29" "2012-05-15" "2013-06-29" "2013-12-07" "2013-12-07"
## [13396] "2014-02-04" "2013-10-19" "2014-02-04" "2014-02-04" "2013-10-19"
## [13401] "2014-02-04" "2013-10-19" "2013-10-19" "2013-10-19" "2013-10-19"
## [13406] "2014-02-04" "2013-08-11" "2013-08-11" "2013-08-11" "2012-11-02"
## [13411] "2012-11-02" "2012-11-02" "2012-11-02" "2011-10-16" "2011-10-18"
## [13416] "2011-10-16" "2012-11-02" "2011-10-18" "2011-10-16" "2011-10-18"
## [13421] "2011-10-18" "2012-11-02" "2012-11-02" "2011-10-16" "2011-10-18"
## [13426] "2011-10-16" "2012-09-07" "2012-09-07" "2012-09-07" "2012-09-07"
## [13431] "2012-09-07" "2012-08-20" "2012-08-20" "2012-05-06" "2011-05-27"
## [13436] "2011-05-27" "2012-05-06" "2011-02-10" "2011-02-10" "2011-02-10"
## [13441] "2011-02-13" "2011-02-13" "2011-02-13" "2011-02-10" "2011-02-13"
## [13446] "2011-02-13" "2011-02-10" "2011-02-10" "2011-02-13" "2013-10-11"
## [13451] "2013-10-11" "2013-10-11" "2014-01-08" "2014-01-08" "2011-08-26"
## [13456] "2011-10-14" "2011-08-26" "2011-10-14" "2011-09-04" "2011-10-14"
## [13461] "2011-09-04" "2011-08-26" "2011-10-14" "2011-09-04" "2011-08-26"
## [13466] "2011-08-26" "2011-09-04" "2011-10-14" "2011-09-04" "2011-10-14"
## [13471] "2013-03-01" "2013-03-01" "2013-04-25" "2013-04-25" "2013-04-25"
## [13476] "2011-12-27" "2011-02-09" "2011-04-18" "2011-09-01" "2011-09-01"
## [13481] "2013-02-16" "2013-02-16" "2011-02-09" "2011-04-18" "2011-02-09"
## [13486] "2011-02-09" "2011-02-19" "2011-12-27" "2011-04-18" "2011-02-09"
## [13491] "2011-02-19" "2011-12-27" "2011-02-19" "2011-12-27" "2011-02-19"
## [13496] "2011-12-27" "2013-02-16" "2011-02-19" "2011-02-09" "2011-02-19"
## [13501] "2013-03-04" "2013-03-04" "2013-03-04" "2013-03-04" "2012-04-20"
## [13506] "2012-09-29" "2013-11-20" "2013-11-25" "2013-11-20" "2013-11-25"
## [13511] "2013-11-20" "2012-04-20" "2013-11-20" "2013-11-25" "2013-11-25"
## [13516] "2012-09-29" "2013-11-25" "2012-04-20" "2012-04-20" "2012-04-20"
## [13521] "2013-11-20" "2011-07-02" "2013-10-28" "2012-08-21" "2011-07-08"
## [13526] "2013-10-28" "2011-07-08" "2011-07-02" "2013-11-01" "2011-07-08"
## [13531] "2012-08-21" "2011-07-08" "2011-07-08" "2013-11-01" "2012-08-21"
## [13536] "2011-07-02" "2011-07-02" "2012-08-21" "2012-08-21" "2011-07-02"
## [13541] "2013-10-28" "2013-11-01" "2012-08-21" "2011-07-02" "2011-07-08"
## [13546] "2011-10-04" "2011-10-04" "2013-06-01" "2013-06-01" "2011-10-04"
## [13551] "2013-06-08" "2012-06-28" "2011-03-31" "2013-06-08" "2012-06-28"
## [13556] "2011-03-31" "2013-06-08" "2011-03-31" "2012-06-28" "2013-06-08"
## [13561] "2012-07-28" "2011-05-10" "2011-05-10" "2012-07-28" "2013-04-10"
## [13566] "2012-06-29" "2012-06-29" "2012-06-29" "2013-04-10" "2012-06-29"
## [13571] "2013-04-10" "2012-06-29" "2013-04-10" "2012-06-29" "2013-04-10"
## [13576] "2011-07-22" "2011-07-22" "2011-07-22" "2013-06-15" "2013-06-15"
## [13581] "2013-10-31" "2013-10-31" "2013-06-15" "2012-08-27" "2012-08-27"
## [13586] "2012-08-27" "2012-08-27" "2011-06-18" "2011-06-18" "2012-02-01"
## [13591] "2012-02-01" "2012-02-01" "2012-02-01" "2011-04-15" "2011-04-15"
## [13596] "2011-04-15" "2011-04-15" "2011-04-15" "2011-12-26" "2011-09-05"
## [13601] "2011-12-26" "2011-09-05" "2011-09-05" "2012-10-11" "2011-10-21"
## [13606] "2011-10-21" "2011-10-21" "2013-02-06" "2012-10-11" "2011-07-19"
## [13611] "2011-07-19" "2011-07-19" "2013-02-06" "2013-02-06" "2013-06-03"
## [13616] "2013-12-06" "2013-06-03" "2013-06-03" "2013-12-06" "2013-06-03"
## [13621] "2011-02-26" "2011-02-26" "2011-02-26" "2012-02-20" "2011-04-02"
## [13626] "2011-04-02" "2011-09-08" "2012-02-20" "2012-02-20" "2011-04-02"
## [13631] "2012-02-20" "2011-04-02" "2011-09-08" "2011-04-02" "2011-04-02"
## [13636] "2012-02-20" "2011-09-08" "2012-02-20" "2012-05-21" "2012-05-21"
## [13641] "2012-05-21" "2012-05-21" "2012-05-21" "2012-12-04" "2012-05-14"
## [13646] "2012-12-04" "2012-12-04" "2012-12-04" "2012-05-14" "2012-05-14"
## [13651] "2012-12-04" "2012-05-14" "2012-05-14" "2012-05-14" "2013-05-05"
## [13656] "2014-01-17" "2014-01-17" "2013-05-05" "2013-05-05" "2013-05-05"
## [13661] "2012-04-25" "2012-04-25" "2012-04-25" "2012-07-06" "2012-07-06"
## [13666] "2012-07-06" "2012-07-06" "2012-07-06" "2012-07-06" "2011-09-17"
## [13671] "2011-09-17" "2012-01-09" "2012-01-09" "2012-01-09" "2011-07-29"
## [13676] "2011-09-23" "2011-09-23" "2011-07-29" "2014-02-20" "2012-09-16"
## [13681] "2011-09-23" "2014-02-20" "2012-09-22" "2012-09-22" "2011-09-23"
## [13686] "2014-02-20" "2014-02-20" "2011-07-29" "2014-02-20" "2012-09-16"
## [13691] "2011-03-18" "2011-03-18" "2013-06-23" "2011-09-11" "2013-06-23"
## [13696] "2013-06-23" "2013-08-14" "2011-09-11" "2013-08-14" "2013-06-23"
## [13701] "2013-06-23" "2013-06-23" "2013-08-14" "2011-06-17" "2011-10-28"
## [13706] "2012-03-20" "2011-06-17" "2011-06-17" "2012-03-20" "2012-03-20"
## [13711] "2011-10-28" "2012-10-18" "2012-10-18" "2012-10-18" "2013-10-24"
## [13716] "2013-10-24" "2012-04-10" "2013-10-24" "2012-04-10" "2013-10-24"
## [13721] "2012-04-10" "2011-12-28" "2011-03-24" "2011-12-28" "2011-12-28"
## [13726] "2011-03-24" "2011-12-28" "2011-03-24" "2011-12-28" "2011-03-24"
## [13731] "2011-12-01" "2012-09-06" "2013-12-30" "2011-11-23" "2011-12-01"
## [13736] "2011-11-23" "2011-11-23" "2013-12-30" "2011-12-01" "2011-11-23"
## [13741] "2012-09-06" "2013-12-30" "2011-11-23" "2011-11-23" "2013-06-01"
## [13746] "2012-10-16" "2011-07-17" "2013-01-04" "2011-07-17" "2011-07-17"
## [13751] "2013-06-01" "2011-07-17" "2013-01-04" "2012-10-16" "2011-07-17"
## [13756] "2011-07-17" "2013-06-01" "2012-08-21" "2012-08-21" "2012-08-08"
## [13761] "2011-05-04" "2012-08-21" "2012-08-08" "2012-08-08" "2011-05-04"
## [13766] "2011-05-04" "2012-08-08" "2012-08-08" "2012-08-21" "2012-08-21"
## [13771] "2012-04-01" "2013-03-06" "2013-03-06" "2012-04-01" "2012-04-01"
## [13776] "2013-03-06" "2012-04-01" "2012-04-01" "2013-07-22" "2013-07-24"
## [13781] "2013-07-24" "2013-07-22" "2013-07-24" "2012-06-06" "2013-07-22"
## [13786] "2012-06-06" "2013-08-25" "2013-08-25" "2013-08-25" "2013-07-24"
## [13791] "2014-01-04" "2013-07-22" "2014-01-04" "2012-06-06" "2014-01-04"
## [13796] "2012-06-06" "2014-01-04" "2014-01-04" "2012-06-06" "2013-05-07"
## [13801] "2013-10-09" "2013-05-07" "2011-07-21" "2011-07-21" "2011-07-21"
## [13806] "2012-05-07" "2012-05-07" "2011-07-21" "2013-10-09" "2013-04-30"
## [13811] "2013-04-30" "2014-01-12" "2014-01-12" "2014-01-12" "2013-04-30"
## [13816] "2014-01-01" "2013-06-12" "2014-01-01" "2011-09-14" "2013-08-14"
## [13821] "2013-06-12" "2013-08-01" "2013-06-12" "2013-06-12" "2011-09-14"
## [13826] "2013-08-14" "2014-01-01" "2013-06-12" "2013-08-01" "2013-06-12"
## [13831] "2013-08-01" "2013-08-14" "2014-01-01" "2013-08-14" "2014-01-01"
## [13836] "2013-01-17" "2012-02-20" "2013-01-17" "2012-02-20" "2013-01-17"
## [13841] "2012-02-20" "2012-09-24" "2012-12-25" "2012-07-07" "2012-07-07"
## [13846] "2012-09-24" "2012-12-25" "2012-07-07" "2012-12-25" "2012-09-05"
## [13851] "2012-09-05" "2012-09-05" "2012-09-05" "2012-09-05" "2013-05-27"
## [13856] "2012-09-17" "2012-09-17" "2013-05-24" "2013-12-05" "2013-05-27"
## [13861] "2013-06-02" "2012-09-17" "2013-09-07" "2013-12-05" "2013-09-07"
## [13866] "2013-06-02" "2013-09-07" "2012-09-17" "2013-12-05" "2013-05-27"
## [13871] "2012-09-17" "2013-06-02" "2013-09-07" "2013-05-24" "2013-09-07"
## [13876] "2013-06-02" "2013-05-24" "2012-04-22" "2012-05-02" "2014-01-20"
## [13881] "2012-04-22" "2012-05-02" "2014-01-20" "2014-01-20" "2012-04-22"
## [13886] "2014-01-20" "2014-01-20" "2012-05-02" "2014-01-20" "2011-11-08"
## [13891] "2011-11-08" "2011-11-08" "2011-11-08" "2011-11-08" "2013-03-22"
## [13896] "2013-03-22" "2013-03-22" "2012-11-19" "2012-11-19" "2013-03-22"
## [13901] "2013-03-22" "2012-11-19" "2012-11-19" "2011-05-29" "2011-05-29"
## [13906] "2011-05-29" "2013-04-04" "2011-05-29" "2013-04-04" "2011-05-29"
## [13911] "2011-05-02" "2011-05-04" "2011-05-02" "2011-05-04" "2011-05-04"
## [13916] "2011-05-02" "2011-05-02" "2011-05-04" "2011-05-04" "2011-05-02"
## [13921] "2012-02-13" "2012-07-28" "2012-11-16" "2011-08-03" "2012-07-28"
## [13926] "2011-08-03" "2012-02-13" "2011-08-11" "2011-08-11" "2012-02-13"
## [13931] "2012-07-28" "2012-02-13" "2012-01-07" "2012-01-07" "2012-02-13"
## [13936] "2012-07-28" "2012-01-07" "2012-07-28" "2012-11-16" "2012-01-07"
## [13941] "2012-11-16" "2012-07-28" "2012-01-07" "2011-12-03" "2011-12-03"
## [13946] "2012-02-17" "2012-02-17" "2012-02-17" "2012-02-17" "2012-02-17"
## [13951] "2012-07-23" "2012-07-23" "2012-07-23" "2012-07-23" "2012-07-23"
## [13956] "2013-03-17" "2011-12-22" "2011-12-22" "2014-02-17" "2013-03-17"
## [13961] "2011-12-22" "2014-02-17" "2014-02-17" "2013-03-18" "2014-02-17"
## [13966] "2011-12-22" "2013-03-18" "2011-12-19" "2011-12-22" "2011-12-19"
## [13971] "2011-12-19" "2013-03-18" "2011-12-19" "2011-12-22" "2011-12-19"
## [13976] "2011-10-13" "2011-10-06" "2013-09-27" "2013-09-27" "2011-10-13"
## [13981] "2011-10-11" "2011-10-06" "2011-03-09" "2011-10-11" "2011-10-06"
## [13986] "2013-09-27" "2011-10-13" "2011-03-09" "2011-03-09" "2011-03-09"
## [13991] "2011-03-09" "2011-10-11" "2013-04-14" "2013-04-14" "2013-04-14"
## [13996] "2013-04-14" "2012-10-25" "2012-10-25" "2013-04-14" "2012-10-25"
## [14001] "2012-03-27" "2012-09-09" "2012-09-09" "2012-03-27" "2012-09-18"
## [14006] "2012-09-18" "2012-02-06" "2014-01-12" "2014-01-12" "2014-01-12"
## [14011] "2012-02-06" "2014-01-12" "2014-01-12" "2014-01-12" "2012-07-25"
## [14016] "2012-07-25" "2012-01-07" "2012-01-07" "2012-01-07" "2013-06-12"
## [14021] "2013-06-12" "2012-01-07" "2013-06-16" "2013-06-16" "2013-06-16"
## [14026] "2013-06-16" "2012-01-07" "2013-06-12" "2013-06-12" "2011-04-02"
## [14031] "2011-04-02" "2011-04-02" "2011-04-26" "2011-04-26" "2011-12-09"
## [14036] "2011-12-09" "2013-05-30" "2011-04-26" "2013-05-30" "2011-12-09"
## [14041] "2013-05-30" "2013-08-27" "2013-08-27" "2013-11-23" "2013-11-23"
## [14046] "2011-07-17" "2011-07-17" "2011-07-17" "2011-07-17" "2011-07-17"
## [14051] "2013-04-02" "2013-04-02" "2013-04-02" "2011-02-01" "2011-12-06"
## [14056] "2013-04-02" "2013-04-15" "2013-04-15" "2011-02-01" "2013-04-02"
## [14061] "2011-12-06" "2011-09-13" "2011-09-13" "2014-02-19" "2014-02-19"
## [14066] "2014-02-19" "2011-09-13" "2012-08-15" "2011-09-13" "2012-08-15"
## [14071] "2012-08-15" "2011-09-13" "2014-02-19" "2012-08-15" "2012-08-15"
## [14076] "2011-03-22" "2011-03-22" "2011-03-22" "2011-05-02" "2011-03-22"
## [14081] "2011-05-02" "2011-05-02" "2011-05-02" "2011-03-22" "2011-05-02"
## [14086] "2012-02-25" "2012-02-25" "2012-03-02" "2012-03-02" "2012-03-02"
## [14091] "2012-03-02" "2012-02-25" "2012-02-25" "2012-02-25" "2012-03-02"
## [14096] "2012-10-03" "2012-10-03" "2012-10-03" "2011-10-19" "2011-10-24"
## [14101] "2012-11-04" "2011-10-24" "2012-11-04" "2011-10-19" "2012-11-04"
## [14106] "2013-10-15" "2013-10-15" "2013-10-15" "2014-02-11" "2014-02-11"
## [14111] "2011-05-26" "2014-01-28" "2014-01-28" "2014-01-28" "2011-05-26"
## [14116] "2013-04-04" "2013-04-04" "2013-04-04" "2013-04-04" "2013-04-04"
## [14121] "2013-04-04" "2013-01-20" "2013-01-20" "2013-01-20" "2013-05-06"
## [14126] "2013-05-06" "2013-05-06" "2013-05-06" "2012-03-08" "2012-03-08"
## [14131] "2012-03-08" "2012-03-05" "2012-03-05" "2012-03-08" "2012-03-05"
## [14136] "2012-03-05" "2012-03-05" "2012-03-08" "2012-03-05" "2012-03-08"
## [14141] "2013-09-20" "2013-09-20" "2013-09-20" "2013-09-20" "2011-11-26"
## [14146] "2011-11-26" "2013-07-30" "2013-09-20" "2013-07-30" "2013-07-30"
## [14151] "2012-12-02" "2013-07-30" "2013-09-20" "2013-07-30" "2013-07-30"
## [14156] "2012-12-02" "2011-12-27" "2011-12-20" "2011-12-27" "2011-12-20"
## [14161] "2011-12-27" "2011-12-20" "2012-04-02" "2012-04-02" "2012-04-27"
## [14166] "2012-04-27" "2011-08-11" "2011-08-11" "2011-08-11" "2011-08-11"
## [14171] "2011-08-11" "2011-08-11" "2011-09-26" "2011-09-26" "2013-10-06"
## [14176] "2013-10-06" "2013-10-06" "2013-10-06" "2014-01-11" "2012-07-15"
## [14181] "2014-01-11" "2011-10-14" "2011-10-14" "2012-07-15" "2014-01-11"
## [14186] "2013-10-22" "2013-10-22" "2013-10-22" "2014-01-02" "2012-04-21"
## [14191] "2014-01-02" "2014-01-02" "2012-04-11" "2012-04-11" "2012-04-11"
## [14196] "2012-04-21" "2012-04-21" "2012-04-11" "2014-01-02" "2012-04-21"
## [14201] "2012-04-21" "2012-04-11" "2014-01-02" "2011-09-12" "2011-02-17"
## [14206] "2011-02-17" "2011-02-17" "2011-07-07" "2011-07-07" "2013-03-15"
## [14211] "2011-07-07" "2011-07-07" "2011-07-07" "2013-03-15" "2013-03-15"
## [14216] "2011-09-12" "2012-02-22" "2011-07-01" "2011-07-11" "2012-02-22"
## [14221] "2011-07-11" "2012-05-05" "2012-05-05" "2011-07-01" "2012-05-05"
## [14226] "2012-02-22" "2011-07-01" "2011-07-11" "2011-12-29" "2011-12-29"
## [14231] "2013-05-28" "2011-12-29" "2013-05-28" "2011-12-29" "2011-12-29"
## [14236] "2013-05-28" "2011-04-26" "2011-11-13" "2011-04-26" "2011-04-26"
## [14241] "2011-04-26" "2011-11-13" "2013-08-16" "2012-10-18" "2012-10-18"
## [14246] "2013-08-16" "2012-12-04" "2013-12-22" "2011-04-09" "2011-04-09"
## [14251] "2011-04-09" "2013-12-22" "2011-04-09" "2012-12-04" "2011-04-09"
## [14256] "2012-12-04" "2011-03-12" "2012-08-17" "2012-08-22" "2012-08-22"
## [14261] "2012-08-22" "2012-08-22" "2012-08-17" "2011-03-12" "2012-08-22"
## [14266] "2011-03-12" "2011-03-10" "2011-03-12" "2011-03-12" "2011-03-10"
## [14271] "2012-08-17" "2012-08-17" "2012-08-17" "2011-03-10" "2012-09-25"
## [14276] "2013-09-21" "2014-01-13" "2012-10-02" "2012-10-02" "2012-09-25"
## [14281] "2012-07-11" "2012-10-02" "2014-01-13" "2012-09-25" "2012-07-11"
## [14286] "2013-09-21" "2012-10-05" "2014-01-13" "2012-10-05" "2012-10-05"
## [14291] "2012-09-25" "2012-09-25" "2012-05-30" "2012-05-30" "2012-05-30"
## [14296] "2012-05-30" "2012-05-30" "2011-03-06" "2011-03-06" "2011-03-06"
## [14301] "2011-03-06" "2011-03-06" "2014-02-20" "2014-02-20" "2014-02-20"
## [14306] "2014-02-20" "2014-02-20" "2011-07-18" "2011-10-14" "2013-03-15"
## [14311] "2011-07-13" "2013-03-18" "2011-07-13" "2011-10-16" "2013-03-15"
## [14316] "2011-10-14" "2011-07-18" "2012-06-09" "2013-03-15" "2011-10-16"
## [14321] "2011-10-14" "2011-10-16" "2013-03-18" "2012-06-09" "2011-10-14"
## [14326] "2013-03-18" "2013-03-18" "2011-10-16" "2011-10-14" "2013-03-15"
## [14331] "2013-03-15" "2011-07-18" "2012-06-09" "2011-10-16" "2013-03-18"
## [14336] "2011-05-19" "2011-03-22" "2013-12-11" "2013-12-11" "2011-03-22"
## [14341] "2011-05-19" "2013-12-11" "2013-12-26" "2013-06-08" "2013-12-26"
## [14346] "2013-06-25" "2013-06-25" "2013-06-08" "2013-12-08" "2013-12-08"
## [14351] "2013-12-07" "2013-12-07" "2013-12-07" "2013-12-07" "2013-12-07"
## [14356] "2012-03-06" "2012-03-06" "2013-09-14" "2013-06-06" "2013-06-06"
## [14361] "2013-09-14" "2013-08-18" "2013-08-18" "2013-09-14" "2013-09-14"
## [14366] "2013-08-18" "2013-09-14" "2013-06-06" "2012-03-12" "2012-03-04"
## [14371] "2013-10-27" "2012-03-04" "2012-03-04" "2013-10-27" "2012-03-12"
## [14376] "2012-03-12" "2013-10-27" "2012-07-28" "2011-11-28" "2012-07-28"
## [14381] "2013-10-27" "2011-11-28" "2012-07-28" "2012-07-28" "2011-11-28"
## [14386] "2011-10-11" "2013-04-28" "2013-09-06" "2011-10-05" "2011-10-11"
## [14391] "2013-09-15" "2013-04-28" "2013-09-15" "2011-10-11" "2011-10-11"
## [14396] "2013-09-06" "2013-04-28" "2011-10-05" "2011-10-05" "2013-10-25"
## [14401] "2011-10-05" "2011-10-05" "2013-04-28" "2013-04-28" "2011-10-05"
## [14406] "2011-10-11" "2013-10-25" "2011-10-11" "2012-06-28" "2012-06-28"
## [14411] "2012-06-28" "2012-06-28" "2012-06-28" "2012-11-24" "2013-04-04"
## [14416] "2012-11-24" "2012-09-28" "2013-04-04" "2012-09-28" "2013-03-28"
## [14421] "2013-04-04" "2012-11-24" "2012-09-28" "2013-03-28" "2013-03-28"
## [14426] "2012-03-07" "2012-03-07" "2011-12-04" "2011-12-04" "2011-12-04"
## [14431] "2011-09-18" "2011-09-18" "2011-09-18" "2011-08-10" "2011-08-10"
## [14436] "2011-08-10" "2013-08-02" "2012-12-13" "2011-08-10" "2011-08-10"
## [14441] "2013-08-02" "2012-12-13" "2013-08-02" "2012-12-13" "2012-12-13"
## [14446] "2012-12-13" "2011-08-10" "2012-12-13" "2011-11-08" "2014-02-01"
## [14451] "2014-02-01" "2011-11-08" "2012-07-22" "2013-02-20" "2013-08-22"
## [14456] "2012-07-22" "2013-02-20" "2013-08-22" "2013-08-22" "2013-02-20"
## [14461] "2012-07-22" "2013-02-20" "2012-07-22" "2012-07-22" "2013-02-20"
## [14466] "2012-11-05" "2013-04-22" "2013-07-13" "2013-04-21" "2013-04-21"
## [14471] "2013-04-22" "2012-11-05" "2013-04-21" "2013-04-21" "2013-07-13"
## [14476] "2012-11-05" "2013-07-13" "2013-04-22" "2013-07-13" "2013-04-22"
## [14481] "2013-07-13" "2012-11-05" "2013-04-14" "2011-11-12" "2013-04-14"
## [14486] "2011-06-25" "2011-11-12" "2011-06-25" "2012-02-01" "2013-04-14"
## [14491] "2011-11-12" "2013-04-14" "2013-04-14" "2011-11-12" "2011-06-25"
## [14496] "2012-02-06" "2013-08-14" "2013-04-14" "2011-11-12" "2013-08-14"
## [14501] "2011-11-12" "2012-02-06" "2012-02-01" "2011-06-22" "2011-06-22"
## [14506] "2011-10-08" "2011-06-22" "2011-06-22" "2011-06-22" "2011-10-08"
## [14511] "2013-01-28" "2011-11-01" "2012-02-01" "2012-05-08" "2011-11-01"
## [14516] "2012-02-01" "2012-02-01" "2012-05-08" "2012-05-08" "2011-11-01"
## [14521] "2013-01-28" "2012-05-08" "2011-11-01" "2011-11-01" "2013-01-28"
## [14526] "2012-05-08" "2012-11-25" "2012-11-25" "2011-04-12" "2011-04-12"
## [14531] "2011-04-12" "2013-05-27" "2013-05-27" "2011-11-10" "2011-11-10"
## [14536] "2013-05-27" "2011-11-10" "2011-08-26" "2013-05-27" "2012-06-29"
## [14541] "2012-06-29" "2011-11-10" "2012-06-29" "2013-05-27" "2011-11-10"
## [14546] "2011-08-26" "2013-05-27" "2011-08-26" "2012-07-15" "2012-07-15"
## [14551] "2012-10-11" "2012-07-15" "2012-07-15" "2012-10-11" "2012-10-11"
## [14556] "2012-07-15" "2012-10-11" "2012-10-11" "2012-02-06" "2012-08-30"
## [14561] "2012-02-06" "2013-08-27" "2013-08-27" "2012-02-06" "2012-02-06"
## [14566] "2012-02-06" "2013-08-27" "2012-08-30" "2012-08-30" "2012-11-02"
## [14571] "2011-03-17" "2012-11-02" "2011-03-17" "2012-11-02" "2012-11-02"
## [14576] "2012-11-25" "2011-07-02" "2011-07-02" "2012-02-02" "2013-12-22"
## [14581] "2013-12-22" "2012-11-25" "2013-12-22" "2012-02-02" "2013-12-22"
## [14586] "2011-07-02" "2011-07-02" "2011-07-02" "2012-02-02" "2011-03-01"
## [14591] "2011-07-02" "2013-12-22" "2011-03-01" "2013-11-06" "2013-03-03"
## [14596] "2013-10-31" "2013-10-31" "2013-11-06" "2013-11-06" "2013-10-31"
## [14601] "2013-10-31" "2013-03-10" "2013-03-03" "2013-11-06" "2013-03-10"
## [14606] "2011-07-27" "2011-07-16" "2013-09-03" "2013-09-03" "2011-07-27"
## [14611] "2011-07-16" "2013-09-03" "2011-07-27" "2011-07-13" "2012-09-09"
## [14616] "2012-09-09" "2012-08-30" "2012-05-27" "2012-08-30" "2012-05-27"
## [14621] "2012-05-27" "2011-07-13" "2011-07-13" "2012-05-27" "2012-05-27"
## [14626] "2012-09-17" "2012-09-17" "2013-01-07" "2012-09-17" "2013-01-07"
## [14631] "2013-01-07" "2013-11-23" "2013-01-07" "2013-01-07" "2013-11-23"
## [14636] "2013-12-04" "2011-10-13" "2011-07-20" "2011-07-20" "2011-07-20"
## [14641] "2013-12-04" "2011-07-20" "2013-12-04" "2011-10-13" "2011-10-13"
## [14646] "2011-03-19" "2011-10-13" "2011-07-20" "2011-10-13" "2011-10-16"
## [14651] "2011-03-19" "2013-12-04" "2011-03-19" "2011-10-16" "2011-03-19"
## [14656] "2013-12-04" "2011-03-19" "2011-10-16" "2012-05-26" "2012-05-26"
## [14661] "2013-11-10" "2013-11-10" "2012-02-23" "2012-10-19" "2012-10-19"
## [14666] "2012-02-23" "2012-02-23" "2012-02-23" "2012-10-19" "2012-10-19"
## [14671] "2012-02-23" "2012-10-19" "2013-12-18" "2011-12-24" "2013-12-18"
## [14676] "2013-12-18" "2011-12-24" "2011-12-16" "2012-05-24" "2011-12-16"
## [14681] "2012-05-24" "2012-05-24" "2012-05-24" "2012-05-24" "2011-04-13"
## [14686] "2013-01-06" "2011-04-13" "2013-03-13" "2013-03-13" "2013-01-06"
## [14691] "2013-01-06" "2013-01-06" "2011-04-13" "2013-02-08" "2012-04-21"
## [14696] "2012-09-06" "2012-04-27" "2013-02-08" "2012-04-27" "2013-02-08"
## [14701] "2013-02-08" "2012-04-27" "2012-04-21" "2013-02-08" "2012-09-06"
## [14706] "2012-04-21" "2012-07-18" "2012-12-14" "2012-12-14" "2011-06-23"
## [14711] "2012-07-18" "2011-06-23" "2013-11-19" "2012-12-14" "2013-11-19"
## [14716] "2013-12-31" "2011-11-08" "2013-02-04" "2013-02-04" "2013-12-31"
## [14721] "2013-12-31" "2013-02-04" "2011-11-08" "2013-12-31" "2011-12-02"
## [14726] "2011-08-19" "2011-12-02" "2011-08-19" "2011-07-14" "2011-07-14"
## [14731] "2013-04-12" "2013-04-12" "2013-04-12" "2012-03-15" "2013-04-12"
## [14736] "2011-07-14" "2011-06-09" "2013-04-12" "2011-07-14" "2011-06-09"
## [14741] "2013-04-12" "2011-06-09" "2012-03-15" "2012-03-15" "2011-06-09"
## [14746] "2012-03-15" "2012-03-15" "2013-11-05" "2013-11-05" "2013-11-05"
## [14751] "2011-10-15" "2013-11-05" "2011-10-15" "2011-07-27" "2013-03-13"
## [14756] "2011-07-27" "2013-08-21" "2014-01-28" "2013-08-21" "2013-08-21"
## [14761] "2013-08-21" "2011-07-21" "2013-03-13" "2011-07-21" "2014-01-28"
## [14766] "2014-01-28" "2013-04-09" "2013-05-04" "2013-04-09" "2013-04-09"
## [14771] "2013-05-04" "2013-05-04" "2011-06-03" "2012-06-07" "2013-06-14"
## [14776] "2013-06-21" "2012-06-07" "2013-03-17" "2013-06-14" "2013-06-21"
## [14781] "2013-06-21" "2013-06-14" "2013-06-14" "2012-06-07" "2011-06-03"
## [14786] "2013-03-17" "2013-06-21" "2013-06-21" "2013-03-17" "2013-03-17"
## [14791] "2013-03-17" "2011-06-03" "2013-06-14" "2013-01-04" "2013-01-04"
## [14796] "2013-03-29" "2013-03-29" "2013-01-04" "2013-03-29" "2012-04-23"
## [14801] "2012-04-26" "2012-04-23" "2012-04-23" "2012-04-26" "2012-04-26"
## [14806] "2013-08-24" "2012-12-04" "2013-08-24" "2013-08-24" "2012-12-04"
## [14811] "2011-04-09" "2011-04-09" "2011-04-09" "2011-04-09" "2012-02-24"
## [14816] "2012-02-15" "2012-02-04" "2011-04-09" "2012-02-15" "2012-02-04"
## [14821] "2012-02-15" "2012-02-04" "2012-02-24" "2012-02-15" "2012-02-04"
## [14826] "2012-02-24" "2012-02-24" "2012-02-04" "2012-05-18" "2012-05-18"
## [14831] "2012-05-18" "2012-05-18" "2012-05-18" "2013-02-22" "2013-08-14"
## [14836] "2013-02-22" "2013-08-21" "2013-08-21" "2013-08-14" "2013-05-17"
## [14841] "2013-02-22" "2013-02-22" "2013-02-22" "2013-05-17" "2013-08-21"
## [14846] "2013-08-14" "2013-04-08" "2014-02-03" "2013-08-18" "2013-08-18"
## [14851] "2014-02-03" "2014-02-03" "2014-02-03" "2014-02-03" "2013-08-18"
## [14856] "2013-08-18" "2013-04-08" "2014-02-03" "2013-08-18" "2011-01-26"
## [14861] "2011-08-05" "2011-03-03" "2011-03-03" "2011-01-26" "2011-01-26"
## [14866] "2011-08-05" "2011-08-05" "2013-12-24" "2011-10-24" "2011-07-26"
## [14871] "2011-07-26" "2013-12-24" "2011-07-26" "2011-07-26" "2012-01-29"
## [14876] "2011-07-17" "2011-10-24" "2012-01-29" "2011-07-17" "2011-07-17"
## [14881] "2011-07-17" "2013-12-24" "2012-02-20" "2012-02-20" "2011-05-04"
## [14886] "2011-12-04" "2011-05-04" "2011-12-04" "2013-03-09" "2011-03-26"
## [14891] "2011-08-16" "2011-08-16" "2011-03-26" "2011-03-26" "2011-12-11"
## [14896] "2011-08-16" "2011-08-16" "2011-05-04" "2013-03-09" "2011-05-04"
## [14901] "2011-12-11" "2011-08-16" "2013-03-09" "2013-05-31" "2013-05-31"
## [14906] "2013-12-23" "2013-12-23" "2013-05-31" "2013-12-23" "2012-07-03"
## [14911] "2012-06-24" "2012-10-15" "2012-10-15" "2012-10-15" "2012-06-24"
## [14916] "2012-07-03" "2011-09-10" "2012-12-21" "2011-09-10" "2011-07-23"
## [14921] "2011-07-23" "2012-12-21" "2011-10-04" "2011-09-10" "2011-10-04"
## [14926] "2012-12-21" "2013-10-04" "2013-10-04" "2011-06-06" "2013-03-25"
## [14931] "2011-06-06" "2011-06-06" "2013-03-25" "2011-06-06" "2013-03-25"
## [14936] "2011-05-08" "2013-10-29" "2012-06-02" "2013-10-29" "2013-10-29"
## [14941] "2013-10-29" "2012-06-02" "2011-03-20" "2011-03-20" "2011-03-20"
## [14946] "2011-03-20" "2012-06-02" "2011-03-20" "2011-05-08" "2013-10-29"
## [14951] "2011-12-28" "2011-12-28" "2011-05-08" "2011-05-08" "2012-06-02"
## [14956] "2012-06-02" "2012-10-19" "2012-10-19" "2012-10-19" "2012-01-10"
## [14961] "2012-01-10" "2012-12-12" "2011-09-06" "2011-09-06" "2013-12-26"
## [14966] "2011-09-06" "2013-12-26" "2011-09-06" "2011-09-06" "2011-09-04"
## [14971] "2011-09-04" "2013-12-26" "2012-12-12" "2011-09-04" "2012-12-12"
## [14976] "2012-12-12" "2011-09-04" "2013-12-26" "2011-09-04" "2012-12-12"
## [14981] "2012-01-07" "2011-10-11" "2011-10-11" "2013-09-26" "2011-10-11"
## [14986] "2012-01-07" "2012-01-07" "2013-09-26" "2013-10-04" "2013-10-04"
## [14991] "2013-07-11" "2012-02-27" "2013-07-11" "2012-02-27" "2011-08-26"
## [14996] "2011-08-26" "2011-08-26" "2012-07-25" "2011-08-26" "2012-07-25"
## [15001] "2011-07-04" "2013-07-27" "2011-08-26" "2013-07-27" "2011-07-04"
## [15006] "2011-07-04" "2012-07-25" "2012-07-25" "2011-07-04" "2012-07-25"
## [15011] "2011-07-04" "2011-06-21" "2011-05-14" "2011-07-28" "2011-06-21"
## [15016] "2011-07-28" "2011-05-14" "2011-05-14" "2011-07-28" "2011-05-14"
## [15021] "2011-05-14" "2011-05-31" "2012-09-22" "2012-09-22" "2011-05-31"
## [15026] "2011-05-31" "2012-09-22" "2011-05-18" "2012-08-04" "2012-08-04"
## [15031] "2012-08-04" "2011-05-18" "2012-08-04" "2011-05-18" "2011-02-23"
## [15036] "2013-04-09" "2011-02-23" "2013-05-13" "2013-04-09" "2011-02-23"
## [15041] "2011-02-23" "2013-05-13" "2011-02-23" "2013-05-22" "2013-04-09"
## [15046] "2013-05-22" "2011-02-23" "2013-03-27" "2013-02-04" "2013-03-27"
## [15051] "2012-09-30" "2012-09-30" "2013-03-27" "2013-03-27" "2013-05-30"
## [15056] "2013-03-27" "2011-05-02" "2013-02-04" "2012-09-30" "2013-05-30"
## [15061] "2013-05-30" "2011-05-02" "2012-08-13" "2012-07-07" "2012-07-07"
## [15066] "2012-08-13" "2012-08-13" "2012-08-13" "2013-10-27" "2013-10-27"
## [15071] "2012-07-07" "2013-10-27" "2012-02-18" "2013-06-09" "2012-02-18"
## [15076] "2012-02-21" "2013-02-05" "2012-02-18" "2012-02-18" "2013-02-05"
## [15081] "2012-02-21" "2013-06-09" "2012-02-18" "2013-02-05" "2012-02-21"
## [15086] "2012-02-21" "2012-02-21" "2013-06-09" "2012-03-07" "2012-03-07"
## [15091] "2012-03-07" "2012-03-07" "2012-03-07" "2012-01-10" "2011-05-03"
## [15096] "2012-01-10" "2011-05-03" "2011-06-20" "2012-03-17" "2013-10-22"
## [15101] "2011-04-09" "2013-07-31" "2012-03-17" "2011-04-09" "2012-03-17"
## [15106] "2012-03-17" "2011-06-20" "2013-07-31" "2012-03-17" "2011-04-09"
## [15111] "2011-06-20" "2013-10-22" "2011-04-09" "2011-06-20" "2011-06-20"
## [15116] "2011-12-15" "2011-04-09" "2013-10-22" "2011-04-09" "2011-12-15"
## [15121] "2011-06-16" "2011-06-16" "2011-12-07" "2011-12-07" "2011-12-07"
## [15126] "2011-12-07" "2011-09-10" "2011-09-10" "2012-04-24" "2011-05-17"
## [15131] "2012-04-24" "2011-05-17" "2012-04-24" "2013-06-06" "2012-04-24"
## [15136] "2013-06-06" "2011-05-17" "2011-05-17" "2011-05-17" "2012-04-24"
## [15141] "2013-06-06" "2013-07-03" "2013-07-03" "2013-07-03" "2014-01-18"
## [15146] "2014-01-18" "2013-07-03" "2013-07-03" "2014-01-18" "2011-08-06"
## [15151] "2011-08-06" "2011-08-06" "2011-05-29" "2011-05-29" "2011-08-06"
## [15156] "2011-08-06" "2011-07-04" "2011-03-26" "2011-07-05" "2011-07-04"
## [15161] "2011-03-26" "2011-03-26" "2011-07-05" "2013-11-12" "2013-11-12"
## [15166] "2013-06-05" "2013-06-05" "2013-11-02" "2013-11-02" "2013-06-05"
## [15171] "2013-02-06" "2013-02-06" "2013-02-06" "2013-02-06" "2013-02-06"
## [15176] "2012-05-17" "2012-05-16" "2012-05-17" "2012-05-16" "2012-05-25"
## [15181] "2012-05-25" "2012-05-25" "2012-06-02" "2012-06-02" "2012-06-02"
## [15186] "2014-02-11" "2012-06-02" "2014-02-11" "2012-05-25" "2012-05-25"
## [15191] "2012-06-02" "2013-10-17" "2012-06-03" "2012-06-03" "2013-10-17"
## [15196] "2013-10-17" "2012-06-03" "2013-10-17" "2013-10-17" "2012-06-03"
## [15201] "2012-06-03" "2011-12-29" "2011-12-29" "2011-12-29" "2011-12-29"
## [15206] "2013-12-24" "2011-12-29" "2011-12-29" "2013-12-24" "2013-12-24"
## [15211] "2013-12-24" "2013-12-24" "2013-04-23" "2013-04-23" "2013-04-20"
## [15216] "2011-06-16" "2013-04-23" "2011-06-16" "2011-06-16" "2013-04-20"
## [15221] "2013-05-14" "2013-05-14" "2011-04-17" "2012-12-01" "2013-06-21"
## [15226] "2013-05-14" "2013-06-21" "2011-04-17" "2011-04-17" "2012-12-01"
## [15231] "2011-04-17" "2012-12-01" "2011-04-17" "2013-06-21" "2012-12-31"
## [15236] "2012-11-27" "2011-04-16" "2012-11-27" "2012-11-27" "2012-11-27"
## [15241] "2012-12-31" "2011-04-16" "2012-11-27" "2011-04-16" "2013-08-31"
## [15246] "2013-08-31" "2013-05-13" "2013-05-13" "2013-05-07" "2013-05-07"
## [15251] "2013-05-13" "2013-05-07" "2012-08-28" "2013-10-14" "2012-08-28"
## [15256] "2012-08-15" "2013-10-14" "2012-08-15" "2012-07-03" "2012-07-03"
## [15261] "2013-04-07" "2013-04-07" "2013-04-07" "2013-04-07" "2013-04-07"
## [15266] "2013-06-23" "2012-12-11" "2011-06-29" "2011-06-29" "2012-12-11"
## [15271] "2013-06-23" "2013-06-23" "2011-06-29" "2012-12-11" "2011-06-29"
## [15276] "2013-06-23" "2013-10-18" "2013-10-18" "2013-10-18" "2012-04-06"
## [15281] "2011-09-15" "2012-04-06" "2011-09-15" "2012-04-06" "2011-09-20"
## [15286] "2012-04-06" "2012-03-18" "2012-04-06" "2012-03-18" "2011-09-20"
## [15291] "2012-05-27" "2012-05-29" "2012-06-02" "2013-10-24" "2012-06-02"
## [15296] "2012-05-29" "2012-06-02" "2013-10-24" "2012-06-02" "2012-06-02"
## [15301] "2012-05-29" "2012-05-27" "2012-05-27" "2012-05-29" "2012-05-29"
## [15306] "2012-05-27" "2012-05-27" "2013-10-24" "2012-03-29" "2012-09-02"
## [15311] "2012-03-29" "2012-12-03" "2012-08-23" "2012-03-29" "2012-09-02"
## [15316] "2012-12-03" "2012-08-23" "2012-12-03" "2012-04-01" "2012-08-23"
## [15321] "2012-12-03" "2012-04-01" "2012-03-29" "2012-09-02" "2012-09-02"
## [15326] "2012-10-09" "2012-10-09" "2012-10-09" "2012-10-09" "2012-10-09"
## [15331] "2011-07-07" "2011-07-07" "2011-07-07" "2011-07-07" "2011-07-07"
## [15336] "2012-10-28" "2012-10-28" "2012-10-28" "2012-10-27" "2013-09-27"
## [15341] "2013-09-27" "2012-10-27" "2012-02-01" "2011-10-10" "2012-02-01"
## [15346] "2013-09-27" "2011-10-10" "2012-10-27" "2012-08-03" "2012-08-03"
## [15351] "2012-08-03" "2012-08-03" "2012-08-03" "2012-09-18" "2013-09-07"
## [15356] "2013-09-07" "2013-09-07" "2012-09-18" "2013-09-07" "2012-09-18"
## [15361] "2011-07-11" "2011-07-11" "2011-07-11" "2011-08-21" "2012-08-05"
## [15366] "2011-08-21" "2012-08-05" "2012-08-05" "2013-07-13" "2011-08-10"
## [15371] "2011-08-10" "2011-08-10" "2011-08-10" "2012-11-01" "2013-07-13"
## [15376] "2012-11-01" "2011-08-10" "2012-11-01" "2012-11-01" "2011-08-10"
## [15381] "2012-11-01" "2011-09-26" "2013-08-09" "2011-09-26" "2013-08-09"
## [15386] "2013-08-09" "2011-09-26" "2013-08-09" "2013-08-09" "2013-08-09"
## [15391] "2013-06-10" "2013-06-10" "2011-09-26" "2011-09-26" "2013-10-30"
## [15396] "2011-10-10" "2013-10-21" "2013-08-21" "2013-08-21" "2013-03-18"
## [15401] "2013-10-21" "2013-03-18" "2013-08-21" "2013-03-18" "2013-10-30"
## [15406] "2013-08-21" "2013-08-21" "2011-10-10" "2011-10-28" "2012-07-23"
## [15411] "2011-10-28" "2011-10-28" "2012-07-23" "2012-06-11" "2012-06-11"
## [15416] "2012-06-11" "2013-05-01" "2013-05-01" "2012-08-20" "2013-06-02"
## [15421] "2012-08-20" "2012-08-20" "2012-08-20" "2013-06-02" "2012-08-20"
## [15426] "2013-10-18" "2013-10-18" "2013-10-18" "2011-02-13" "2011-02-05"
## [15431] "2011-05-24" "2011-02-05" "2011-05-24" "2011-05-24" "2011-05-24"
## [15436] "2011-02-13" "2012-08-14" "2011-02-05" "2011-02-13" "2011-02-05"
## [15441] "2012-08-14" "2011-05-24" "2012-08-14" "2011-02-13" "2013-09-24"
## [15446] "2013-09-24" "2013-09-24" "2013-09-24" "2013-10-17" "2011-06-07"
## [15451] "2013-05-05" "2011-08-04" "2013-09-24" "2013-10-17" "2013-09-20"
## [15456] "2011-06-07" "2011-08-04" "2013-10-17" "2013-05-05" "2013-09-20"
## [15461] "2011-08-04" "2013-09-20" "2011-09-11" "2011-09-11" "2011-11-16"
## [15466] "2011-11-16" "2011-11-16" "2011-09-11" "2011-09-11" "2011-11-16"
## [15471] "2011-09-11" "2011-11-16" "2013-06-29" "2013-06-29" "2012-10-04"
## [15476] "2012-04-05" "2012-04-05" "2012-10-04" "2013-02-18" "2013-02-18"
## [15481] "2013-11-26" "2013-02-18" "2013-11-26" "2011-11-11" "2013-07-30"
## [15486] "2013-07-30" "2011-11-11" "2011-11-11" "2011-11-11" "2013-07-30"
## [15491] "2011-11-11" "2011-11-11" "2013-07-30" "2012-09-12" "2012-09-12"
## [15496] "2012-09-12" "2011-09-18" "2011-09-18" "2011-09-18" "2013-11-12"
## [15501] "2013-04-29" "2013-11-12" "2013-04-29" "2013-11-12" "2013-04-29"
## [15506] "2012-07-23" "2012-07-23" "2012-07-23" "2012-07-23" "2012-07-23"
## [15511] "2013-07-07" "2013-07-13" "2014-01-09" "2013-07-13" "2013-07-14"
## [15516] "2013-07-14" "2013-07-13" "2013-07-13" "2014-01-09" "2013-07-07"
## [15521] "2013-07-14" "2013-07-13" "2013-07-07" "2014-01-09" "2013-07-07"
## [15526] "2013-07-07" "2013-07-14" "2012-02-23" "2012-03-04" "2012-02-23"
## [15531] "2011-08-17" "2012-03-04" "2012-02-23" "2012-03-04" "2011-08-17"
## [15536] "2011-08-17" "2011-07-01" "2011-12-31" "2011-07-01" "2011-12-31"
## [15541] "2013-01-02" "2011-03-10" "2011-07-01" "2011-03-10" "2013-01-02"
## [15546] "2011-07-01" "2011-09-18" "2011-09-18" "2011-09-18" "2011-09-18"
## [15551] "2011-09-18" "2011-06-13" "2012-06-16" "2012-07-18" "2012-07-18"
## [15556] "2012-06-14" "2012-06-16" "2012-07-18" "2011-06-13" "2011-06-13"
## [15561] "2012-06-14" "2013-10-19" "2013-10-19" "2013-10-19" "2013-10-19"
## [15566] "2013-05-24" "2013-10-19" "2014-01-15" "2013-05-24" "2013-05-24"
## [15571] "2012-05-17" "2014-01-15" "2012-05-17" "2012-05-17" "2011-03-30"
## [15576] "2011-03-30" "2012-08-15" "2012-08-12" "2013-07-14" "2012-08-15"
## [15581] "2013-07-14" "2011-03-30" "2013-07-14" "2012-08-12" "2012-10-06"
## [15586] "2011-04-12" "2011-04-12" "2011-04-12" "2011-04-12" "2012-09-03"
## [15591] "2012-10-06" "2011-04-12" "2011-04-12" "2012-10-06" "2012-09-03"
## [15596] "2012-01-23" "2012-01-23" "2012-01-21" "2012-01-21" "2012-01-23"
## [15601] "2012-01-21" "2012-01-21" "2013-11-15" "2012-01-23" "2012-01-23"
## [15606] "2013-11-15" "2013-11-15" "2012-01-21" "2013-12-30" "2013-12-30"
## [15611] "2013-12-30" "2011-03-16" "2011-03-16" "2011-03-16" "2013-05-04"
## [15616] "2013-05-04" "2013-05-04" "2013-05-04" "2013-05-04" "2013-05-04"
## [15621] "2012-10-03" "2012-01-22" "2012-10-03" "2012-01-22" "2012-01-22"
## [15626] "2012-11-28" "2012-01-22" "2012-10-03" "2012-11-28" "2012-01-22"
## [15631] "2012-01-22" "2013-08-04" "2013-08-04" "2013-07-13" "2013-07-13"
## [15636] "2013-08-04" "2013-07-13" "2013-01-15" "2013-01-15" "2013-01-15"
## [15641] "2013-01-15" "2012-04-12" "2013-01-15" "2012-04-12" "2011-12-24"
## [15646] "2011-12-24" "2013-10-31" "2012-01-14" "2012-01-14" "2011-12-24"
## [15651] "2012-01-14" "2013-10-31" "2013-04-01" "2011-11-25" "2011-12-24"
## [15656] "2013-10-31" "2011-11-25" "2013-04-01" "2011-12-24" "2011-11-25"
## [15661] "2013-10-31" "2013-10-31" "2011-11-25" "2013-04-01" "2011-11-25"
## [15666] "2011-07-30" "2011-07-21" "2011-07-30" "2011-07-21" "2011-07-30"
## [15671] "2011-07-21" "2012-11-19" "2011-12-11" "2012-11-19" "2012-11-19"
## [15676] "2011-11-12" "2012-11-19" "2012-11-19" "2011-12-11" "2011-11-12"
## [15681] "2011-09-18" "2011-09-18" "2012-11-20" "2013-12-30" "2012-11-20"
## [15686] "2013-12-28" "2013-12-30" "2013-12-30" "2013-12-30" "2012-11-20"
## [15691] "2013-12-28" "2013-12-28" "2013-12-28" "2013-12-30" "2011-03-04"
## [15696] "2012-11-20" "2013-12-28" "2012-11-20" "2011-03-04" "2013-12-28"
## [15701] "2011-12-21" "2013-12-30" "2011-12-21" "2013-11-27" "2012-05-28"
## [15706] "2012-05-28" "2012-05-28" "2013-11-27" "2012-05-28" "2012-05-28"
## [15711] "2014-01-03" "2012-03-29" "2014-01-03" "2014-01-03" "2012-03-29"
## [15716] "2013-07-30" "2013-07-30" "2011-11-21" "2011-07-26" "2011-07-26"
## [15721] "2011-07-26" "2011-11-21" "2012-11-19" "2011-07-26" "2011-07-26"
## [15726] "2011-11-21" "2011-11-21" "2012-11-19" "2011-07-26" "2011-11-21"
## [15731] "2012-08-25" "2011-10-13" "2011-10-13" "2012-08-25" "2012-08-19"
## [15736] "2012-08-25" "2013-11-21" "2012-08-25" "2012-08-19" "2012-08-19"
## [15741] "2012-08-19" "2012-08-25" "2013-11-21" "2012-08-19" "2013-07-29"
## [15746] "2013-07-29" "2014-02-04" "2012-06-02" "2012-06-02" "2012-06-02"
## [15751] "2012-06-02" "2014-02-04" "2014-02-04" "2012-06-02" "2014-02-04"
## [15756] "2012-06-02" "2013-09-03" "2013-09-03" "2012-06-02" "2012-06-02"
## [15761] "2013-09-03" "2013-09-03" "2012-06-02" "2012-06-02" "2011-05-07"
## [15766] "2013-10-27" "2013-04-24" "2011-05-07" "2013-09-01" "2013-10-27"
## [15771] "2013-09-01" "2011-05-07" "2011-05-07" "2013-04-24" "2013-04-24"
## [15776] "2011-05-07" "2013-04-24" "2011-05-07" "2013-10-27" "2012-05-16"
## [15781] "2011-03-16" "2013-10-01" "2011-12-05" "2011-07-15" "2011-12-05"
## [15786] "2011-12-05" "2012-05-16" "2011-03-16" "2011-12-05" "2013-10-01"
## [15791] "2012-05-16" "2012-05-16" "2011-07-15" "2011-12-05" "2013-10-01"
## [15796] "2011-03-16" "2012-05-16" "2012-08-11" "2012-08-20" "2013-01-01"
## [15801] "2012-08-20" "2012-08-11" "2013-02-22" "2011-10-22" "2013-01-01"
## [15806] "2011-10-22" "2013-01-01" "2012-08-20" "2013-01-01" "2013-02-22"
## [15811] "2011-10-22" "2011-10-22" "2011-10-22" "2011-10-22" "2013-01-01"
## [15816] "2013-02-22" "2012-08-20" "2012-12-14" "2012-12-14" "2012-11-29"
## [15821] "2012-12-14" "2013-11-23" "2012-11-29" "2013-11-23" "2012-11-29"
## [15826] "2012-11-29" "2013-11-23" "2013-11-23" "2013-11-23" "2013-11-23"
## [15831] "2012-11-29" "2011-06-27" "2012-06-06" "2012-06-16" "2012-06-06"
## [15836] "2013-02-15" "2012-06-06" "2013-02-15" "2012-06-16" "2012-06-06"
## [15841] "2012-06-16" "2012-06-06" "2012-06-16" "2011-06-27" "2012-06-16"
## [15846] "2011-12-10" "2013-02-15" "2011-12-10" "2013-02-15" "2013-01-07"
## [15851] "2013-05-19" "2013-05-19" "2013-05-19" "2011-11-19" "2013-05-19"
## [15856] "2013-05-19" "2013-01-07" "2011-11-19" "2013-01-07" "2013-02-01"
## [15861] "2012-01-26" "2012-01-26" "2013-02-01" "2013-02-01" "2012-01-26"
## [15866] "2013-02-01" "2013-02-01" "2013-06-10" "2013-09-19" "2013-06-10"
## [15871] "2013-09-19" "2013-09-19" "2013-09-19" "2013-06-10" "2013-09-19"
## [15876] "2011-11-06" "2011-11-06" "2012-02-10" "2011-11-06" "2012-09-27"
## [15881] "2012-05-26" "2012-09-27" "2012-05-26" "2012-02-19" "2012-02-10"
## [15886] "2011-11-06" "2012-02-19" "2012-09-27" "2012-09-27" "2012-02-10"
## [15891] "2012-02-19" "2012-02-19" "2012-05-26" "2012-02-10" "2012-09-27"
## [15896] "2012-09-27" "2012-10-06" "2012-10-06" "2011-02-04" "2011-02-04"
## [15901] "2012-07-06" "2012-07-06" "2012-07-06" "2011-10-30" "2011-10-30"
## [15906] "2011-08-08" "2014-01-31" "2013-04-29" "2013-04-29" "2014-01-31"
## [15911] "2011-08-08" "2014-01-31" "2013-04-29" "2013-04-29" "2013-04-29"
## [15916] "2013-04-29" "2011-08-08" "2011-06-28" "2011-06-28" "2012-10-21"
## [15921] "2012-10-21" "2012-10-21" "2012-11-16" "2011-10-11" "2012-06-22"
## [15926] "2013-06-26" "2013-06-26" "2011-11-08" "2012-06-22" "2012-11-16"
## [15931] "2012-11-16" "2013-06-26" "2011-11-08" "2011-10-11" "2012-06-22"
## [15936] "2012-06-22" "2012-06-22" "2011-10-11" "2012-10-07" "2013-07-03"
## [15941] "2013-07-03" "2012-10-12" "2012-04-09" "2012-10-12" "2012-04-09"
## [15946] "2012-10-07" "2012-10-07" "2013-07-03" "2012-10-12" "2013-07-03"
## [15951] "2012-04-09" "2012-04-09" "2012-04-09" "2012-10-07" "2012-10-07"
## [15956] "2012-10-12" "2012-10-12" "2014-02-07" "2014-02-07" "2014-02-07"
## [15961] "2014-02-07" "2014-02-07" "2014-02-07" "2012-09-17" "2012-06-12"
## [15966] "2012-09-17" "2012-09-17" "2012-09-17" "2012-06-12" "2012-09-17"
## [15971] "2012-06-12" "2012-06-12" "2012-06-12" "2011-07-13" "2011-07-13"
## [15976] "2012-12-08" "2012-12-08" "2011-07-13" "2012-01-09" "2012-12-15"
## [15981] "2012-12-15" "2012-01-09" "2013-05-04" "2013-05-04" "2013-05-04"
## [15986] "2013-05-04" "2012-12-12" "2012-12-12" "2013-05-04" "2012-12-12"
## [15991] "2013-05-04" "2012-09-14" "2012-09-14" "2012-09-14" "2013-11-13"
## [15996] "2013-11-13" "2013-11-13" "2013-11-13" "2013-11-13" "2013-01-17"
## [16001] "2013-01-17" "2013-01-17" "2013-01-17" "2013-01-17" "2014-01-17"
## [16006] "2014-01-17" "2014-01-17" "2014-01-17" "2014-01-17" "2013-12-12"
## [16011] "2013-12-12" "2013-12-12" "2013-12-12" "2013-12-12" "2011-04-24"
## [16016] "2011-04-24" "2011-04-24" "2011-04-24" "2011-04-24" "2011-04-24"
## [16021] "2013-10-05" "2013-10-05" "2013-11-12" "2013-10-05" "2013-10-05"
## [16026] "2011-10-25" "2011-10-25" "2013-10-05" "2013-11-12" "2013-02-19"
## [16031] "2013-02-19" "2013-02-19" "2013-02-19" "2013-07-08" "2013-02-26"
## [16036] "2013-07-08" "2013-02-19" "2013-02-26" "2013-02-26" "2013-07-08"
## [16041] "2012-01-19" "2013-02-26" "2012-01-19" "2013-02-26" "2011-07-23"
## [16046] "2011-07-23" "2013-12-24" "2011-07-23" "2011-07-23" "2013-12-24"
## [16051] "2013-01-01" "2011-06-21" "2013-01-01" "2011-03-09" "2011-06-21"
## [16056] "2013-01-01" "2011-03-09" "2013-01-01" "2012-02-01" "2012-02-01"
## [16061] "2012-02-01" "2014-02-12" "2014-02-12" "2012-03-30" "2012-03-30"
## [16066] "2012-03-30" "2013-04-25" "2014-02-09" "2014-01-14" "2013-04-24"
## [16071] "2013-04-24" "2014-02-09" "2012-12-19" "2013-04-24" "2013-04-24"
## [16076] "2013-04-24" "2014-01-14" "2012-12-19" "2013-04-25" "2013-04-25"
## [16081] "2014-01-14" "2013-04-25" "2014-01-14" "2013-04-25" "2014-01-14"
## [16086] "2012-12-19" "2012-12-19" "2012-12-19" "2014-01-14" "2013-06-21"
## [16091] "2013-06-21" "2013-06-21" "2013-06-21" "2013-06-21" "2011-11-11"
## [16096] "2011-11-11" "2014-01-29" "2011-11-11" "2011-11-11" "2011-11-11"
## [16101] "2014-01-29" "2011-11-11" "2014-01-14" "2013-08-29" "2014-01-14"
## [16106] "2013-08-29" "2014-01-14" "2013-08-29" "2011-07-20" "2011-07-20"
## [16111] "2011-07-20" "2014-02-06" "2014-02-06" "2014-02-06" "2014-02-06"
## [16116] "2014-02-06" "2012-04-05" "2012-04-05" "2012-04-05" "2012-04-05"
## [16121] "2012-04-05" "2013-09-15" "2013-09-15" "2013-09-15" "2013-01-25"
## [16126] "2012-12-27" "2012-12-27" "2013-09-16" "2013-09-15" "2012-12-27"
## [16131] "2013-09-15" "2012-12-27" "2012-12-27" "2013-01-25" "2013-01-25"
## [16136] "2012-12-27" "2013-09-16" "2013-09-16" "2013-09-16" "2013-01-25"
## [16141] "2012-12-02" "2013-09-16" "2013-09-16" "2013-09-15" "2012-12-02"
## [16146] "2013-01-25" "2012-09-01" "2013-02-10" "2013-02-10" "2012-09-01"
## [16151] "2013-02-10" "2012-09-01" "2012-09-01" "2012-09-01" "2012-09-01"
## [16156] "2011-07-13" "2011-07-13" "2011-08-12" "2011-07-13" "2011-08-12"
## [16161] "2011-08-12" "2012-10-15" "2012-10-15" "2011-12-31" "2011-12-31"
## [16166] "2011-04-08" "2011-04-08" "2011-04-08" "2011-12-31" "2012-10-15"
## [16171] "2011-04-08" "2011-04-08" "2013-12-02" "2011-11-16" "2011-11-16"
## [16176] "2011-11-16" "2011-02-11" "2013-12-02" "2013-12-02" "2013-12-02"
## [16181] "2013-12-02" "2013-08-16" "2013-08-16" "2011-02-02" "2013-12-02"
## [16186] "2013-08-16" "2011-02-02" "2011-02-11" "2011-02-02" "2011-02-11"
## [16191] "2013-06-17" "2013-06-18" "2013-06-18" "2012-04-30" "2013-06-17"
## [16196] "2013-06-17" "2013-06-18" "2012-04-30" "2012-04-30" "2012-04-30"
## [16201] "2012-06-30" "2013-04-09" "2013-04-09" "2013-04-09" "2013-04-09"
## [16206] "2012-06-23" "2013-04-09" "2012-06-30" "2012-06-23" "2013-02-28"
## [16211] "2013-03-09" "2013-02-28" "2013-03-09" "2013-03-09" "2013-02-28"
## [16216] "2013-01-04" "2013-01-04" "2011-03-26" "2011-03-26" "2011-03-26"
## [16221] "2011-03-26" "2011-03-26" "2013-01-04" "2011-12-08" "2011-12-08"
## [16226] "2012-08-04" "2012-08-04" "2012-08-04" "2012-08-04" "2011-12-08"
## [16231] "2011-12-02" "2013-12-16" "2013-12-16" "2013-12-16" "2011-12-02"
## [16236] "2013-12-16" "2013-12-16" "2011-12-02" "2013-10-06" "2012-05-06"
## [16241] "2012-05-06" "2012-05-06" "2013-10-06" "2013-10-06" "2012-05-13"
## [16246] "2012-04-28" "2013-10-14" "2012-04-28" "2012-05-13" "2012-05-13"
## [16251] "2012-05-13" "2012-05-13" "2012-01-15" "2012-05-06" "2013-10-14"
## [16256] "2013-10-14" "2012-01-15" "2012-05-06" "2012-01-15" "2011-09-23"
## [16261] "2013-01-16" "2011-09-23" "2013-01-16" "2013-01-16" "2012-11-18"
## [16266] "2014-02-09" "2012-11-03" "2014-02-09" "2014-02-09" "2014-02-09"
## [16271] "2012-11-18" "2012-11-03" "2012-11-18" "2012-11-18" "2012-11-18"
## [16276] "2012-11-03" "2012-11-03" "2014-02-09" "2014-02-09" "2011-07-14"
## [16281] "2011-07-14" "2011-07-14" "2011-10-30" "2011-07-14" "2011-07-14"
## [16286] "2011-10-30" "2011-10-30" "2011-07-16" "2011-07-16" "2011-03-09"
## [16291] "2011-07-16" "2011-03-09" "2011-03-09" "2012-03-02" "2012-03-02"
## [16296] "2012-12-30" "2013-02-07" "2012-12-30" "2012-03-02" "2013-12-04"
## [16301] "2013-12-04" "2013-02-07" "2014-01-28" "2012-02-20" "2012-02-20"
## [16306] "2011-02-02" "2011-02-02" "2011-02-02" "2014-01-28" "2011-02-02"
## [16311] "2011-02-02" "2012-03-10" "2012-03-10" "2012-03-10" "2013-03-03"
## [16316] "2013-02-27" "2012-03-10" "2013-02-27" "2013-03-03" "2012-08-20"
## [16321] "2012-08-20" "2012-08-20" "2012-08-20" "2012-08-20" "2013-06-23"
## [16326] "2013-06-23" "2011-07-14" "2011-07-14" "2011-05-09" "2013-06-23"
## [16331] "2011-05-09" "2013-11-02" "2011-07-14" "2013-11-02" "2011-05-09"
## [16336] "2013-06-23" "2013-11-02" "2013-06-23" "2011-07-03" "2013-03-18"
## [16341] "2013-03-18" "2012-06-08" "2013-03-13" "2013-03-18" "2011-07-03"
## [16346] "2013-03-13" "2011-07-03" "2014-01-29" "2014-01-29" "2013-03-13"
## [16351] "2011-07-03" "2011-07-03" "2012-06-08" "2014-01-29" "2013-03-13"
## [16356] "2013-03-18" "2011-05-26" "2013-03-18" "2011-05-26" "2013-03-13"
## [16361] "2014-01-29" "2013-03-18" "2013-03-13" "2012-06-08" "2012-06-08"
## [16366] "2011-05-26" "2012-06-08" "2011-05-05" "2012-12-25" "2011-05-05"
## [16371] "2012-12-25" "2012-12-25" "2012-12-25" "2012-12-25" "2011-09-05"
## [16376] "2012-09-30" "2011-09-05" "2012-09-30" "2013-05-27" "2013-05-27"
## [16381] "2011-04-03" "2011-03-27" "2011-03-27" "2011-03-27" "2011-04-03"
## [16386] "2011-04-03" "2013-08-24" "2011-09-21" "2013-08-24" "2011-09-21"
## [16391] "2011-09-21" "2011-08-29" "2011-08-29" "2011-09-21" "2013-08-24"
## [16396] "2011-09-21" "2011-08-29" "2011-09-21" "2013-08-24" "2013-02-11"
## [16401] "2013-12-20" "2013-06-24" "2013-09-13" "2013-12-20" "2013-06-24"
## [16406] "2013-02-11" "2013-09-13" "2013-02-11" "2013-03-25" "2013-03-25"
## [16411] "2013-03-25" "2011-10-06" "2011-10-06" "2011-07-05" "2011-07-05"
## [16416] "2013-03-17" "2011-10-06" "2013-08-26" "2011-07-05" "2013-03-17"
## [16421] "2013-08-26" "2013-03-17" "2013-03-17" "2011-02-02" "2011-02-10"
## [16426] "2011-02-10" "2012-10-16" "2011-02-02" "2012-10-20" "2011-02-02"
## [16431] "2011-02-10" "2011-02-02" "2011-02-10" "2012-10-20" "2012-10-16"
## [16436] "2014-02-11" "2013-08-01" "2013-08-01" "2013-08-01" "2014-02-11"
## [16441] "2013-08-01" "2013-06-09" "2013-06-09" "2013-08-01" "2013-08-01"
## [16446] "2011-03-05" "2011-03-05" "2011-02-17" "2011-03-05" "2012-07-04"
## [16451] "2011-09-26" "2011-09-26" "2012-07-04" "2011-02-17" "2011-03-05"
## [16456] "2012-07-04" "2012-09-05" "2012-09-05" "2013-10-26" "2013-01-02"
## [16461] "2012-09-05" "2013-10-26" "2011-12-27" "2013-10-26" "2013-10-26"
## [16466] "2013-01-02" "2013-01-02" "2013-10-26" "2012-09-05" "2013-10-26"
## [16471] "2012-09-05" "2013-01-02" "2013-01-02" "2011-12-27" "2011-12-27"
## [16476] "2011-12-22" "2011-12-22" "2012-09-19" "2012-09-19" "2012-05-17"
## [16481] "2012-05-17" "2012-09-19" "2012-05-17" "2012-05-17" "2012-11-13"
## [16486] "2012-05-17" "2012-11-13" "2011-08-02" "2013-06-10" "2013-06-10"
## [16491] "2011-08-02" "2011-08-02" "2013-12-10" "2013-12-10" "2013-12-10"
## [16496] "2012-10-22" "2012-10-22" "2012-10-13" "2012-10-13" "2013-09-16"
## [16501] "2013-09-16" "2013-09-25" "2013-09-25" "2011-05-20" "2013-09-25"
## [16506] "2013-09-16" "2011-05-20" "2011-09-01" "2012-08-23" "2012-08-23"
## [16511] "2011-09-01" "2013-07-21" "2011-09-01" "2013-07-21" "2013-07-21"
## [16516] "2013-07-21" "2013-07-21" "2013-07-21" "2014-01-15" "2014-01-15"
## [16521] "2012-11-15" "2012-11-15" "2012-01-26" "2012-01-26" "2012-11-25"
## [16526] "2014-01-15" "2012-01-26" "2012-01-26" "2012-11-15" "2012-02-21"
## [16531] "2012-11-25" "2012-01-26" "2012-11-25" "2012-02-21" "2012-02-21"
## [16536] "2012-11-25" "2012-02-21" "2012-11-25" "2012-11-15" "2012-02-21"
## [16541] "2012-11-15" "2012-02-21" "2012-04-03" "2013-05-25" "2012-04-06"
## [16546] "2011-06-12" "2013-05-25" "2011-06-12" "2012-07-27" "2012-04-03"
## [16551] "2012-04-03" "2011-06-12" "2012-04-06" "2011-06-12" "2011-06-12"
## [16556] "2013-03-23" "2013-03-23" "2012-07-27" "2012-04-06" "2013-05-25"
## [16561] "2013-03-23" "2013-12-31" "2012-07-05" "2012-07-05" "2012-07-05"
## [16566] "2012-07-05" "2013-12-31" "2012-03-31" "2012-03-31" "2012-03-31"
## [16571] "2013-11-24" "2013-11-24" "2013-11-24" "2013-11-24" "2013-11-24"
## [16576] "2011-04-28" "2013-06-28" "2011-11-12" "2011-11-12" "2011-11-12"
## [16581] "2011-04-28" "2011-04-28" "2013-06-28" "2014-01-24" "2011-10-13"
## [16586] "2011-10-13" "2011-10-13" "2011-10-13" "2011-10-19" "2011-10-13"
## [16591] "2011-10-19" "2011-10-19" "2014-01-24" "2011-10-19" "2011-10-19"
## [16596] "2011-10-19" "2012-02-27" "2011-10-19" "2011-10-19" "2011-10-19"
## [16601] "2012-02-27" "2012-02-27" "2013-09-03" "2013-09-03" "2011-03-15"
## [16606] "2011-03-15" "2011-03-15" "2011-03-15" "2011-03-15" "2011-03-15"
## [16611] "2013-09-08" "2013-09-08" "2013-09-08" "2012-06-18" "2012-07-15"
## [16616] "2012-06-18" "2012-07-15" "2012-06-13" "2012-07-15" "2012-06-13"
## [16621] "2012-06-24" "2012-06-13" "2012-07-15" "2012-06-24" "2012-10-26"
## [16626] "2012-12-05" "2012-10-26" "2012-10-26" "2011-02-21" "2012-10-26"
## [16631] "2011-02-21" "2012-12-05" "2012-10-26" "2012-12-05" "2013-03-31"
## [16636] "2013-03-31" "2013-03-31" "2013-03-31" "2012-05-07" "2012-05-07"
## [16641] "2012-05-07" "2012-05-01" "2012-05-07" "2012-05-01" "2012-05-01"
## [16646] "2012-05-07" "2012-05-01" "2012-05-01" "2012-10-13" "2012-10-13"
## [16651] "2012-07-26" "2012-10-13" "2012-07-26" "2012-08-20" "2012-08-20"
## [16656] "2012-07-26" "2012-01-06" "2012-01-06" "2012-01-06" "2012-08-10"
## [16661] "2012-08-10" "2011-04-17" "2012-02-14" "2013-07-24" "2012-09-24"
## [16666] "2012-02-14" "2012-09-24" "2011-04-17" "2012-02-14" "2013-07-24"
## [16671] "2012-02-14" "2011-12-09" "2014-01-24" "2011-12-09" "2014-01-24"
## [16676] "2012-01-12" "2012-01-12" "2012-01-12" "2012-01-12" "2012-01-12"
## [16681] "2011-09-08" "2011-09-08" "2013-12-15" "2013-12-15" "2013-12-15"
## [16686] "2013-12-15" "2013-12-15" "2013-07-31" "2013-07-31" "2013-07-31"
## [16691] "2011-01-28" "2011-12-19" "2011-12-19" "2011-01-28" "2011-12-19"
## [16696] "2011-03-20" "2011-03-20" "2014-01-07" "2014-01-07" "2014-01-07"
## [16701] "2014-01-07" "2011-09-10" "2011-09-10" "2011-11-05" "2011-09-10"
## [16706] "2011-11-05" "2011-11-05" "2011-09-10" "2011-09-10" "2013-05-02"
## [16711] "2011-09-13" "2013-10-05" "2011-09-30" "2011-09-13" "2013-10-05"
## [16716] "2012-11-06" "2011-09-30" "2013-05-09" "2012-11-06" "2013-10-05"
## [16721] "2013-10-05" "2013-05-02" "2013-05-09" "2013-10-05" "2013-11-29"
## [16726] "2013-11-29" "2013-11-29" "2012-04-08" "2012-07-24" "2012-04-08"
## [16731] "2013-07-11" "2012-04-08" "2013-07-11" "2012-04-08" "2012-04-08"
## [16736] "2012-07-24" "2012-04-08" "2012-07-24" "2012-07-24" "2013-07-11"
## [16741] "2012-07-24" "2013-07-04" "2012-10-08" "2012-10-01" "2012-10-08"
## [16746] "2013-05-21" "2013-04-26" "2013-07-04" "2013-04-26" "2012-10-08"
## [16751] "2013-04-26" "2013-04-26" "2013-05-21" "2013-07-04" "2012-10-01"
## [16756] "2013-07-04" "2013-07-04" "2013-05-21" "2012-10-01" "2013-04-26"
## [16761] "2012-01-16" "2012-01-16" "2012-01-16" "2012-01-16" "2012-01-16"
## [16766] "2012-02-16" "2012-02-16" "2012-08-09" "2012-08-09" "2013-03-30"
## [16771] "2012-07-31" "2012-07-31" "2013-02-09" "2012-08-09" "2012-07-31"
## [16776] "2013-02-09" "2013-03-30" "2011-06-21" "2013-08-30" "2012-07-21"
## [16781] "2013-07-06" "2013-08-30" "2013-07-06" "2012-07-21" "2013-06-28"
## [16786] "2013-06-28" "2013-06-28" "2011-06-21" "2013-08-30" "2011-06-21"
## [16791] "2011-06-21" "2013-07-06" "2013-07-06" "2013-06-28" "2013-06-28"
## [16796] "2013-07-06" "2013-01-10" "2013-04-10" "2012-06-07" "2012-06-07"
## [16801] "2013-01-10" "2013-01-10" "2013-04-10" "2013-04-10" "2013-04-10"
## [16806] "2013-04-10" "2013-10-01" "2011-08-04" "2013-10-01" "2013-10-01"
## [16811] "2011-08-04" "2011-08-04" "2012-04-03" "2012-10-16" "2012-04-03"
## [16816] "2012-10-16" "2012-04-03" "2012-04-03" "2012-04-03" "2012-08-27"
## [16821] "2012-08-27" "2012-09-23" "2012-09-23" "2012-08-27" "2013-02-17"
## [16826] "2013-02-17" "2012-08-18" "2012-08-18" "2011-11-14" "2012-08-18"
## [16831] "2012-08-18" "2012-08-02" "2011-11-14" "2012-08-18" "2011-11-14"
## [16836] "2012-08-05" "2012-08-05" "2011-11-14" "2012-08-18" "2011-11-14"
## [16841] "2011-11-14" "2012-08-02" "2012-02-04" "2013-01-24" "2012-02-04"
## [16846] "2012-02-04" "2012-02-04" "2013-01-24" "2012-02-04" "2014-01-19"
## [16851] "2013-12-24" "2013-12-19" "2013-12-19" "2014-01-19" "2014-01-19"
## [16856] "2013-11-12" "2013-11-12" "2013-12-24" "2014-01-19" "2013-11-12"
## [16861] "2013-07-04" "2012-08-18" "2012-08-18" "2013-11-25" "2013-07-04"
## [16866] "2011-11-08" "2013-11-25" "2011-11-08" "2012-08-18" "2013-07-04"
## [16871] "2013-07-04" "2011-11-08" "2013-01-14" "2013-01-14" "2012-05-24"
## [16876] "2012-05-24" "2012-05-24" "2011-03-24" "2011-04-02" "2011-04-02"
## [16881] "2011-03-24" "2013-07-31" "2011-04-02" "2011-04-02" "2011-03-24"
## [16886] "2013-07-31" "2011-03-24" "2013-07-31" "2013-08-28" "2013-05-20"
## [16891] "2011-11-22" "2011-06-27" "2013-05-20" "2011-11-22" "2013-08-28"
## [16896] "2013-05-20" "2011-11-22" "2013-08-28" "2013-05-20" "2011-06-27"
## [16901] "2013-05-20" "2014-02-11" "2014-02-11" "2012-09-25" "2012-09-25"
## [16906] "2012-12-18" "2012-12-18" "2012-12-18" "2011-11-09" "2011-11-09"
## [16911] "2011-11-09" "2011-11-09" "2011-11-09" "2011-11-09" "2011-02-10"
## [16916] "2011-02-10" "2011-02-10" "2011-02-10" "2011-09-19" "2011-09-19"
## [16921] "2011-09-19" "2011-09-19" "2011-09-19" "2011-09-19" "2013-11-24"
## [16926] "2013-11-24" "2012-03-21" "2012-03-21" "2011-06-01" "2013-11-24"
## [16931] "2011-06-01" "2011-06-01" "2011-06-01" "2012-03-21" "2012-03-21"
## [16936] "2012-03-21" "2011-06-01" "2013-07-12" "2013-07-12" "2013-07-08"
## [16941] "2013-07-08" "2013-07-08" "2013-07-08" "2013-07-12" "2013-07-12"
## [16946] "2013-07-12" "2013-07-08" "2013-04-08" "2012-01-10" "2013-04-08"
## [16951] "2012-01-10" "2011-09-25" "2011-09-25" "2011-09-25" "2013-04-08"
## [16956] "2012-04-07" "2012-04-07" "2012-01-10" "2012-04-07" "2011-11-20"
## [16961] "2011-11-20" "2011-11-20" "2012-01-21" "2012-01-21" "2012-01-21"
## [16966] "2012-01-21" "2012-01-21" "2012-05-02" "2012-05-02" "2012-07-10"
## [16971] "2012-07-10" "2012-07-10" "2012-05-09" "2012-05-09" "2012-05-09"
## [16976] "2012-05-09" "2013-01-20" "2011-09-17" "2011-09-17" "2011-09-17"
## [16981] "2012-06-21" "2012-06-21" "2011-09-17" "2013-01-20" "2013-01-20"
## [16986] "2011-07-18" "2011-07-18" "2013-01-20" "2013-01-20" "2012-06-15"
## [16991] "2013-10-31" "2011-07-18" "2013-10-31" "2011-07-18" "2011-07-18"
## [16996] "2012-06-15" "2012-02-22" "2012-02-22" "2012-02-22" "2012-02-22"
## [17001] "2012-02-22" "2013-07-25" "2013-07-25" "2011-04-12" "2013-07-25"
## [17006] "2011-04-02" "2011-04-12" "2011-04-12" "2013-07-25" "2011-04-02"
## [17011] "2011-04-02" "2012-07-05" "2012-02-04" "2013-05-17" "2012-07-05"
## [17016] "2013-05-17" "2011-03-23" "2013-01-26" "2012-02-04" "2012-07-05"
## [17021] "2012-02-04" "2012-07-05" "2013-01-26" "2012-07-05" "2011-03-23"
## [17026] "2013-05-17" "2011-03-23" "2014-01-16" "2014-01-16" "2011-04-01"
## [17031] "2014-01-24" "2011-04-01" "2011-04-01" "2013-11-07" "2014-01-24"
## [17036] "2013-11-07" "2013-07-10" "2013-07-10" "2013-11-07" "2013-11-07"
## [17041] "2013-11-07" "2011-01-29" "2011-12-12" "2011-01-29" "2011-12-12"
## [17046] "2011-01-29" "2011-01-29" "2011-12-12" "2011-01-29" "2011-12-12"
## [17051] "2011-01-29" "2011-12-12" "2013-08-15" "2011-12-12" "2013-08-15"
## [17056] "2012-07-18" "2012-07-18" "2013-10-21" "2012-07-18" "2012-01-01"
## [17061] "2012-07-18" "2012-01-01" "2012-07-18" "2013-12-28" "2011-12-29"
## [17066] "2011-12-29" "2012-01-01" "2011-12-29" "2013-12-28" "2011-12-29"
## [17071] "2012-01-01" "2013-10-21" "2011-12-29" "2013-12-28" "2012-01-01"
## [17076] "2013-05-11" "2013-05-11" "2011-12-19" "2012-10-17" "2012-01-03"
## [17081] "2012-01-03" "2012-01-03" "2013-05-11" "2012-07-11" "2012-01-03"
## [17086] "2012-01-03" "2012-07-11" "2012-10-17" "2012-01-03" "2011-12-19"
## [17091] "2011-12-19" "2012-10-17" "2012-07-11" "2012-01-15" "2012-01-15"
## [17096] "2012-01-15" "2012-01-15" "2012-01-15" "2012-01-15" "2011-07-18"
## [17101] "2011-07-18" "2011-07-18" "2011-07-18" "2011-07-18" "2013-07-07"
## [17106] "2012-03-03" "2012-03-03" "2012-03-03" "2013-07-15" "2012-03-03"
## [17111] "2013-07-07" "2012-03-03" "2013-07-15" "2012-03-03" "2012-08-20"
## [17116] "2012-03-08" "2012-08-20" "2013-11-10" "2012-03-08" "2013-11-10"
## [17121] "2012-08-18" "2012-08-18" "2013-11-10" "2012-03-08" "2012-10-09"
## [17126] "2012-10-09" "2012-10-01" "2013-12-17" "2012-10-09" "2012-10-01"
## [17131] "2013-12-17" "2012-10-01" "2013-12-17" "2013-05-19" "2013-05-12"
## [17136] "2013-05-19" "2013-05-12" "2011-05-20" "2012-04-28" "2011-10-25"
## [17141] "2012-12-28" "2012-04-28" "2012-12-28" "2011-05-20" "2011-10-25"
## [17146] "2011-10-25" "2011-10-25" "2011-05-20" "2011-05-20" "2011-05-20"
## [17151] "2011-10-25" "2013-06-28" "2013-06-28" "2011-10-04" "2011-10-04"
## [17156] "2013-12-18" "2013-12-18" "2013-12-18" "2013-12-18" "2011-10-04"
## [17161] "2011-10-04" "2011-12-22" "2011-12-22" "2013-12-18" "2011-02-21"
## [17166] "2011-02-21" "2011-02-21" "2011-12-29" "2011-12-22" "2011-12-29"
## [17171] "2013-12-18" "2011-12-22" "2011-02-21" "2011-02-21" "2011-12-29"
## [17176] "2011-12-29" "2012-12-10" "2012-12-10" "2012-12-10" "2012-12-10"
## [17181] "2012-12-10" "2013-04-08" "2013-04-08" "2013-04-08" "2011-04-21"
## [17186] "2013-03-26" "2011-04-21" "2013-03-26" "2012-09-11" "2011-04-21"
## [17191] "2012-09-11" "2012-09-11" "2011-01-31" "2011-01-31" "2012-04-01"
## [17196] "2012-04-01" "2012-04-01" "2011-05-12" "2011-05-12" "2013-05-07"
## [17201] "2011-05-12" "2013-05-07" "2012-07-09" "2013-07-13" "2012-07-09"
## [17206] "2012-07-09" "2013-07-13" "2013-07-13" "2013-07-13" "2012-07-09"
## [17211] "2012-07-09" "2013-07-13" "2012-09-06" "2012-01-16" "2012-09-06"
## [17216] "2013-02-19" "2013-04-22" "2012-01-16" "2013-02-19" "2013-04-22"
## [17221] "2011-04-07" "2011-11-01" "2011-11-01" "2011-11-01" "2011-04-07"
## [17226] "2011-11-01" "2011-11-01" "2012-11-10" "2012-11-10" "2012-11-10"
## [17231] "2013-08-18" "2012-11-10" "2013-08-18" "2012-11-10" "2011-04-19"
## [17236] "2013-07-02" "2011-04-19" "2011-04-19" "2013-07-02" "2013-07-02"
## [17241] "2011-04-19" "2013-07-02" "2013-07-02" "2013-01-07" "2013-01-07"
## [17246] "2013-01-07" "2013-06-05" "2013-08-08" "2013-08-08" "2013-01-07"
## [17251] "2013-06-05" "2013-08-08" "2011-08-18" "2011-08-18" "2012-07-09"
## [17256] "2013-11-28" "2013-11-28" "2011-08-18" "2011-08-18" "2011-08-18"
## [17261] "2012-11-09" "2012-08-11" "2012-07-09" "2012-07-09" "2012-08-11"
## [17266] "2012-08-11" "2012-11-05" "2012-08-11" "2012-07-09" "2013-11-28"
## [17271] "2012-11-09" "2012-11-05" "2012-08-11" "2012-11-13" "2013-05-10"
## [17276] "2012-11-13" "2013-05-10" "2012-11-13" "2012-11-13" "2013-05-10"
## [17281] "2013-05-10" "2013-05-10" "2011-03-26" "2011-03-26" "2011-03-26"
## [17286] "2011-12-17" "2011-12-09" "2011-12-17" "2011-12-17" "2011-12-09"
## [17291] "2011-12-09" "2013-05-16" "2011-08-15" "2011-08-15" "2011-08-15"
## [17296] "2013-05-16" "2011-08-15" "2011-08-15" "2013-01-23" "2013-01-19"
## [17301] "2014-02-09" "2013-01-19" "2013-01-19" "2013-01-19" "2013-01-23"
## [17306] "2013-01-23" "2013-01-23" "2013-01-23" "2014-02-09" "2013-01-19"
## [17311] "2012-10-27" "2012-10-27" "2012-10-24" "2012-10-17" "2012-10-27"
## [17316] "2012-10-24" "2012-10-17" "2013-06-10" "2012-10-24" "2012-10-17"
## [17321] "2012-10-17" "2012-10-24" "2012-10-17" "2012-10-27" "2012-10-27"
## [17326] "2012-10-24" "2013-06-10" "2011-01-25" "2011-01-25" "2014-01-10"
## [17331] "2014-01-10" "2014-01-08" "2014-01-08" "2014-01-10" "2014-01-08"
## [17336] "2012-02-03" "2013-02-12" "2011-06-07" "2013-02-12" "2013-02-12"
## [17341] "2012-02-03" "2011-06-07" "2012-02-03" "2013-02-12" "2013-02-12"
## [17346] "2011-06-07" "2013-02-12" "2011-06-07" "2013-05-09" "2013-07-29"
## [17351] "2013-06-04" "2013-09-19" "2013-07-29" "2013-05-08" "2013-05-09"
## [17356] "2013-07-29" "2013-09-19" "2013-05-08" "2013-09-19" "2013-06-30"
## [17361] "2013-06-04" "2013-05-30" "2013-05-30" "2013-06-04" "2013-06-30"
## [17366] "2013-07-29" "2013-07-29" "2013-05-30" "2011-04-26" "2011-05-30"
## [17371] "2011-04-26" "2011-05-30" "2011-05-30" "2012-04-26" "2011-05-30"
## [17376] "2011-04-26" "2011-04-26" "2011-05-30" "2011-04-26" "2012-04-26"
## [17381] "2012-04-09" "2012-09-26" "2012-09-26" "2012-04-09" "2012-04-09"
## [17386] "2013-07-14" "2011-10-03" "2013-07-14" "2013-07-14" "2013-07-14"
## [17391] "2011-10-03" "2011-10-03" "2013-07-14" "2013-07-14" "2012-10-11"
## [17396] "2014-01-28" "2011-02-04" "2012-10-11" "2011-02-04" "2012-10-01"
## [17401] "2011-08-16" "2012-10-11" "2011-08-16" "2014-01-28" "2014-01-28"
## [17406] "2012-10-01" "2014-01-28" "2011-08-16" "2014-01-28" "2011-08-16"
## [17411] "2012-10-01" "2011-08-16" "2011-08-16" "2011-09-19" "2013-06-29"
## [17416] "2011-09-14" "2013-06-29" "2011-09-14" "2011-09-19" "2011-09-19"
## [17421] "2011-09-14" "2011-09-19" "2011-09-14" "2013-03-26" "2013-03-26"
## [17426] "2012-06-27" "2013-03-26" "2012-06-27" "2013-12-24" "2012-02-17"
## [17431] "2012-02-17" "2012-02-10" "2013-12-24" "2012-02-17" "2012-02-17"
## [17436] "2013-12-24" "2013-12-24" "2011-06-05" "2013-12-24" "2011-06-05"
## [17441] "2012-02-10" "2012-02-10" "2011-06-05" "2011-06-05" "2011-06-05"
## [17446] "2011-06-05" "2012-02-10" "2011-07-04" "2011-07-04" "2012-04-17"
## [17451] "2012-04-17" "2012-04-17" "2011-06-13" "2013-09-09" "2012-04-18"
## [17456] "2012-04-18" "2012-04-18" "2013-09-09" "2011-06-13" "2012-04-18"
## [17461] "2012-04-17" "2013-09-09" "2013-09-09" "2013-09-09" "2013-09-09"
## [17466] "2011-12-22" "2011-12-22" "2011-11-27" "2011-11-27" "2011-11-27"
## [17471] "2013-08-26" "2011-08-30" "2011-08-30" "2013-08-26" "2013-08-26"
## [17476] "2013-04-25" "2011-10-30" "2011-08-30" "2011-10-30" "2013-04-25"
## [17481] "2011-10-30" "2013-04-25" "2011-10-30" "2013-02-02" "2011-05-01"
## [17486] "2013-02-02" "2013-02-02" "2014-01-11" "2011-05-13" "2011-05-01"
## [17491] "2011-05-13" "2014-01-11" "2011-05-13" "2012-02-04" "2012-02-04"
## [17496] "2012-01-21" "2012-02-04" "2012-01-21" "2013-06-07" "2013-06-07"
## [17501] "2013-06-07" "2012-04-17" "2012-04-17" "2013-06-23" "2011-05-10"
## [17506] "2012-02-20" "2013-06-23" "2013-06-28" "2011-05-10" "2012-02-20"
## [17511] "2013-06-28" "2012-02-20" "2013-05-10" "2012-07-05" "2011-02-26"
## [17516] "2011-02-26" "2011-02-26" "2013-05-10" "2011-02-26" "2013-05-10"
## [17521] "2012-07-14" "2012-07-14" "2012-07-05" "2011-02-26" "2013-03-03"
## [17526] "2013-03-03" "2012-04-01" "2013-03-03" "2013-03-03" "2012-04-01"
## [17531] "2012-04-01" "2013-03-03" "2013-03-03" "2012-04-01" "2012-04-01"
## [17536] "2014-01-02" "2014-01-02" "2014-01-02" "2013-11-13" "2013-11-13"
## [17541] "2013-11-13" "2013-11-13" "2013-05-10" "2013-05-10" "2013-05-10"
## [17546] "2013-05-10" "2013-05-10" "2013-05-10" "2013-07-24" "2013-07-24"
## [17551] "2013-07-24" "2012-05-11" "2012-07-01" "2012-07-01" "2011-05-01"
## [17556] "2012-05-11" "2011-05-01" "2013-04-08" "2013-04-08" "2012-05-11"
## [17561] "2011-05-01" "2011-05-01" "2012-06-23" "2011-05-01" "2011-05-01"
## [17566] "2012-06-23" "2013-04-08" "2012-02-17" "2012-02-17" "2011-11-27"
## [17571] "2011-11-27" "2012-10-15" "2014-02-06" "2011-07-08" "2011-07-17"
## [17576] "2012-10-15" "2012-02-17" "2014-02-06" "2011-11-27" "2011-07-17"
## [17581] "2011-07-08" "2011-11-27" "2011-11-27" "2011-07-08" "2014-02-06"
## [17586] "2012-10-15" "2011-07-17" "2014-02-06" "2014-01-06" "2012-06-25"
## [17591] "2014-01-06" "2013-10-09" "2014-01-06" "2013-10-09" "2014-01-06"
## [17596] "2014-01-06" "2013-10-09" "2012-06-25" "2011-04-02" "2011-04-02"
## [17601] "2011-04-02" "2011-04-02" "2011-04-02" "2011-02-21" "2011-10-30"
## [17606] "2011-10-30" "2011-02-21" "2011-10-30" "2011-10-30" "2011-10-30"
## [17611] "2011-02-08" "2011-03-20" "2011-03-20" "2011-03-20" "2011-03-20"
## [17616] "2011-03-14" "2011-03-14" "2011-03-14" "2011-03-14" "2011-02-08"
## [17621] "2011-03-14" "2011-03-20" "2011-10-01" "2011-10-01" "2011-03-11"
## [17626] "2011-03-11" "2012-11-19" "2011-03-11" "2011-10-01" "2011-03-11"
## [17631] "2012-11-19" "2011-03-11" "2012-11-19" "2012-06-28" "2013-08-29"
## [17636] "2012-06-28" "2012-06-28" "2013-08-29" "2013-08-29" "2012-06-28"
## [17641] "2011-05-30" "2011-05-30" "2011-05-30" "2013-08-23" "2013-08-23"
## [17646] "2013-08-23" "2013-10-20" "2013-10-20" "2013-10-20" "2013-04-22"
## [17651] "2011-07-23" "2013-04-22" "2011-07-23" "2013-10-20" "2011-07-23"
## [17656] "2013-10-20" "2013-07-12" "2012-07-06" "2013-07-12" "2012-07-06"
## [17661] "2012-07-06" "2012-07-06" "2013-07-12" "2012-07-06" "2013-07-12"
## [17666] "2011-02-24" "2011-02-24" "2011-02-24" "2011-02-24" "2011-02-24"
## [17671] "2011-02-24" "2012-12-06" "2013-11-25" "2012-12-06" "2012-12-06"
## [17676] "2013-11-25" "2013-05-21" "2013-05-21" "2013-05-21" "2011-09-24"
## [17681] "2014-01-10" "2013-05-21" "2011-09-24" "2013-11-09" "2013-11-09"
## [17686] "2011-09-24" "2013-11-09" "2013-11-09" "2014-01-10" "2014-01-10"
## [17691] "2012-05-08" "2012-05-08" "2012-05-08" "2012-05-08" "2012-05-08"
## [17696] "2013-10-19" "2013-10-19" "2011-06-29" "2013-10-19" "2011-06-29"
## [17701] "2011-07-02" "2011-07-02" "2011-07-02" "2011-07-02" "2011-07-04"
## [17706] "2011-07-02" "2011-07-04" "2011-07-02" "2011-07-04" "2011-07-04"
## [17711] "2011-07-04" "2011-07-04" "2011-07-28" "2011-07-28" "2011-05-04"
## [17716] "2012-10-08" "2012-10-08" "2011-05-04" "2012-10-08" "2012-10-08"
## [17721] "2012-10-13" "2012-10-13" "2011-04-25" "2012-10-13" "2013-07-04"
## [17726] "2011-05-04" "2011-05-04" "2011-04-25" "2011-05-04" "2011-04-25"
## [17731] "2011-04-25" "2011-04-25" "2012-10-13" "2013-07-04" "2011-09-12"
## [17736] "2013-09-26" "2013-09-26" "2013-09-26" "2011-09-12" "2013-09-26"
## [17741] "2013-09-26" "2011-09-12" "2011-09-12" "2013-09-26" "2011-06-30"
## [17746] "2011-09-12" "2011-06-30" "2012-06-29" "2012-06-29" "2013-07-19"
## [17751] "2013-07-19" "2013-07-19" "2012-11-16" "2012-11-16" "2012-11-16"
## [17756] "2012-11-16" "2012-11-16" "2012-03-15" "2012-11-16" "2012-03-15"
## [17761] "2014-01-28" "2014-01-28" "2014-01-28" "2012-07-16" "2012-07-21"
## [17766] "2012-07-16" "2012-07-21" "2012-07-21" "2012-07-16" "2012-07-16"
## [17771] "2011-08-22" "2012-07-16" "2011-08-22" "2011-08-22" "2014-02-16"
## [17776] "2011-08-22" "2011-08-22" "2012-07-21" "2012-07-21" "2014-02-16"
## [17781] "2011-08-22" "2011-03-04" "2013-10-08" "2013-10-08" "2013-05-11"
## [17786] "2014-02-09" "2013-10-08" "2013-05-11" "2013-05-11" "2013-05-11"
## [17791] "2013-10-08" "2013-05-11" "2014-02-09" "2012-11-17" "2012-11-17"
## [17796] "2012-11-17" "2012-11-17" "2011-03-04" "2013-05-11" "2012-11-17"
## [17801] "2012-11-17" "2013-10-08" "2011-02-18" "2013-02-16" "2011-02-18"
## [17806] "2011-02-18" "2013-02-16" "2013-02-16" "2013-02-16" "2011-02-18"
## [17811] "2011-02-18" "2013-02-16" "2011-02-18" "2013-04-29" "2013-04-29"
## [17816] "2013-10-31" "2013-10-31" "2013-10-31" "2012-12-12" "2012-12-12"
## [17821] "2012-12-12" "2013-04-29" "2012-12-12" "2012-12-12" "2013-08-13"
## [17826] "2012-08-21" "2012-08-21" "2011-12-12" "2011-03-16" "2012-08-21"
## [17831] "2012-08-21" "2011-03-16" "2011-03-16" "2013-08-13" "2011-03-16"
## [17836] "2012-08-21" "2011-12-12" "2012-08-11" "2012-08-21" "2011-03-16"
## [17841] "2012-08-11" "2011-03-16" "2011-12-12" "2012-08-11" "2012-08-11"
## [17846] "2012-08-11" "2011-12-22" "2011-08-12" "2011-12-22" "2011-08-28"
## [17851] "2011-08-12" "2013-07-14" "2011-08-12" "2011-08-28" "2011-08-28"
## [17856] "2011-08-12" "2011-12-22" "2013-07-14" "2011-12-22" "2011-08-28"
## [17861] "2011-08-12" "2011-08-12" "2011-08-28" "2011-12-22" "2012-11-14"
## [17866] "2012-11-15" "2012-11-15" "2012-01-10" "2012-11-14" "2012-01-10"
## [17871] "2012-01-10" "2011-11-27" "2012-04-09" "2011-11-27" "2011-11-27"
## [17876] "2011-11-27" "2012-04-09" "2012-04-09" "2011-11-27" "2011-11-27"
## [17881] "2011-11-27" "2012-04-09" "2012-04-09" "2011-07-11" "2013-12-17"
## [17886] "2013-12-17" "2011-07-11" "2013-12-17" "2013-12-17" "2013-12-17"
## [17891] "2011-07-11" "2013-04-09" "2013-04-09" "2013-04-09" "2012-06-13"
## [17896] "2012-06-13" "2013-10-27" "2013-10-27" "2012-06-13" "2013-11-08"
## [17901] "2013-11-08" "2013-11-08" "2012-03-31" "2012-03-31" "2012-03-31"
## [17906] "2012-03-31" "2012-03-31" "2013-11-08" "2013-11-08" "2013-11-08"
## [17911] "2011-08-21" "2012-03-15" "2012-07-18" "2012-03-15" "2011-08-21"
## [17916] "2012-07-18" "2011-08-21" "2012-03-15" "2012-07-18" "2012-07-18"
## [17921] "2012-06-24" "2012-06-24" "2012-06-24" "2011-11-28" "2011-11-28"
## [17926] "2012-06-24" "2011-07-19" "2011-07-19" "2013-08-23" "2013-08-23"
## [17931] "2013-08-23" "2011-11-28" "2012-06-24" "2013-08-23" "2011-11-28"
## [17936] "2013-08-23" "2012-12-16" "2012-12-16" "2012-12-04" "2013-08-27"
## [17941] "2013-08-27" "2012-12-16" "2012-12-16" "2013-08-27" "2012-09-08"
## [17946] "2012-12-04" "2012-09-08" "2012-12-04" "2012-12-04" "2012-09-08"
## [17951] "2012-12-16" "2012-09-08" "2012-09-08" "2013-08-27" "2012-12-04"
## [17956] "2013-08-27" "2012-09-08" "2011-11-09" "2011-11-09" "2011-11-09"
## [17961] "2011-11-09" "2011-11-09" "2012-06-05" "2012-06-05" "2012-05-28"
## [17966] "2012-06-05" "2012-08-14" "2013-05-04" "2012-05-28" "2012-08-14"
## [17971] "2012-06-05" "2012-08-04" "2012-05-28" "2013-05-04" "2012-05-28"
## [17976] "2012-08-04" "2012-06-05" "2012-05-28" "2012-03-27" "2012-12-20"
## [17981] "2012-12-20" "2013-06-06" "2012-03-27" "2013-06-06" "2012-03-27"
## [17986] "2012-03-27" "2012-03-27" "2013-06-06" "2012-03-27" "2013-02-08"
## [17991] "2011-10-29" "2011-10-29" "2013-02-12" "2011-05-28" "2013-02-12"
## [17996] "2011-05-28" "2011-02-17" "2011-02-17" "2011-10-29" "2011-11-04"
## [18001] "2011-02-07" "2011-10-29" "2011-02-07" "2011-11-04" "2011-02-17"
## [18006] "2011-02-07" "2011-10-29" "2011-10-29" "2013-02-08" "2011-11-04"
## [18011] "2011-11-04" "2011-11-04" "2011-11-04" "2013-02-08" "2013-02-12"
## [18016] "2013-06-17" "2013-06-17" "2013-06-17" "2013-10-01" "2011-03-22"
## [18021] "2011-03-22" "2011-10-07" "2011-03-24" "2011-03-23" "2011-03-24"
## [18026] "2011-10-07" "2011-03-23" "2013-10-01" "2013-03-22" "2014-02-16"
## [18031] "2014-02-16" "2013-03-22" "2013-03-22" "2013-03-22" "2014-02-05"
## [18036] "2014-02-05" "2013-03-22" "2014-02-05" "2014-02-05" "2014-02-05"
## [18041] "2014-02-05" "2012-08-22" "2012-08-22" "2012-08-22" "2012-08-22"
## [18046] "2012-08-22" "2012-07-09" "2013-02-16" "2013-11-07" "2013-02-16"
## [18051] "2013-02-16" "2011-05-04" "2012-07-09" "2013-11-07" "2013-11-07"
## [18056] "2013-11-07" "2013-02-16" "2013-02-16" "2011-05-04" "2013-11-07"
## [18061] "2012-07-09" "2013-11-07" "2011-02-25" "2011-02-25" "2012-11-14"
## [18066] "2011-02-25" "2012-11-14" "2013-08-30" "2013-08-30" "2011-02-25"
## [18071] "2012-11-14" "2012-08-24" "2012-08-24" "2012-08-24" "2012-08-24"
## [18076] "2012-07-25" "2012-07-25" "2012-07-09" "2012-07-07" "2012-07-09"
## [18081] "2012-07-07" "2012-07-09" "2012-07-07" "2012-11-06" "2012-07-09"
## [18086] "2012-07-07" "2012-11-06" "2012-11-06" "2012-11-06" "2012-07-09"
## [18091] "2012-07-07" "2012-11-06" "2013-12-03" "2013-12-12" "2013-12-06"
## [18096] "2013-12-12" "2013-12-06" "2013-12-03" "2013-12-03" "2013-12-12"
## [18101] "2011-06-25" "2013-03-08" "2013-03-08" "2011-06-25" "2013-03-08"
## [18106] "2013-03-08" "2011-06-25" "2014-01-12" "2014-01-16" "2013-09-22"
## [18111] "2013-03-08" "2014-01-12" "2013-09-22" "2013-03-08" "2013-09-22"
## [18116] "2013-09-22" "2014-01-16" "2013-07-28" "2013-07-28" "2013-07-28"
## [18121] "2013-07-28" "2012-09-13" "2013-07-28" "2012-09-13" "2013-12-14"
## [18126] "2011-09-10" "2012-02-12" "2013-12-14" "2013-12-24" "2013-12-14"
## [18131] "2013-12-24" "2011-09-10" "2013-12-21" "2013-12-21" "2013-12-21"
## [18136] "2013-12-24" "2011-09-10" "2012-02-12" "2012-12-20" "2012-12-20"
## [18141] "2011-08-28" "2012-06-30" "2012-06-30" "2012-12-20" "2012-12-20"
## [18146] "2011-08-28" "2012-06-30" "2012-06-30" "2012-06-30" "2012-12-20"
## [18151] "2011-09-24" "2011-09-24" "2011-12-21" "2011-12-21" "2011-07-15"
## [18156] "2011-07-24" "2011-07-15" "2011-07-24" "2011-07-15" "2011-07-24"
## [18161] "2011-07-24" "2011-07-24" "2011-02-25" "2011-07-15" "2011-07-15"
## [18166] "2011-02-25" "2012-04-06" "2012-09-14" "2012-09-14" "2012-04-06"
## [18171] "2012-04-06" "2012-09-14" "2012-04-06" "2012-04-06" "2012-02-02"
## [18176] "2012-02-02" "2011-06-01" "2011-06-01" "2011-06-01" "2012-02-02"
## [18181] "2011-05-09" "2011-05-09" "2011-06-01" "2011-06-01" "2011-05-09"
## [18186] "2011-05-09" "2011-05-09" "2011-02-25" "2011-02-25" "2011-02-25"
## [18191] "2011-02-25" "2012-07-15" "2012-07-15" "2011-02-25" "2013-04-03"
## [18196] "2012-07-15" "2012-07-15" "2012-07-15" "2013-04-03" "2013-04-03"
## [18201] "2011-10-26" "2012-02-12" "2013-07-24" "2013-07-24" "2012-02-12"
## [18206] "2012-02-12" "2013-07-24" "2011-10-26" "2012-12-22" "2012-12-22"
## [18211] "2012-12-22" "2011-07-26" "2011-07-25" "2011-07-25" "2012-12-22"
## [18216] "2011-07-26" "2012-01-18" "2013-07-04" "2012-01-20" "2013-07-04"
## [18221] "2013-07-04" "2012-01-18" "2012-01-20" "2012-12-26" "2012-01-18"
## [18226] "2012-12-26" "2013-07-04" "2012-12-26" "2012-01-20" "2013-07-04"
## [18231] "2013-05-16" "2013-05-16" "2013-05-16" "2011-11-04" "2011-09-30"
## [18236] "2011-09-30" "2011-09-30" "2013-05-16" "2011-11-04" "2011-11-04"
## [18241] "2011-09-30" "2011-09-30" "2013-07-02" "2013-07-02" "2013-07-02"
## [18246] "2013-07-02" "2013-07-02" "2011-08-20" "2013-10-07" "2011-08-20"
## [18251] "2013-10-07" "2011-08-20" "2012-05-24" "2012-05-11" "2012-05-04"
## [18256] "2011-02-18" "2011-02-18" "2012-05-11" "2012-05-04" "2013-02-16"
## [18261] "2012-05-11" "2012-05-24" "2012-05-24" "2012-05-04" "2011-02-18"
## [18266] "2013-02-16" "2011-09-20" "2011-09-20" "2011-12-30" "2011-12-30"
## [18271] "2011-12-30" "2011-12-30" "2011-09-20" "2012-01-01" "2011-03-29"
## [18276] "2011-12-13" "2012-01-01" "2011-03-29" "2011-12-12" "2011-12-12"
## [18281] "2012-01-01" "2012-01-01" "2011-12-12" "2011-12-14" "2012-01-01"
## [18286] "2011-03-29" "2011-12-13" "2011-12-14" "2011-12-14" "2011-12-12"
## [18291] "2011-12-12" "2011-12-13" "2011-12-12" "2011-08-28" "2011-08-28"
## [18296] "2011-08-09" "2011-08-09" "2011-08-09" "2013-04-04" "2011-04-21"
## [18301] "2011-04-21" "2013-04-04" "2013-04-04" "2011-04-21" "2012-12-30"
## [18306] "2012-12-30" "2012-12-30" "2012-12-30" "2012-12-30" "2011-10-12"
## [18311] "2013-05-30" "2013-05-30" "2011-10-12" "2014-02-13" "2014-02-13"
## [18316] "2011-02-05" "2011-02-05" "2012-09-14" "2013-11-14" "2013-11-14"
## [18321] "2013-11-14" "2013-11-14" "2013-11-14" "2012-09-14" "2011-06-12"
## [18326] "2011-12-09" "2012-04-20" "2011-12-09" "2011-12-09" "2012-04-20"
## [18331] "2012-04-20" "2011-12-09" "2011-06-12" "2011-12-09" "2011-06-12"
## [18336] "2011-06-12" "2012-04-20" "2013-04-19" "2012-04-20" "2013-04-19"
## [18341] "2011-06-12" "2014-02-01" "2014-02-01" "2012-01-31" "2014-02-01"
## [18346] "2014-02-01" "2012-01-31" "2014-02-01" "2013-09-17" "2013-09-17"
## [18351] "2011-07-14" "2013-09-10" "2013-09-10" "2011-07-14" "2011-07-14"
## [18356] "2011-07-14" "2011-07-14" "2012-12-16" "2012-12-16" "2012-12-16"
## [18361] "2012-12-16" "2012-12-16" "2012-12-16" "2013-08-31" "2014-01-19"
## [18366] "2013-08-31" "2013-08-31" "2013-08-31" "2014-01-19" "2014-01-19"
## [18371] "2013-08-31" "2012-05-07" "2012-05-07" "2011-03-12" "2012-09-27"
## [18376] "2011-03-12" "2011-03-12" "2012-09-27" "2012-10-22" "2012-10-22"
## [18381] "2012-09-27" "2011-03-12" "2012-05-07" "2011-03-12" "2013-05-08"
## [18386] "2013-05-08" "2013-05-08" "2013-05-08" "2013-05-08" "2012-01-27"
## [18391] "2011-05-24" "2011-05-24" "2011-10-19" "2012-01-27" "2012-01-27"
## [18396] "2011-05-24" "2011-05-24" "2011-10-19" "2011-10-19" "2011-05-24"
## [18401] "2012-06-02" "2012-06-02" "2011-09-14" "2012-04-11" "2011-09-14"
## [18406] "2011-09-14" "2012-04-11" "2011-09-14" "2011-09-14" "2011-06-12"
## [18411] "2011-10-04" "2011-10-04" "2013-06-11" "2011-06-12" "2013-06-11"
## [18416] "2013-06-11" "2011-06-12" "2011-06-12" "2011-06-12" "2011-10-07"
## [18421] "2012-10-10" "2012-10-10" "2013-06-11" "2013-06-11" "2011-10-07"
## [18426] "2012-12-22" "2012-12-22" "2012-12-22" "2012-12-22" "2012-12-22"
## [18431] "2012-12-22" "2011-02-06" "2014-01-29" "2012-08-20" "2014-01-29"
## [18436] "2012-01-30" "2012-08-20" "2012-01-30" "2012-08-20" "2013-03-27"
## [18441] "2012-01-30" "2011-02-06" "2012-08-20" "2014-01-29" "2013-03-27"
## [18446] "2012-08-20" "2013-03-27" "2013-11-08" "2013-12-22" "2013-12-22"
## [18451] "2012-05-14" "2013-12-22" "2013-12-22" "2013-12-22" "2012-05-14"
## [18456] "2013-11-08" "2013-12-22" "2012-05-14" "2012-05-14" "2013-11-08"
## [18461] "2012-11-14" "2011-02-13" "2012-11-14" "2012-03-11" "2012-03-11"
## [18466] "2012-11-08" "2012-11-14" "2011-08-11" "2012-03-11" "2012-11-08"
## [18471] "2012-11-08" "2012-07-30" "2012-11-14" "2012-03-11" "2012-03-11"
## [18476] "2011-02-13" "2012-07-30" "2011-02-13" "2011-08-11" "2012-11-08"
## [18481] "2012-07-30" "2012-07-30" "2011-08-11" "2011-08-11" "2011-08-11"
## [18486] "2012-11-08" "2011-11-10" "2011-07-24" "2011-07-24" "2011-07-24"
## [18491] "2011-07-24" "2011-11-10" "2011-11-10" "2011-11-10" "2011-11-10"
## [18496] "2011-07-06" "2011-07-06" "2011-02-28" "2013-06-15" "2013-06-15"
## [18501] "2011-02-28" "2013-06-15" "2011-02-19" "2011-02-28" "2011-02-28"
## [18506] "2013-06-15" "2011-02-19" "2013-06-15" "2011-02-19" "2011-02-19"
## [18511] "2011-09-24" "2011-09-24" "2011-09-24" "2011-12-30" "2011-12-30"
## [18516] "2011-12-30" "2011-04-02" "2012-03-08" "2014-02-04" "2014-02-04"
## [18521] "2012-03-08" "2011-12-30" "2011-04-02" "2011-04-02" "2011-12-30"
## [18526] "2011-04-02" "2014-02-04" "2011-04-02" "2011-09-01" "2011-09-01"
## [18531] "2014-02-05" "2014-02-05" "2011-09-01" "2011-09-01" "2011-09-01"
## [18536] "2012-08-23" "2012-08-23" "2012-08-23" "2012-08-23" "2012-08-23"
## [18541] "2012-08-21" "2012-08-21" "2013-02-22" "2012-08-21" "2013-02-22"
## [18546] "2013-02-22" "2013-02-22" "2012-08-21" "2012-08-21" "2013-02-22"
## [18551] "2013-01-13" "2013-01-13" "2013-06-22" "2013-06-22" "2013-01-13"
## [18556] "2013-06-22" "2013-06-22" "2013-06-22" "2012-02-10" "2012-02-10"
## [18561] "2013-03-07" "2011-08-01" "2012-02-10" "2012-02-10" "2013-03-07"
## [18566] "2011-08-01" "2011-08-01" "2013-02-20" "2013-02-20" "2012-09-17"
## [18571] "2012-09-17" "2012-12-03" "2012-09-17" "2013-02-20" "2012-12-03"
## [18576] "2012-12-03" "2012-09-17" "2013-02-20" "2012-12-03" "2013-02-20"
## [18581] "2012-12-03" "2012-12-03" "2013-11-10" "2013-11-10" "2012-11-26"
## [18586] "2013-11-15" "2013-11-15" "2013-11-10" "2013-11-10" "2013-11-15"
## [18591] "2013-11-10" "2013-11-15" "2012-11-26" "2012-11-26" "2013-11-15"
## [18596] "2013-10-30" "2012-09-28" "2013-10-30" "2012-09-28" "2012-09-28"
## [18601] "2014-02-13" "2014-02-13" "2012-07-21" "2013-06-04" "2013-06-04"
## [18606] "2012-07-21" "2013-06-10" "2012-07-21" "2013-08-17" "2012-12-14"
## [18611] "2012-12-14" "2013-08-17" "2013-08-17" "2012-12-14" "2012-07-21"
## [18616] "2012-07-21" "2013-08-17" "2013-06-10" "2013-08-17" "2014-01-19"
## [18621] "2014-01-14" "2014-01-14" "2014-01-14" "2014-01-19" "2014-01-19"
## [18626] "2011-03-04" "2013-09-24" "2011-03-04" "2011-03-04" "2011-03-04"
## [18631] "2013-09-24" "2013-09-24" "2013-09-24" "2013-09-24" "2011-02-08"
## [18636] "2011-08-31" "2011-08-31" "2011-02-08" "2011-02-15" "2011-02-08"
## [18641] "2011-08-31" "2011-02-15" "2011-08-31" "2011-02-15" "2011-08-31"
## [18646] "2013-06-29" "2012-12-12" "2013-06-29" "2013-06-29" "2012-12-12"
## [18651] "2011-03-13" "2011-03-13" "2013-06-29" "2013-06-29" "2013-06-29"
## [18656] "2013-05-13" "2013-05-13" "2013-05-13" "2013-05-13" "2013-05-13"
## [18661] "2011-06-22" "2011-06-22" "2011-06-22" "2012-11-27" "2012-11-17"
## [18666] "2012-11-17" "2012-11-17" "2012-11-27" "2012-11-27" "2012-01-17"
## [18671] "2012-01-17" "2013-12-09" "2013-12-09" "2012-01-17" "2012-01-17"
## [18676] "2012-01-17" "2013-12-09" "2013-04-30" "2013-04-30" "2013-04-18"
## [18681] "2013-04-30" "2013-04-30" "2013-04-18" "2013-04-18" "2012-12-20"
## [18686] "2012-12-20" "2012-12-20" "2012-12-20" "2012-12-20" "2013-06-19"
## [18691] "2013-06-19" "2013-06-19" "2012-06-28" "2012-06-28" "2013-06-26"
## [18696] "2013-06-26" "2011-10-30" "2011-10-30" "2011-10-30" "2013-06-26"
## [18701] "2013-06-26" "2011-10-30" "2011-10-30" "2013-09-22" "2013-09-22"
## [18706] "2012-07-22" "2012-11-02" "2012-11-02" "2012-07-22" "2012-07-22"
## [18711] "2012-11-02" "2012-11-02" "2012-07-22" "2012-11-02" "2012-11-02"
## [18716] "2012-07-22" "2013-01-05" "2013-01-05" "2013-01-05" "2013-01-05"
## [18721] "2013-01-05" "2011-11-06" "2011-03-26" "2011-11-06" "2011-03-26"
## [18726] "2011-03-26" "2011-11-06" "2011-03-26" "2011-03-26" "2011-03-02"
## [18731] "2012-10-19" "2013-01-01" "2011-03-02" "2011-03-02" "2011-03-02"
## [18736] "2012-10-19" "2012-10-19" "2012-10-19" "2011-03-02" "2012-10-19"
## [18741] "2013-01-01" "2012-11-09" "2012-11-09" "2012-11-16" "2013-02-11"
## [18746] "2012-11-16" "2012-11-09" "2013-12-21" "2013-12-21" "2013-12-21"
## [18751] "2013-12-21" "2012-11-09" "2013-12-21" "2013-02-11" "2012-11-16"
## [18756] "2012-11-16" "2012-11-16" "2012-11-09" "2012-07-22" "2012-07-22"
## [18761] "2012-07-24" "2012-05-18" "2012-07-24" "2012-07-24" "2012-07-22"
## [18766] "2012-05-18" "2012-07-22" "2012-07-24" "2012-05-09" "2012-07-24"
## [18771] "2014-01-30" "2014-01-30" "2012-05-09" "2012-07-22" "2011-06-27"
## [18776] "2011-06-27" "2014-02-16" "2014-02-16" "2012-01-10" "2011-05-19"
## [18781] "2011-03-06" "2011-03-06" "2012-01-05" "2011-05-19" "2011-03-06"
## [18786] "2011-03-06" "2012-01-10" "2011-03-06" "2011-12-15" "2011-05-19"
## [18791] "2011-12-15" "2012-01-05" "2011-12-06" "2012-12-10" "2011-12-06"
## [18796] "2011-02-22" "2012-12-10" "2011-12-06" "2011-02-16" "2011-12-06"
## [18801] "2012-12-10" "2011-02-22" "2011-02-16" "2011-02-28" "2011-02-19"
## [18806] "2011-02-19" "2011-02-19" "2013-04-21" "2011-02-28" "2011-02-28"
## [18811] "2011-02-19" "2011-02-28" "2011-02-19" "2013-04-21" "2011-02-28"
## [18816] "2013-04-21" "2013-01-03" "2011-02-08" "2013-01-03" "2011-02-08"
## [18821] "2011-02-08" "2012-09-05" "2011-02-08" "2011-02-08" "2012-09-05"
## [18826] "2012-10-19" "2012-10-19" "2012-10-19" "2011-10-27" "2012-10-19"
## [18831] "2012-10-19" "2011-10-27" "2012-08-17" "2012-08-10" "2011-06-02"
## [18836] "2012-08-17" "2012-08-17" "2012-08-17" "2012-08-17" "2012-08-10"
## [18841] "2011-06-02" "2012-08-10" "2012-08-10" "2012-08-10" "2012-01-10"
## [18846] "2012-01-10" "2012-01-10" "2013-03-20" "2013-03-20" "2013-03-20"
## [18851] "2013-02-03" "2011-12-18" "2013-02-08" "2013-02-08" "2011-12-18"
## [18856] "2011-12-18" "2013-02-03" "2013-02-01" "2013-02-01" "2013-02-05"
## [18861] "2011-12-17" "2013-02-05" "2011-12-17" "2011-12-17" "2012-10-19"
## [18866] "2012-10-16" "2012-10-16" "2012-10-16" "2012-10-19" "2012-10-19"
## [18871] "2012-11-20" "2012-11-11" "2012-11-11" "2012-11-20" "2013-01-15"
## [18876] "2013-08-14" "2013-08-14" "2013-08-14" "2013-01-15" "2013-01-15"
## [18881] "2012-03-02" "2012-03-02" "2013-08-14" "2013-08-14" "2013-01-15"
## [18886] "2013-01-15" "2011-06-26" "2011-10-03" "2011-10-03" "2011-06-26"
## [18891] "2011-06-26" "2011-10-03" "2013-08-21" "2013-08-12" "2013-08-12"
## [18896] "2013-08-21" "2011-06-26" "2011-06-26" "2012-07-31" "2012-07-31"
## [18901] "2013-01-05" "2013-01-05" "2013-01-11" "2013-01-11" "2011-05-08"
## [18906] "2013-02-08" "2013-02-08" "2011-05-08" "2011-05-08" "2013-05-02"
## [18911] "2013-05-02" "2013-05-07" "2014-01-04" "2014-01-04" "2013-05-07"
## [18916] "2011-06-09" "2011-08-16" "2011-08-16" "2011-06-09" "2011-06-09"
## [18921] "2012-10-19" "2012-10-19" "2012-10-28" "2012-10-19" "2012-10-19"
## [18926] "2012-10-19" "2012-10-28" "2012-10-28" "2012-10-28" "2012-10-28"
## [18931] "2012-10-19" "2012-10-28" "2013-04-25" "2013-04-25" "2013-04-25"
## [18936] "2013-04-25" "2013-05-14" "2013-04-25" "2013-05-14" "2013-05-14"
## [18941] "2012-07-23" "2012-07-23" "2012-07-24" "2012-07-24" "2012-07-24"
## [18946] "2012-07-24" "2011-10-04" "2011-10-04" "2012-07-23" "2012-07-24"
## [18951] "2011-09-24" "2011-07-08" "2011-09-24" "2011-07-08" "2011-07-08"
## [18956] "2011-10-10" "2012-11-28" "2012-11-28" "2011-10-10" "2012-11-28"
## [18961] "2012-11-28" "2013-07-16" "2012-11-28" "2011-10-10" "2013-07-16"
## [18966] "2011-11-22" "2012-10-20" "2012-10-21" "2011-11-22" "2012-10-21"
## [18971] "2012-10-21" "2011-11-22" "2013-11-09" "2012-10-20" "2012-10-21"
## [18976] "2013-11-09" "2011-11-22" "2013-11-09" "2012-05-30" "2012-05-30"
## [18981] "2012-05-30" "2011-09-13" "2013-12-20" "2013-08-12" "2012-06-09"
## [18986] "2012-05-30" "2013-09-09" "2013-09-09" "2013-08-12" "2013-12-20"
## [18991] "2012-06-09" "2013-12-20" "2013-12-20" "2011-09-13" "2012-06-09"
## [18996] "2013-09-09" "2011-11-13" "2012-06-09" "2011-11-13" "2013-12-20"
## [19001] "2012-04-28" "2011-12-06" "2011-12-16" "2012-04-28" "2011-12-16"
## [19006] "2011-12-06" "2011-12-29" "2013-08-10" "2013-08-10" "2011-12-29"
## [19011] "2011-11-17" "2011-11-17" "2011-11-17" "2011-11-17" "2011-11-17"
## [19016] "2013-03-04" "2012-02-11" "2013-03-04" "2011-12-04" "2013-03-04"
## [19021] "2011-12-04" "2011-12-04" "2012-02-11" "2012-02-11" "2012-08-02"
## [19026] "2011-05-25" "2012-08-02" "2011-05-25" "2012-12-03" "2012-12-03"
## [19031] "2012-12-03" "2012-08-02" "2012-12-03" "2012-12-03" "2011-05-25"
## [19036] "2011-11-22" "2011-03-21" "2011-03-21" "2011-11-22" "2011-11-22"
## [19041] "2011-11-22" "2011-11-22" "2011-09-22" "2011-09-22" "2011-09-22"
## [19046] "2011-06-13" "2012-04-05" "2012-04-13" "2012-04-05" "2013-08-06"
## [19051] "2012-04-13" "2012-04-13" "2012-05-02" "2011-06-13" "2012-04-05"
## [19056] "2012-04-13" "2012-04-05" "2014-01-01" "2012-05-02" "2012-05-02"
## [19061] "2014-01-01" "2013-08-06" "2014-01-01" "2014-01-01" "2012-04-05"
## [19066] "2011-06-13" "2011-06-13" "2012-04-13" "2011-06-13" "2013-02-11"
## [19071] "2012-10-13" "2013-02-16" "2012-10-13" "2013-02-11" "2013-02-16"
## [19076] "2013-02-11" "2013-02-16" "2014-01-26" "2013-02-01" "2012-09-29"
## [19081] "2013-07-29" "2013-04-10" "2014-01-26" "2013-02-01" "2013-02-01"
## [19086] "2013-02-01" "2012-09-19" "2014-01-26" "2014-01-26" "2012-09-29"
## [19091] "2012-09-19" "2012-09-29" "2013-07-29" "2014-01-26" "2013-07-29"
## [19096] "2012-09-19" "2013-04-10" "2013-09-16" "2011-12-13" "2013-09-16"
## [19101] "2013-09-16" "2013-09-16" "2014-02-28" "2014-02-28" "2013-09-16"
## [19106] "2011-12-13" "2011-12-13" "2014-02-20" "2014-02-28" "2011-12-13"
## [19111] "2014-02-20" "2014-02-20" "2013-09-08" "2013-08-07" "2013-08-12"
## [19116] "2013-08-07" "2013-08-29" "2013-09-08" "2013-08-12" "2013-08-29"
## [19121] "2012-01-22" "2013-12-06" "2012-01-22" "2012-01-22" "2013-06-15"
## [19126] "2013-12-06" "2013-12-06" "2013-06-15" "2013-06-15" "2012-04-04"
## [19131] "2013-08-30" "2012-04-04" "2012-04-05" "2012-04-04" "2013-08-30"
## [19136] "2012-04-04" "2012-06-14" "2012-06-14" "2012-04-05" "2012-04-05"
## [19141] "2012-04-05" "2012-04-05" "2012-04-04" "2013-08-30" "2012-06-14"
## [19146] "2013-03-03" "2013-03-09" "2013-03-03" "2013-03-03" "2014-01-10"
## [19151] "2013-03-09" "2013-03-09" "2013-03-09" "2012-07-26" "2013-03-03"
## [19156] "2014-01-10" "2013-03-09" "2012-07-26" "2013-03-03" "2012-07-26"
## [19161] "2012-07-26" "2013-03-09" "2012-07-26" "2013-03-03" "2012-07-27"
## [19166] "2012-07-27" "2013-10-31" "2012-10-18" "2013-10-31" "2012-10-18"
## [19171] "2012-04-18" "2012-01-11" "2012-04-18" "2012-04-18" "2012-04-18"
## [19176] "2012-01-11" "2012-04-18" "2012-01-11" "2012-01-11" "2012-01-08"
## [19181] "2012-01-08" "2012-01-08" "2014-01-13" "2012-01-08" "2012-01-08"
## [19186] "2014-01-13" "2014-01-13" "2012-01-08" "2011-11-13" "2011-11-13"
## [19191] "2012-10-26" "2012-10-26" "2013-02-12" "2011-10-19" "2013-02-12"
## [19196] "2011-10-19" "2012-06-02" "2012-06-02" "2013-01-23" "2013-01-23"
## [19201] "2013-01-23" "2013-01-23" "2012-12-10" "2012-12-10" "2012-12-10"
## [19206] "2013-01-23" "2013-03-24" "2013-02-19" "2013-02-19" "2013-02-19"
## [19211] "2013-03-24" "2013-04-02" "2013-04-29" "2013-04-02" "2013-02-19"
## [19216] "2013-04-02" "2013-04-29" "2013-03-24" "2013-04-02" "2013-04-02"
## [19221] "2013-04-02" "2013-02-19" "2013-03-24" "2013-10-27" "2013-10-28"
## [19226] "2013-10-27" "2013-10-27" "2011-01-30" "2011-01-30" "2011-01-30"
## [19231] "2013-10-28" "2012-06-16" "2012-08-26" "2012-08-26" "2011-01-30"
## [19236] "2013-10-28" "2012-06-16" "2012-08-26" "2011-01-30" "2013-12-27"
## [19241] "2012-08-23" "2012-08-23" "2012-08-23" "2013-12-27" "2013-12-27"
## [19246] "2012-08-23" "2011-02-18" "2011-08-16" "2011-02-18" "2011-08-16"
## [19251] "2011-03-01" "2011-03-01" "2013-08-06" "2014-02-27" "2014-02-20"
## [19256] "2014-02-27" "2013-08-06" "2013-08-06" "2013-08-06" "2014-02-20"
## [19261] "2013-06-25" "2014-02-27" "2014-02-27" "2014-02-27" "2011-02-17"
## [19266] "2014-02-27" "2014-02-20" "2014-02-20" "2013-10-26" "2013-06-25"
## [19271] "2011-02-17" "2014-02-20" "2014-02-20" "2013-06-25" "2013-10-26"
## [19276] "2013-10-26" "2013-03-22" "2013-11-18" "2011-08-02" "2011-08-02"
## [19281] "2013-03-22" "2013-03-22" "2013-03-22" "2013-11-18" "2013-11-18"
## [19286] "2013-11-18" "2013-03-12" "2013-11-18" "2013-03-12" "2013-03-22"
## [19291] "2013-03-12" "2011-08-02" "2011-08-02" "2013-07-20" "2013-07-20"
## [19296] "2013-11-18" "2013-03-12" "2011-08-02" "2013-03-12" "2011-10-25"
## [19301] "2013-04-29" "2012-07-23" "2013-04-29" "2011-10-25" "2011-10-25"
## [19306] "2012-07-23" "2013-08-23" "2011-04-08" "2011-04-08" "2013-08-23"
## [19311] "2011-07-19" "2011-07-19" "2011-07-19" "2013-09-05" "2013-09-05"
## [19316] "2011-03-20" "2011-01-25" "2011-01-25" "2011-03-20" "2012-11-18"
## [19321] "2011-01-25" "2011-01-25" "2012-11-18" "2011-01-25" "2011-03-20"
## [19326] "2012-11-18" "2012-01-22" "2012-10-16" "2011-05-30" "2011-05-30"
## [19331] "2012-01-22" "2012-10-16" "2011-03-11" "2012-10-16" "2012-01-22"
## [19336] "2012-01-22" "2011-05-30" "2012-10-16" "2012-01-22" "2011-03-11"
## [19341] "2011-03-11" "2011-07-24" "2012-11-15" "2012-11-15" "2012-11-15"
## [19346] "2011-07-24" "2011-07-24" "2011-07-24" "2012-11-15" "2011-07-24"
## [19351] "2012-11-15" "2011-07-24" "2011-12-28" "2012-06-24" "2012-06-24"
## [19356] "2011-12-28" "2011-08-20" "2014-01-26" "2014-01-26" "2011-08-20"
## [19361] "2014-01-18" "2014-01-18" "2014-01-04" "2014-01-04" "2012-06-01"
## [19366] "2014-01-24" "2014-01-24" "2014-01-04" "2012-06-01" "2011-11-19"
## [19371] "2011-03-17" "2013-10-15" "2011-03-17" "2011-05-09" "2013-01-04"
## [19376] "2013-10-15" "2013-10-15" "2011-05-09" "2013-01-04" "2013-01-04"
## [19381] "2011-11-19" "2011-05-09" "2011-11-19" "2013-12-08" "2013-12-08"
## [19386] "2013-12-08" "2013-12-08" "2013-12-08" "2013-12-08" "2011-07-27"
## [19391] "2011-09-30" "2012-03-23" "2011-08-09" "2013-06-26" "2012-03-23"
## [19396] "2011-09-30" "2011-08-09" "2013-09-14" "2013-09-14" "2013-06-26"
## [19401] "2011-07-27" "2013-11-01" "2011-08-09" "2013-11-01" "2012-03-23"
## [19406] "2012-03-23" "2011-08-09" "2012-03-23" "2011-07-27" "2011-07-27"
## [19411] "2012-03-23" "2011-07-27" "2011-11-11" "2011-11-18" "2013-12-27"
## [19416] "2014-02-07" "2014-02-07" "2013-12-27" "2014-02-07" "2011-11-11"
## [19421] "2011-11-18" "2014-02-07" "2014-02-07" "2013-12-27" "2011-08-24"
## [19426] "2012-08-30" "2011-08-24" "2011-10-25" "2011-09-03" "2012-08-30"
## [19431] "2011-08-30" "2011-10-25" "2011-08-30" "2011-09-03" "2011-10-25"
## [19436] "2012-10-14" "2012-10-14" "2012-10-14" "2012-10-14" "2012-10-14"
## [19441] "2011-12-11" "2011-12-11" "2012-10-14" "2012-12-16" "2013-05-03"
## [19446] "2012-12-16" "2013-05-03" "2013-05-03" "2011-10-08" "2012-12-16"
## [19451] "2011-10-08" "2012-11-08" "2014-01-20" "2012-02-13" "2012-02-13"
## [19456] "2012-02-13" "2012-11-08" "2012-11-08" "2012-11-08" "2012-11-08"
## [19461] "2012-02-13" "2012-02-13" "2012-11-08" "2014-01-20" "2014-01-20"
## [19466] "2012-07-14" "2012-07-14" "2012-07-14" "2012-07-14" "2012-07-14"
## [19471] "2011-11-09" "2013-05-01" "2013-05-01" "2013-04-30" "2013-04-30"
## [19476] "2012-06-21" "2012-06-12" "2013-04-30" "2013-04-30" "2011-11-09"
## [19481] "2012-06-21" "2013-05-01" "2013-04-30" "2012-06-12" "2013-12-23"
## [19486] "2013-12-23" "2012-08-27" "2012-08-27" "2013-12-23" "2013-12-07"
## [19491] "2011-06-30" "2011-06-30" "2013-02-25" "2013-12-07" "2013-12-07"
## [19496] "2011-06-30" "2013-12-07" "2013-02-20" "2013-12-07" "2013-12-07"
## [19501] "2013-02-20" "2013-02-25" "2013-02-25" "2011-07-27" "2011-07-27"
## [19506] "2011-07-27" "2011-07-31" "2011-07-31" "2011-07-31" "2011-05-07"
## [19511] "2011-05-07" "2012-06-26" "2012-06-26" "2012-12-05" "2012-12-05"
## [19516] "2013-07-16" "2012-12-05" "2013-07-16" "2012-12-05" "2012-12-05"
## [19521] "2013-07-16" "2013-07-16" "2013-01-13" "2013-01-13" "2012-09-08"
## [19526] "2012-09-08" "2013-01-13" "2013-01-13" "2011-09-18" "2013-01-13"
## [19531] "2013-03-14" "2012-09-17" "2012-09-08" "2012-09-17" "2011-09-18"
## [19536] "2012-09-08" "2013-03-14" "2012-09-08" "2012-09-17" "2011-09-18"
## [19541] "2013-04-20" "2013-04-21" "2012-04-01" "2013-04-20" "2013-04-21"
## [19546] "2013-01-29" "2012-04-01" "2013-01-29" "2011-11-17" "2013-12-01"
## [19551] "2013-12-01" "2011-11-28" "2011-11-28" "2011-11-17" "2011-11-28"
## [19556] "2011-11-28" "2013-12-01" "2011-11-28" "2012-02-22" "2012-02-22"
## [19561] "2013-12-01" "2013-11-25" "2013-10-04" "2013-11-07" "2013-11-25"
## [19566] "2013-11-25" "2013-11-07" "2013-11-25" "2013-11-07" "2013-11-25"
## [19571] "2013-11-07" "2013-11-25" "2013-10-04" "2013-11-07" "2013-09-26"
## [19576] "2012-03-14" "2012-03-14" "2012-03-14" "2013-09-26" "2012-03-14"
## [19581] "2012-03-14" "2012-03-14" "2013-09-26" "2011-09-07" "2011-09-07"
## [19586] "2011-07-05" "2011-07-05" "2011-07-05" "2011-08-28" "2011-08-28"
## [19591] "2011-09-07" "2011-08-28" "2013-03-22" "2011-11-02" "2011-10-14"
## [19596] "2011-10-14" "2013-03-22" "2011-11-02" "2013-03-22" "2013-03-22"
## [19601] "2011-10-14" "2011-11-02" "2011-10-14" "2011-11-14" "2011-11-02"
## [19606] "2011-10-14" "2011-11-14" "2011-11-29" "2011-06-15" "2011-06-08"
## [19611] "2011-06-08" "2011-11-29" "2011-11-29" "2011-06-15" "2011-06-12"
## [19616] "2014-01-13" "2011-06-12" "2011-06-12" "2014-01-13" "2014-01-13"
## [19621] "2011-06-12" "2011-06-12" "2013-12-27" "2013-12-27" "2013-04-19"
## [19626] "2013-12-24" "2013-04-19" "2013-12-24" "2013-12-24" "2013-04-19"
## [19631] "2013-12-27" "2013-04-19" "2013-05-18" "2013-05-18" "2013-05-18"
## [19636] "2013-05-18" "2012-12-07" "2012-09-18" "2012-12-07" "2012-12-07"
## [19641] "2012-12-07" "2012-12-07" "2012-09-18" "2012-11-01" "2012-03-25"
## [19646] "2012-11-01" "2012-03-26" "2011-07-26" "2011-07-26" "2012-03-26"
## [19651] "2011-07-26" "2012-11-01" "2012-11-01" "2012-03-25" "2012-03-25"
## [19656] "2011-07-26" "2011-07-26" "2012-03-26" "2012-10-21" "2012-10-21"
## [19661] "2012-10-21" "2012-10-21" "2012-10-21" "2011-10-26" "2013-04-02"
## [19666] "2011-10-26" "2013-04-02" "2011-10-26" "2012-02-21" "2012-02-21"
## [19671] "2011-10-26" "2011-10-26" "2012-02-28" "2012-02-28" "2012-02-28"
## [19676] "2013-04-02" "2012-02-21" "2013-09-15" "2011-04-17" "2011-04-17"
## [19681] "2013-09-21" "2011-03-31" "2013-09-15" "2011-03-31" "2013-07-12"
## [19686] "2011-04-17" "2011-03-31" "2013-09-15" "2013-09-15" "2013-09-15"
## [19691] "2013-07-12" "2014-02-03" "2013-09-21" "2011-03-31" "2013-07-12"
## [19696] "2013-09-21" "2014-02-03" "2013-09-21" "2013-07-12" "2013-09-21"
## [19701] "2011-03-31" "2013-07-12" "2012-01-19" "2012-11-29" "2012-11-29"
## [19706] "2012-04-27" "2012-08-22" "2012-01-19" "2012-11-29" "2013-07-21"
## [19711] "2013-07-21" "2012-08-22" "2012-11-29" "2012-01-19" "2013-07-21"
## [19716] "2012-08-22" "2012-01-19" "2012-04-27" "2012-01-19" "2012-04-27"
## [19721] "2012-11-29" "2013-07-21" "2013-10-27" "2013-12-21" "2012-04-13"
## [19726] "2013-10-27" "2012-04-13" "2013-12-21" "2013-10-27" "2013-10-27"
## [19731] "2013-12-21" "2013-10-27" "2012-09-14" "2011-11-26" "2011-11-26"
## [19736] "2012-09-14" "2012-09-14" "2012-09-14" "2012-09-14" "2012-01-18"
## [19741] "2012-01-18" "2013-07-30" "2013-07-30" "2012-02-29" "2013-07-30"
## [19746] "2013-10-28" "2012-02-29" "2013-10-28" "2013-07-29" "2013-07-30"
## [19751] "2013-07-29" "2013-07-30" "2013-12-19" "2013-12-19" "2013-05-25"
## [19756] "2013-12-19" "2013-05-25" "2011-09-19" "2011-09-25" "2011-09-19"
## [19761] "2012-10-09" "2011-09-25" "2013-01-12" "2011-09-19" "2013-01-12"
## [19766] "2013-01-12" "2011-09-19" "2011-07-07" "2011-09-25" "2012-10-09"
## [19771] "2012-07-15" "2011-09-25" "2011-07-07" "2013-01-12" "2013-01-12"
## [19776] "2012-07-15" "2013-03-21" "2013-03-21" "2013-03-13" "2013-03-13"
## [19781] "2013-03-21" "2013-03-21" "2013-03-13" "2013-03-13" "2013-03-13"
## [19786] "2013-03-21" "2013-11-26" "2013-12-04" "2013-12-04" "2013-12-04"
## [19791] "2013-12-04" "2013-11-26" "2013-11-26" "2013-11-26" "2013-12-04"
## [19796] "2013-12-04" "2013-11-26" "2013-11-26" "2011-10-08" "2011-10-08"
## [19801] "2013-04-05" "2011-10-08" "2013-04-05" "2011-10-08" "2013-04-05"
## [19806] "2011-10-08" "2013-04-04" "2011-10-10" "2013-04-05" "2013-04-04"
## [19811] "2011-10-10" "2011-10-10" "2013-04-04" "2013-04-04" "2011-10-10"
## [19816] "2011-10-10" "2013-07-03" "2011-06-05" "2012-03-22" "2011-09-08"
## [19821] "2012-03-22" "2013-07-03" "2013-07-03" "2013-07-03" "2011-06-05"
## [19826] "2011-09-08" "2013-06-07" "2013-06-07" "2014-01-20" "2012-08-25"
## [19831] "2012-08-25" "2014-01-20" "2012-08-25" "2012-08-25" "2014-01-20"
## [19836] "2012-08-25" "2013-06-07" "2011-12-11" "2011-12-11" "2011-12-11"
## [19841] "2011-12-11" "2011-12-11" "2011-06-26" "2011-06-26" "2012-12-05"
## [19846] "2012-12-05" "2011-08-09" "2011-08-09" "2011-08-09" "2011-08-09"
## [19851] "2011-08-09" "2012-05-22" "2011-08-09" "2012-02-21" "2012-05-22"
## [19856] "2012-02-21" "2013-05-29" "2012-06-03" "2012-06-03" "2013-06-03"
## [19861] "2011-08-03" "2012-06-03" "2013-05-29" "2013-05-29" "2013-06-03"
## [19866] "2013-06-03" "2011-08-03" "2011-08-03" "2013-05-19" "2013-05-19"
## [19871] "2012-10-10" "2012-10-10" "2012-04-01" "2012-09-12" "2012-10-10"
## [19876] "2012-10-10" "2012-09-12" "2013-01-20" "2012-04-01" "2012-10-10"
## [19881] "2012-09-12" "2012-09-12" "2013-01-20" "2012-09-12" "2012-04-01"
## [19886] "2014-02-04" "2014-02-04" "2014-02-04" "2012-11-30" "2012-11-30"
## [19891] "2012-11-03" "2012-11-03" "2012-11-03" "2012-11-03" "2012-11-03"
## [19896] "2011-04-14" "2011-04-14" "2011-04-14" "2011-04-14" "2011-04-19"
## [19901] "2011-04-14" "2011-04-19" "2011-04-19" "2011-08-28" "2011-04-19"
## [19906] "2011-08-28" "2011-08-28" "2011-08-28" "2011-04-19" "2011-08-24"
## [19911] "2012-06-12" "2011-08-24" "2013-11-13" "2012-11-06" "2012-05-09"
## [19916] "2011-08-24" "2012-11-06" "2012-05-09" "2012-05-09" "2012-11-06"
## [19921] "2013-11-13" "2012-06-12" "2011-10-10" "2013-11-13" "2012-05-09"
## [19926] "2011-08-24" "2012-06-12" "2013-01-26" "2011-08-24" "2011-10-10"
## [19931] "2013-01-26" "2013-11-13" "2011-04-15" "2013-01-26" "2012-05-09"
## [19936] "2013-01-26" "2013-01-26" "2011-04-15" "2013-11-13" "2013-11-13"
## [19941] "2011-10-11" "2011-10-11" "2011-01-27" "2011-01-27" "2011-10-11"
## [19946] "2011-01-27" "2011-10-11" "2011-01-27" "2011-01-27" "2011-01-27"
## [19951] "2011-10-11" "2011-11-22" "2011-11-22" "2011-07-26" "2011-07-26"
## [19956] "2013-04-15" "2011-02-04" "2011-02-04" "2011-12-31" "2011-12-31"
## [19961] "2013-04-15" "2012-02-10" "2012-02-10" "2012-09-06" "2013-12-01"
## [19966] "2013-12-01" "2012-09-06" "2012-09-06" "2013-12-01" "2013-12-01"
## [19971] "2012-06-28" "2011-08-30" "2012-12-12" "2012-12-12" "2014-01-18"
## [19976] "2014-01-18" "2012-12-12" "2014-01-18" "2011-08-30" "2012-12-12"
## [19981] "2012-12-12" "2012-06-28" "2014-01-18" "2011-08-30" "2012-12-12"
## [19986] "2014-01-18" "2012-11-22" "2012-11-22" "2012-11-22" "2012-04-14"
## [19991] "2012-04-14" "2012-04-14" "2012-04-14" "2012-04-14" "2012-04-14"
## [19996] "2012-04-14" "2012-04-14" "2012-04-14" "2012-04-14" "2012-03-30"
## [20001] "2012-03-30" "2012-03-30" "2011-07-29" "2011-08-02" "2013-08-14"
## [20006] "2011-08-02" "2011-07-29" "2013-08-14" "2013-08-14" "2011-07-29"
## [20011] "2011-08-02" "2012-08-30" "2012-08-25" "2012-08-30" "2012-09-03"
## [20016] "2012-09-03" "2012-08-25" "2013-06-01" "2013-06-01" "2012-08-31"
## [20021] "2012-10-18" "2012-10-18" "2013-05-27" "2012-08-31" "2013-05-27"
## [20026] "2013-05-27" "2012-08-31" "2012-10-18" "2013-05-27" "2013-05-27"
## [20031] "2013-01-30" "2013-01-30" "2013-01-30" "2013-01-27" "2012-02-21"
## [20036] "2013-01-30" "2013-01-27" "2013-01-22" "2012-02-21" "2013-01-22"
## [20041] "2013-01-22" "2013-01-30" "2012-08-27" "2012-08-27" "2012-08-27"
## [20046] "2012-08-27" "2012-08-27" "2012-08-27" "2011-11-08" "2011-11-08"
## [20051] "2012-03-27" "2012-03-27" "2012-03-27" "2012-03-30" "2012-03-27"
## [20056] "2012-03-30" "2012-03-27" "2012-03-30" "2012-03-30" "2012-03-30"
## [20061] "2012-03-30" "2012-03-27" "2012-12-31" "2012-12-31" "2012-12-31"
## [20066] "2011-04-21" "2014-01-03" "2011-04-21" "2014-01-03" "2011-04-21"
## [20071] "2011-04-21" "2011-04-21" "2014-01-03" "2014-01-03" "2014-01-03"
## [20076] "2012-06-27" "2012-06-27" "2013-04-16" "2013-04-16" "2013-04-16"
## [20081] "2012-09-16" "2012-09-16" "2013-09-26" "2012-09-16" "2012-09-16"
## [20086] "2012-04-14" "2012-04-08" "2012-04-14" "2013-09-26" "2012-04-08"
## [20091] "2012-09-16" "2013-09-26" "2012-01-14" "2012-01-14" "2014-01-31"
## [20096] "2012-06-29" "2014-01-30" "2012-06-29" "2012-06-29" "2014-01-30"
## [20101] "2014-01-31" "2014-01-30" "2014-01-31" "2012-05-21" "2011-05-16"
## [20106] "2012-05-17" "2012-05-17" "2012-05-21" "2011-05-16" "2011-05-16"
## [20111] "2011-05-13" "2012-05-17" "2011-05-16" "2011-05-13" "2012-05-21"
## [20116] "2012-05-24" "2012-05-24" "2011-05-16" "2011-04-06" "2013-10-10"
## [20121] "2011-04-06" "2013-10-10" "2011-04-06" "2011-08-11" "2011-12-16"
## [20126] "2011-08-11" "2013-08-28" "2013-06-06" "2011-12-16" "2011-12-16"
## [20131] "2013-06-29" "2011-12-16" "2013-06-29" "2013-08-28" "2013-06-06"
## [20136] "2011-12-16" "2013-01-23" "2013-01-23" "2013-01-23" "2013-03-27"
## [20141] "2013-03-27" "2013-03-27" "2013-03-27" "2013-03-27" "2011-02-03"
## [20146] "2011-02-03" "2012-06-13" "2012-02-17" "2011-02-03" "2012-01-23"
## [20151] "2013-05-17" "2012-06-13" "2012-02-17" "2011-02-03" "2013-05-17"
## [20156] "2012-01-23" "2012-02-17" "2012-01-23" "2013-12-23" "2012-12-18"
## [20161] "2012-05-07" "2013-12-23" "2013-05-09" "2012-05-07" "2011-05-08"
## [20166] "2012-12-18" "2013-05-09" "2012-05-07" "2011-05-18" "2011-05-08"
## [20171] "2012-05-07" "2012-05-07" "2011-05-18" "2012-12-28" "2013-12-23"
## [20176] "2012-12-28" "2012-05-04" "2012-06-13" "2012-05-04" "2012-06-13"
## [20181] "2012-05-04" "2012-05-04" "2012-06-13" "2012-05-04" "2012-06-13"
## [20186] "2012-05-06" "2012-05-06" "2012-05-06" "2012-05-06" "2012-05-06"
## [20191] "2013-03-01" "2012-04-18" "2012-04-10" "2011-01-29" "2012-10-04"
## [20196] "2012-05-08" "2012-10-04" "2013-03-01" "2012-05-08" "2011-01-29"
## [20201] "2012-04-10" "2012-04-18" "2012-04-18" "2012-04-10" "2013-03-01"
## [20206] "2013-03-01" "2012-05-02" "2012-05-02" "2011-05-14" "2013-09-02"
## [20211] "2013-09-02" "2011-05-14" "2013-09-02" "2013-07-16" "2013-10-23"
## [20216] "2013-10-18" "2013-07-16" "2013-10-18" "2013-10-23" "2011-01-26"
## [20221] "2013-10-23" "2013-10-23" "2013-10-18" "2013-10-23" "2011-01-26"
## [20226] "2013-06-18" "2013-10-18" "2011-01-26" "2013-07-16" "2013-10-18"
## [20231] "2013-06-18" "2011-01-26" "2011-01-26" "2013-07-24" "2013-07-24"
## [20236] "2013-07-24" "2013-07-24" "2013-07-24" "2011-11-03" "2011-11-03"
## [20241] "2012-12-13" "2012-12-13" "2012-12-13" "2013-11-18" "2013-09-26"
## [20246] "2013-11-18" "2013-09-26" "2013-09-26" "2013-09-26" "2013-11-18"
## [20251] "2013-11-18" "2013-09-26" "2013-11-18" "2012-06-17" "2012-06-17"
## [20256] "2012-07-06" "2012-07-06" "2012-07-06" "2012-06-17" "2013-08-28"
## [20261] "2012-10-27" "2013-08-28" "2013-02-09" "2012-10-27" "2013-08-28"
## [20266] "2013-02-09" "2012-10-27" "2012-10-27" "2013-08-28" "2013-08-28"
## [20271] "2013-02-09" "2012-10-27" "2012-10-28" "2012-10-28" "2012-01-17"
## [20276] "2012-01-17" "2012-10-28" "2012-10-28" "2012-10-28" "2012-10-28"
## [20281] "2013-04-05" "2011-12-12" "2013-09-14" "2013-04-05" "2011-12-12"
## [20286] "2013-09-14" "2012-02-27" "2012-02-27" "2012-02-27" "2013-04-10"
## [20291] "2013-04-10" "2013-04-10" "2013-04-10" "2013-04-10" "2012-02-27"
## [20296] "2012-02-27" "2011-05-28" "2013-12-07" "2011-05-28" "2013-11-29"
## [20301] "2013-12-07" "2011-05-28" "2013-09-20" "2013-11-29" "2013-12-07"
## [20306] "2013-09-20" "2013-11-29" "2011-02-26" "2011-03-28" "2011-03-28"
## [20311] "2011-02-26" "2011-02-26" "2011-02-26" "2011-03-28" "2012-11-02"
## [20316] "2013-08-26" "2013-08-26" "2012-10-31" "2012-11-02" "2012-11-02"
## [20321] "2012-09-25" "2012-10-31" "2012-10-31" "2013-08-26" "2012-11-02"
## [20326] "2012-11-02" "2012-10-31" "2012-09-25" "2012-09-25" "2012-10-31"
## [20331] "2011-10-29" "2011-10-29" "2011-09-25" "2011-09-25" "2011-09-20"
## [20336] "2011-09-20" "2013-03-22" "2013-03-22" "2012-12-02" "2013-05-04"
## [20341] "2012-12-02" "2013-05-11" "2013-03-22" "2013-05-11" "2013-03-22"
## [20346] "2012-12-02" "2013-05-04" "2013-05-17" "2012-12-02" "2013-05-17"
## [20351] "2013-05-17" "2012-12-02" "2013-05-04" "2013-05-11" "2013-03-22"
## [20356] "2013-03-11" "2013-03-11" "2012-10-27" "2013-03-11" "2013-03-11"
## [20361] "2013-03-11" "2013-03-11" "2012-10-27" "2011-06-18" "2013-01-27"
## [20366] "2013-01-27" "2013-03-31" "2013-01-27" "2011-06-18" "2012-08-08"
## [20371] "2013-01-27" "2013-01-27" "2012-08-08" "2013-03-31" "2013-03-31"
## [20376] "2012-11-20" "2013-09-23" "2013-09-23" "2012-07-10" "2013-09-23"
## [20381] "2012-07-10" "2012-11-20" "2012-07-10" "2011-10-09" "2011-10-17"
## [20386] "2011-10-17" "2013-07-21" "2011-10-09" "2011-10-17" "2011-10-09"
## [20391] "2011-10-09" "2013-07-21" "2013-03-24" "2011-10-09" "2011-10-17"
## [20396] "2013-03-24" "2013-03-24" "2013-03-24" "2013-03-24" "2013-03-24"
## [20401] "2011-10-17" "2014-01-31" "2014-01-31" "2011-02-18" "2011-02-18"
## [20406] "2011-12-30" "2011-12-30" "2011-12-30" "2011-12-30" "2011-02-01"
## [20411] "2011-02-01" "2012-06-11" "2011-02-01" "2011-02-01" "2011-02-01"
## [20416] "2011-12-30" "2012-06-11" "2013-12-12" "2012-03-04" "2012-07-05"
## [20421] "2012-07-05" "2013-12-12" "2013-12-12" "2012-07-05" "2012-07-05"
## [20426] "2012-07-05" "2012-03-04" "2013-12-12" "2012-03-04" "2012-03-04"
## [20431] "2012-01-10" "2013-02-15" "2012-01-10" "2011-03-31" "2011-03-31"
## [20436] "2011-03-31" "2012-01-10" "2012-01-10" "2012-05-18" "2013-02-15"
## [20441] "2012-01-10" "2013-02-15" "2012-05-18" "2013-02-15" "2013-02-15"
## [20446] "2013-07-26" "2013-07-26" "2013-07-26" "2012-06-24" "2012-06-24"
## [20451] "2011-11-05" "2012-11-14" "2012-11-14" "2012-11-14" "2012-06-24"
## [20456] "2012-06-24" "2012-06-24" "2011-11-05" "2012-05-23" "2011-03-24"
## [20461] "2011-03-24" "2011-04-26" "2012-05-23" "2012-05-23" "2011-04-26"
## [20466] "2012-05-23" "2011-03-24" "2011-03-24" "2011-03-24" "2012-02-19"
## [20471] "2012-02-19" "2011-03-24" "2011-12-24" "2013-05-29" "2013-05-29"
## [20476] "2011-12-24" "2011-12-24" "2013-05-29" "2013-05-29" "2013-05-29"
## [20481] "2013-05-29" "2011-05-04" "2012-02-29" "2011-05-04" "2011-05-04"
## [20486] "2012-02-29" "2011-05-04" "2012-02-29" "2011-05-04" "2011-04-23"
## [20491] "2013-07-11" "2011-04-23" "2011-04-23" "2013-07-11" "2013-07-11"
## [20496] "2013-07-06" "2011-06-02" "2013-07-06" "2013-07-06" "2013-07-11"
## [20501] "2013-07-11" "2013-07-06" "2011-06-02" "2013-07-06" "2013-07-06"
## [20506] "2013-07-11" "2012-04-03" "2012-04-03" "2012-03-28" "2012-04-03"
## [20511] "2012-03-28" "2012-03-28" "2011-04-25" "2011-04-25" "2012-12-06"
## [20516] "2012-01-02" "2012-01-02" "2012-12-06" "2013-01-28" "2013-01-28"
## [20521] "2012-01-02" "2013-01-28" "2012-11-28" "2012-11-28" "2013-04-09"
## [20526] "2013-04-09" "2013-04-09" "2011-01-30" "2011-01-30" "2013-04-09"
## [20531] "2013-04-09" "2012-05-23" "2012-05-23" "2013-06-16" "2013-06-16"
## [20536] "2012-05-23" "2012-05-23" "2013-04-24" "2013-06-16" "2012-05-23"
## [20541] "2013-04-24" "2012-05-23" "2013-12-12" "2013-12-12" "2013-12-20"
## [20546] "2013-08-08" "2013-12-20" "2013-12-12" "2013-12-20" "2013-08-08"
## [20551] "2013-12-20" "2013-08-08" "2013-12-12" "2013-12-13" "2013-12-13"
## [20556] "2013-12-20" "2013-08-08" "2013-12-12" "2013-12-13" "2013-08-08"
## [20561] "2013-12-13" "2013-12-13" "2012-06-13" "2012-06-13" "2012-06-13"
## [20566] "2012-06-13" "2012-06-13" "2012-04-20" "2012-06-13" "2012-04-20"
## [20571] "2012-06-19" "2012-06-19" "2012-06-19" "2012-06-19" "2012-06-19"
## [20576] "2012-06-19" "2013-02-11" "2013-02-04" "2013-02-04" "2012-02-24"
## [20581] "2011-04-15" "2012-02-24" "2013-02-04" "2011-04-08" "2011-04-15"
## [20586] "2011-04-08" "2013-02-11" "2011-04-15" "2013-02-11" "2013-02-04"
## [20591] "2011-04-08" "2011-04-15" "2011-04-08" "2013-02-11" "2013-02-04"
## [20596] "2011-04-08" "2013-02-11" "2011-04-15" "2013-11-14" "2013-11-14"
## [20601] "2011-11-18" "2013-10-21" "2011-11-18" "2011-11-08" "2011-11-08"
## [20606] "2011-11-18" "2011-11-18" "2013-10-21" "2011-11-08" "2013-10-21"
## [20611] "2011-03-06" "2011-03-06" "2011-11-18" "2013-06-15" "2011-11-08"
## [20616] "2013-11-14" "2011-03-06" "2013-11-14" "2011-03-06" "2013-06-15"
## [20621] "2013-06-15" "2011-11-08" "2011-03-06" "2012-06-15" "2012-06-15"
## [20626] "2013-12-26" "2013-05-16" "2013-05-16" "2013-12-26" "2013-05-16"
## [20631] "2013-12-26" "2013-05-16" "2013-05-16" "2014-01-02" "2011-02-17"
## [20636] "2014-01-02" "2011-02-17" "2011-02-17" "2012-04-30" "2012-01-05"
## [20641] "2012-01-05" "2012-04-30" "2012-01-05" "2012-01-05" "2012-01-05"
## [20646] "2012-04-10" "2012-04-10" "2014-01-03" "2014-01-03" "2014-01-03"
## [20651] "2012-04-20" "2012-04-20" "2011-06-29" "2011-06-29" "2011-06-29"
## [20656] "2011-06-29" "2011-06-29" "2012-01-12" "2012-06-26" "2012-01-12"
## [20661] "2011-03-30" "2011-03-30" "2012-06-26" "2012-06-26" "2012-06-26"
## [20666] "2012-01-12" "2012-06-26" "2012-06-26" "2012-06-22" "2014-02-14"
## [20671] "2012-11-03" "2014-02-14" "2012-06-22" "2012-06-22" "2012-11-03"
## [20676] "2014-02-14" "2012-04-09" "2012-01-04" "2012-01-04" "2012-01-04"
## [20681] "2012-04-09" "2012-04-09" "2012-04-09" "2012-01-04" "2012-04-09"
## [20686] "2013-12-23" "2013-12-23" "2013-12-23" "2014-01-06" "2014-01-06"
## [20691] "2012-11-12" "2012-11-12" "2011-07-07" "2012-10-14" "2011-07-07"
## [20696] "2012-10-14" "2011-10-25" "2011-12-25" "2011-12-25" "2011-10-25"
## [20701] "2011-10-25" "2011-12-25" "2011-09-09" "2011-10-25" "2011-09-09"
## [20706] "2011-09-09" "2011-10-25" "2011-03-01" "2011-12-25" "2011-12-25"
## [20711] "2011-03-01" "2011-03-01" "2011-10-25" "2011-07-17" "2011-07-17"
## [20716] "2012-01-29" "2013-12-01" "2013-12-01" "2011-07-17" "2012-01-29"
## [20721] "2013-12-01" "2014-01-30" "2014-01-30" "2014-01-30" "2013-02-14"
## [20726] "2013-02-14" "2012-08-26" "2011-07-18" "2011-02-21" "2013-08-09"
## [20731] "2012-08-26" "2013-08-09" "2012-08-26" "2012-08-26" "2012-08-26"
## [20736] "2011-02-21" "2011-07-18" "2013-08-09" "2013-08-23" "2013-08-23"
## [20741] "2013-08-23" "2013-06-11" "2013-06-11" "2013-06-11" "2011-06-14"
## [20746] "2011-06-14" "2011-06-14" "2011-06-14" "2011-06-14" "2012-04-20"
## [20751] "2012-04-20" "2012-01-12" "2012-01-12" "2012-04-20" "2012-01-12"
## [20756] "2012-04-14" "2012-04-14" "2012-04-20" "2012-01-12" "2012-04-14"
## [20761] "2012-04-14" "2012-01-12" "2012-08-01" "2013-01-18" "2013-01-18"
## [20766] "2012-08-01" "2012-08-01" "2013-01-18" "2012-08-01" "2011-02-02"
## [20771] "2012-08-01" "2011-02-02" "2011-09-08" "2011-09-13" "2011-09-13"
## [20776] "2013-01-27" "2011-09-08" "2011-09-13" "2013-01-27" "2011-09-08"
## [20781] "2012-05-06" "2012-04-29" "2012-05-06" "2012-05-06" "2012-05-06"
## [20786] "2012-05-06" "2012-04-29" "2012-04-29" "2012-04-29" "2012-04-29"
## [20791] "2013-10-20" "2013-10-16" "2013-10-16" "2013-10-20" "2012-04-05"
## [20796] "2013-10-16" "2013-03-12" "2013-03-12" "2013-03-12" "2012-04-05"
## [20801] "2013-03-12" "2013-08-23" "2013-03-12" "2013-10-20" "2013-08-23"
## [20806] "2013-06-19" "2013-06-19" "2011-02-01" "2011-02-01" "2013-06-19"
## [20811] "2011-02-01" "2011-02-01" "2012-12-18" "2012-12-18" "2012-12-18"
## [20816] "2012-08-28" "2012-08-28" "2012-08-28" "2012-08-28" "2011-10-30"
## [20821] "2011-10-30" "2011-10-30" "2011-10-30" "2011-10-30" "2013-08-26"
## [20826] "2011-07-30" "2011-08-02" "2012-08-25" "2011-07-30" "2013-08-26"
## [20831] "2013-08-26" "2012-08-25" "2013-08-26" "2012-12-25" "2011-07-30"
## [20836] "2012-12-25" "2012-08-25" "2011-08-02" "2011-07-30" "2012-12-25"
## [20841] "2012-08-25" "2011-07-30" "2011-07-30" "2012-10-21" "2012-10-21"
## [20846] "2012-11-08" "2012-10-21" "2012-11-08" "2012-11-08" "2012-10-21"
## [20851] "2013-12-22" "2013-12-22" "2013-12-22" "2013-12-22" "2013-12-22"
## [20856] "2011-09-01" "2011-09-01" "2011-09-01" "2012-08-23" "2012-08-23"
## [20861] "2014-01-20" "2014-01-20" "2012-08-23" "2012-08-23" "2012-08-23"
## [20866] "2014-01-20" "2012-08-23" "2012-10-09" "2012-10-09" "2012-06-26"
## [20871] "2012-06-26" "2012-06-26" "2012-06-26" "2012-10-05" "2013-09-14"
## [20876] "2012-10-05" "2012-10-05" "2013-09-14" "2012-10-05" "2013-09-14"
## [20881] "2013-03-16" "2011-03-18" "2011-03-18" "2011-03-18" "2013-03-16"
## [20886] "2011-03-18" "2012-01-02" "2013-03-16" "2011-03-18" "2013-10-11"
## [20891] "2013-10-11" "2013-10-11" "2011-03-18" "2013-10-11" "2012-01-02"
## [20896] "2012-01-02" "2012-12-23" "2012-10-13" "2012-10-13" "2012-10-13"
## [20901] "2012-12-23" "2012-10-13" "2012-10-25" "2011-08-11" "2012-12-23"
## [20906] "2012-10-25" "2012-10-25" "2012-10-25" "2012-10-25" "2011-08-11"
## [20911] "2012-04-01" "2013-12-29" "2012-04-01" "2012-04-01" "2013-12-29"
## [20916] "2012-04-01" "2013-12-29" "2013-12-29" "2012-04-01" "2013-12-29"
## [20921] "2013-12-29" "2013-07-22" "2012-08-01" "2012-07-31" "2012-08-01"
## [20926] "2013-07-22" "2012-08-02" "2012-07-31" "2012-08-02" "2012-07-31"
## [20931] "2012-11-24" "2012-11-24" "2012-11-24" "2012-11-24" "2012-08-02"
## [20936] "2012-11-24" "2012-08-01" "2014-01-31" "2014-01-31" "2013-09-30"
## [20941] "2013-09-30" "2013-09-30" "2011-06-01" "2011-06-01" "2012-10-09"
## [20946] "2012-10-09" "2011-09-20" "2011-09-20" "2011-09-20" "2012-02-13"
## [20951] "2012-02-13" "2012-02-13" "2012-02-13" "2012-02-13" "2013-06-17"
## [20956] "2013-06-26" "2013-06-01" "2013-06-26" "2013-06-26" "2013-06-26"
## [20961] "2013-06-17" "2013-06-17" "2013-06-01" "2013-06-17" "2013-06-17"
## [20966] "2013-06-01" "2013-06-26" "2013-06-26" "2013-06-17" "2013-10-31"
## [20971] "2011-12-18" "2012-07-29" "2012-07-29" "2011-12-18" "2011-12-18"
## [20976] "2012-07-29" "2012-07-29" "2011-12-18" "2011-12-18" "2012-07-29"
## [20981] "2013-10-31" "2013-10-31" "2011-12-18" "2012-07-29" "2013-10-07"
## [20986] "2013-10-07" "2013-03-30" "2011-11-01" "2012-07-31" "2011-11-01"
## [20991] "2012-07-31" "2012-07-31" "2012-07-31" "2012-07-31" "2013-03-30"
## [20996] "2013-03-12" "2013-03-12" "2013-03-12" "2013-03-12" "2013-03-12"
## [21001] "2013-04-19" "2013-04-19" "2011-03-16" "2012-03-07" "2012-03-05"
## [21006] "2012-03-07" "2011-03-16" "2012-03-05" "2011-09-07" "2011-05-15"
## [21011] "2012-11-20" "2012-11-20" "2012-11-20" "2011-05-15" "2011-05-15"
## [21016] "2012-11-20" "2011-09-07" "2011-09-07" "2012-11-20" "2012-11-20"
## [21021] "2013-08-12" "2013-08-12" "2013-08-12" "2013-08-12" "2013-08-12"
## [21026] "2012-08-26" "2011-12-28" "2013-08-14" "2011-12-28" "2013-08-14"
## [21031] "2013-08-14" "2013-02-23" "2013-02-23" "2012-08-26" "2013-02-23"
## [21036] "2013-03-14" "2013-03-14" "2011-08-18" "2011-08-18" "2011-08-18"
## [21041] "2011-08-18" "2011-08-18" "2012-03-17" "2012-03-17" "2012-11-17"
## [21046] "2012-01-12" "2013-01-05" "2013-01-05" "2012-01-12" "2012-01-12"
## [21051] "2013-01-05" "2012-11-17" "2013-01-05" "2012-01-12" "2013-01-05"
## [21056] "2012-01-12" "2013-06-26" "2011-11-22" "2013-06-26" "2013-10-31"
## [21061] "2013-06-26" "2013-06-10" "2011-11-22" "2013-10-31" "2013-06-10"
## [21066] "2013-06-26" "2013-06-26" "2011-11-22" "2011-11-22" "2013-06-10"
## [21071] "2013-06-10" "2011-11-22" "2011-11-22" "2013-06-10" "2011-09-20"
## [21076] "2014-01-01" "2014-01-05" "2014-01-01" "2014-01-01" "2014-01-26"
## [21081] "2011-09-20" "2014-01-26" "2014-01-26" "2014-01-05" "2014-01-26"
## [21086] "2014-01-01" "2014-01-05" "2014-01-05" "2014-01-26" "2014-01-01"
## [21091] "2014-01-05" "2011-08-06" "2011-12-30" "2011-08-06" "2011-12-30"
## [21096] "2011-08-06" "2011-08-06" "2011-08-06" "2011-02-20" "2011-06-06"
## [21101] "2011-06-06" "2011-02-22" "2011-02-20" "2011-06-06" "2011-02-22"
## [21106] "2011-02-20" "2011-06-06" "2011-02-22" "2011-06-06" "2013-12-30"
## [21111] "2013-12-30" "2013-12-30" "2013-08-12" "2013-11-22" "2011-06-13"
## [21116] "2013-08-12" "2013-11-22" "2013-11-22" "2013-11-13" "2013-08-12"
## [21121] "2011-06-13" "2011-06-13" "2013-05-20" "2013-11-13" "2013-11-22"
## [21126] "2013-05-20" "2013-11-22" "2013-11-13" "2013-11-22" "2013-08-08"
## [21131] "2013-08-08" "2014-01-17" "2012-06-30" "2012-06-22" "2012-06-30"
## [21136] "2012-06-22" "2014-01-17" "2014-01-17" "2011-02-08" "2011-02-08"
## [21141] "2012-04-30" "2013-06-15" "2012-12-19" "2013-06-16" "2013-06-16"
## [21146] "2012-12-01" "2012-12-19" "2012-04-30" "2012-04-30" "2013-06-15"
## [21151] "2012-12-19" "2012-12-01" "2012-03-25" "2012-03-25" "2012-09-09"
## [21156] "2011-12-02" "2012-09-09" "2011-12-02" "2011-04-18" "2011-04-18"
## [21161] "2011-11-30" "2012-09-14" "2011-08-16" "2011-08-16" "2011-04-18"
## [21166] "2011-04-18" "2011-11-30" "2013-07-27" "2011-11-30" "2011-04-18"
## [21171] "2011-11-30" "2011-11-30" "2013-07-27" "2012-09-14" "2011-04-18"
## [21176] "2012-11-10" "2012-11-10" "2012-11-10" "2012-05-27" "2012-03-19"
## [21181] "2012-08-05" "2012-08-05" "2012-08-05" "2012-05-27" "2012-03-19"
## [21186] "2012-08-05" "2012-08-05" "2012-04-23" "2012-03-19" "2012-04-23"
## [21191] "2012-04-23" "2012-08-04" "2012-08-04" "2013-05-25" "2013-05-25"
## [21196] "2011-05-07" "2011-05-07" "2013-06-10" "2013-06-10" "2011-05-07"
## [21201] "2011-05-07" "2013-06-10" "2013-06-10" "2011-05-07" "2013-06-10"
## [21206] "2013-08-27" "2013-08-02" "2011-08-06" "2013-08-27" "2011-08-06"
## [21211] "2012-07-22" "2012-07-22" "2011-08-15" "2013-08-02" "2012-07-22"
## [21216] "2011-08-15" "2012-07-22" "2011-04-26" "2012-09-05" "2012-09-05"
## [21221] "2012-09-05" "2012-09-05" "2012-09-05" "2011-04-26" "2011-02-05"
## [21226] "2011-02-05" "2011-02-05" "2013-01-04" "2013-01-04" "2011-08-25"
## [21231] "2011-06-03" "2011-06-03" "2011-08-25" "2013-05-12" "2011-08-21"
## [21236] "2011-08-25" "2011-08-21" "2013-05-12" "2011-08-21" "2011-09-05"
## [21241] "2011-08-26" "2011-08-26" "2011-09-05" "2012-11-27" "2014-01-19"
## [21246] "2014-01-19" "2013-09-10" "2012-09-29" "2012-09-29" "2012-11-27"
## [21251] "2012-11-27" "2012-09-29" "2012-12-01" "2013-09-10" "2012-12-02"
## [21256] "2012-12-01" "2012-12-02" "2013-09-10" "2012-09-29" "2012-12-01"
## [21261] "2012-12-02" "2012-09-29" "2012-10-12" "2012-11-18" "2012-11-18"
## [21266] "2012-11-18" "2012-10-12" "2013-10-24" "2013-10-24" "2012-01-07"
## [21271] "2012-10-25" "2012-10-25" "2012-01-07" "2012-01-07" "2012-01-07"
## [21276] "2012-10-25" "2012-01-25" "2012-09-15" "2012-01-25" "2012-01-25"
## [21281] "2012-01-25" "2012-01-25" "2012-09-15" "2012-01-25" "2013-10-17"
## [21286] "2013-11-17" "2013-11-15" "2013-10-17" "2013-11-15" "2013-11-15"
## [21291] "2013-10-17" "2013-11-17" "2013-11-17" "2012-06-20" "2012-06-20"
## [21296] "2012-06-20" "2014-01-06" "2014-01-06" "2014-01-06" "2012-11-14"
## [21301] "2012-11-14" "2011-12-18" "2011-12-18" "2011-12-18" "2011-12-18"
## [21306] "2012-11-09" "2012-11-09" "2012-11-09" "2013-08-10" "2013-08-10"
## [21311] "2013-08-10" "2013-08-10" "2013-08-10" "2013-08-10" "2013-08-05"
## [21316] "2013-08-05" "2013-08-05" "2013-08-05" "2013-08-05" "2011-07-28"
## [21321] "2011-07-28" "2011-07-28" "2011-07-28" "2011-07-28" "2012-04-25"
## [21326] "2012-04-25" "2012-04-25" "2011-02-21" "2011-02-21" "2011-02-21"
## [21331] "2011-12-31" "2011-12-31" "2011-11-23" "2014-01-18" "2011-11-23"
## [21336] "2014-01-18" "2014-01-18" "2011-09-24" "2011-09-24" "2014-01-18"
## [21341] "2014-01-18" "2011-09-24" "2011-09-24" "2011-11-23" "2011-11-23"
## [21346] "2011-11-23" "2014-01-18" "2011-11-23" "2011-09-24" "2011-02-05"
## [21351] "2012-03-09" "2011-02-05" "2012-03-09" "2011-02-05" "2013-05-27"
## [21356] "2013-05-27" "2011-02-23" "2013-05-27" "2013-05-27" "2013-05-27"
## [21361] "2011-02-23" "2011-02-23" "2013-11-14" "2013-11-14" "2013-05-23"
## [21366] "2012-06-18" "2011-09-28" "2011-09-18" "2011-09-28" "2013-05-23"
## [21371] "2013-05-14" "2012-06-18" "2011-09-18" "2012-06-18" "2013-05-14"
## [21376] "2013-03-13" "2012-04-14" "2012-12-01" "2012-04-14" "2012-11-22"
## [21381] "2013-03-22" "2012-12-01" "2012-11-22" "2012-04-10" "2012-04-10"
## [21386] "2013-03-13" "2012-12-01" "2012-11-22" "2013-03-22" "2011-12-18"
## [21391] "2011-04-10" "2011-09-10" "2011-04-16" "2011-09-10" "2011-12-18"
## [21396] "2011-04-16" "2011-04-10" "2011-09-10" "2012-06-21" "2013-04-09"
## [21401] "2011-02-18" "2011-02-18" "2012-06-21" "2012-06-21" "2013-04-09"
## [21406] "2012-08-28" "2014-02-07" "2012-08-28" "2012-08-28" "2012-10-09"
## [21411] "2012-08-28" "2014-02-07" "2012-08-28" "2011-04-17" "2014-02-07"
## [21416] "2012-09-01" "2012-10-09" "2011-09-18" "2012-10-09" "2012-09-01"
## [21421] "2012-09-01" "2012-09-01" "2011-04-17" "2011-04-17" "2012-09-01"
## [21426] "2011-09-18" "2011-04-17" "2011-04-17" "2011-07-03" "2011-02-11"
## [21431] "2013-08-27" "2012-12-10" "2011-07-03" "2012-11-20" "2013-05-13"
## [21436] "2011-02-11" "2011-02-11" "2013-08-27" "2011-02-11" "2011-02-11"
## [21441] "2012-11-20" "2013-05-13" "2011-02-11" "2013-08-27" "2012-12-10"
## [21446] "2012-11-20" "2012-11-20" "2013-07-28" "2013-07-28" "2012-03-14"
## [21451] "2012-03-05" "2012-03-14" "2011-01-30" "2011-02-12" "2011-02-12"
## [21456] "2011-01-30" "2011-01-30" "2011-02-12" "2011-01-30" "2011-01-30"
## [21461] "2011-02-12" "2012-03-05" "2013-12-06" "2013-01-24" "2013-01-24"
## [21466] "2013-01-24" "2013-12-06" "2013-03-19" "2013-03-19" "2013-03-16"
## [21471] "2013-03-16" "2011-08-06" "2011-08-06" "2011-08-06" "2011-08-06"
## [21476] "2011-08-06" "2012-11-14" "2013-08-20" "2012-11-08" "2013-08-20"
## [21481] "2012-11-08" "2012-11-14" "2013-08-09" "2013-08-09" "2013-08-09"
## [21486] "2012-09-20" "2012-09-20" "2012-09-20" "2012-08-17" "2012-07-25"
## [21491] "2012-08-17" "2012-07-25" "2012-08-17" "2012-08-17" "2012-08-17"
## [21496] "2011-10-25" "2012-07-25" "2012-07-25" "2012-07-25" "2011-10-25"
## [21501] "2011-10-25" "2011-10-25" "2012-07-25" "2011-10-25" "2012-01-20"
## [21506] "2012-07-03" "2012-01-20" "2012-07-03" "2012-07-03" "2012-08-17"
## [21511] "2011-03-10" "2012-08-17" "2011-03-10" "2012-08-17" "2012-04-27"
## [21516] "2012-04-27" "2012-04-27" "2012-04-27" "2012-04-27" "2013-10-16"
## [21521] "2011-10-14" "2011-10-14" "2013-10-16" "2011-05-24" "2011-05-24"
## [21526] "2011-01-29" "2011-01-29" "2011-05-24" "2011-07-22" "2012-10-15"
## [21531] "2011-01-29" "2013-07-14" "2013-07-14" "2011-01-29" "2011-07-22"
## [21536] "2013-02-21" "2012-10-15" "2011-07-22" "2013-10-23" "2011-01-29"
## [21541] "2011-05-24" "2012-10-15" "2011-07-22" "2013-02-21" "2011-07-22"
## [21546] "2011-07-22" "2013-10-23" "2013-10-23" "2011-05-24" "2012-02-05"
## [21551] "2012-02-05" "2012-04-25" "2012-02-05" "2012-02-05" "2012-04-25"
## [21556] "2012-02-05" "2012-02-05" "2012-04-25" "2011-10-15" "2011-10-15"
## [21561] "2011-03-21" "2014-02-12" "2011-03-21" "2011-03-21" "2011-03-21"
## [21566] "2014-02-12" "2012-07-09" "2012-07-09" "2012-07-09" "2011-03-21"
## [21571] "2013-10-20" "2013-10-20" "2013-10-29" "2013-10-29" "2012-01-06"
## [21576] "2013-10-20" "2013-10-29" "2012-01-06" "2011-05-26" "2011-05-26"
## [21581] "2011-05-26" "2011-05-26" "2011-05-26" "2011-12-20" "2011-12-20"
## [21586] "2011-12-20" "2014-01-23" "2011-12-20" "2014-01-23" "2011-08-15"
## [21591] "2011-08-15" "2012-07-14" "2012-07-14" "2012-07-14" "2012-07-14"
## [21596] "2012-07-14" "2012-02-06" "2011-04-18" "2012-02-16" "2011-04-18"
## [21601] "2012-02-06" "2012-02-16" "2012-02-06" "2012-02-16" "2012-02-06"
## [21606] "2011-03-26" "2012-12-30" "2012-04-02" "2012-12-30" "2012-12-30"
## [21611] "2011-03-26" "2011-03-26" "2012-12-30" "2012-04-02" "2011-03-26"
## [21616] "2011-03-26" "2011-03-26" "2012-12-30" "2013-11-20" "2012-06-03"
## [21621] "2013-11-20" "2013-11-20" "2013-11-20" "2013-11-20" "2013-11-21"
## [21626] "2012-06-03" "2013-12-08" "2013-12-08" "2012-06-03" "2013-11-20"
## [21631] "2012-06-03" "2012-06-03" "2013-11-21" "2012-09-20" "2012-09-13"
## [21636] "2012-04-01" "2012-05-19" "2012-09-20" "2012-04-01" "2012-09-13"
## [21641] "2012-04-01" "2012-05-19" "2012-09-13" "2012-05-19" "2012-05-19"
## [21646] "2012-05-19" "2012-09-20" "2012-05-19" "2011-12-24" "2011-08-17"
## [21651] "2011-08-17" "2011-08-21" "2011-08-21" "2011-08-17" "2011-01-31"
## [21656] "2011-08-21" "2011-01-31" "2011-12-24" "2011-02-08" "2011-02-08"
## [21661] "2011-02-08" "2012-03-22" "2012-03-09" "2012-03-09" "2012-03-22"
## [21666] "2012-03-09" "2013-10-02" "2013-10-02" "2013-10-02" "2013-09-23"
## [21671] "2013-09-23" "2012-03-22" "2013-09-23" "2013-10-02" "2013-09-23"
## [21676] "2013-10-02" "2013-09-23" "2011-04-15" "2013-05-06" "2012-08-10"
## [21681] "2012-08-10" "2011-04-15" "2013-05-06" "2013-05-06" "2013-05-06"
## [21686] "2013-05-06" "2012-08-10" "2013-05-12" "2011-11-16" "2011-12-08"
## [21691] "2011-11-16" "2013-05-12" "2011-12-08" "2011-11-16" "2011-12-08"
## [21696] "2011-11-16" "2013-05-12" "2011-11-16" "2012-01-04" "2012-09-10"
## [21701] "2012-01-04" "2012-01-04" "2014-01-15" "2014-01-15" "2011-03-01"
## [21706] "2013-10-19" "2013-10-19" "2011-03-01" "2013-02-12" "2013-10-19"
## [21711] "2013-02-12" "2012-09-10" "2013-12-10" "2012-09-10" "2012-09-10"
## [21716] "2011-07-06" "2012-09-10" "2011-03-01" "2013-02-12" "2013-12-10"
## [21721] "2013-02-12" "2013-02-12" "2011-07-06" "2014-01-15" "2011-07-06"
## [21726] "2013-12-10" "2013-12-10" "2011-05-13" "2011-05-13" "2013-10-29"
## [21731] "2013-10-29" "2011-05-13" "2013-10-29" "2013-10-29" "2013-10-29"
## [21736] "2012-12-18" "2013-08-02" "2012-12-18" "2011-05-13" "2011-05-13"
## [21741] "2011-05-13" "2011-05-13" "2013-08-02" "2013-08-02" "2012-12-18"
## [21746] "2011-05-13" "2013-08-02" "2013-08-02" "2013-08-16" "2013-08-16"
## [21751] "2013-08-16" "2013-02-02" "2013-02-02" "2011-12-13" "2013-04-17"
## [21756] "2013-04-17" "2011-12-13" "2014-02-19" "2011-12-13" "2011-07-22"
## [21761] "2011-07-22" "2014-02-19" "2011-12-13" "2014-02-19" "2013-04-17"
## [21766] "2013-04-17" "2011-07-22" "2011-07-22" "2011-12-13" "2011-07-22"
## [21771] "2013-04-17" "2013-01-03" "2013-01-03" "2012-01-23" "2012-01-23"
## [21776] "2012-01-23" "2012-05-05" "2012-05-05" "2012-07-01" "2012-07-01"
## [21781] "2012-07-01" "2012-07-09" "2012-07-01" "2012-07-09" "2012-07-01"
## [21786] "2012-07-09" "2012-07-09" "2012-07-01" "2012-07-09" "2012-07-09"
## [21791] "2012-05-04" "2011-10-06" "2011-07-19" "2011-07-19" "2011-10-06"
## [21796] "2012-05-04" "2011-04-05" "2011-04-05" "2011-10-06" "2011-04-05"
## [21801] "2011-10-06" "2012-05-04" "2013-07-17" "2011-07-21" "2011-08-13"
## [21806] "2011-07-21" "2011-04-05" "2011-10-06" "2011-04-05" "2011-04-05"
## [21811] "2013-07-17" "2011-10-06" "2011-08-13" "2011-08-13" "2013-12-03"
## [21816] "2013-12-03" "2013-11-28" "2013-12-03" "2013-11-28" "2013-12-03"
## [21821] "2013-12-03" "2013-11-28" "2013-11-28" "2013-11-28" "2011-08-08"
## [21826] "2011-03-21" "2011-03-21" "2011-03-21" "2011-03-21" "2011-08-08"
## [21831] "2011-03-21" "2011-03-21" "2012-08-18" "2012-08-18" "2011-11-01"
## [21836] "2012-02-15" "2012-02-15" "2013-08-07" "2013-08-07" "2011-11-01"
## [21841] "2012-02-15" "2012-11-28" "2013-02-11" "2012-11-28" "2012-11-28"
## [21846] "2012-11-28" "2012-06-07" "2013-02-11" "2013-02-11" "2012-06-07"
## [21851] "2013-02-11" "2013-02-11" "2012-11-28" "2012-11-28" "2012-06-07"
## [21856] "2012-03-01" "2012-03-01" "2012-03-01" "2012-03-01" "2012-03-01"
## [21861] "2012-09-18" "2012-08-01" "2012-09-18" "2012-09-18" "2012-08-01"
## [21866] "2012-09-18" "2012-12-06" "2012-12-06" "2012-08-01" "2012-09-18"
## [21871] "2013-07-25" "2012-01-12" "2013-10-20" "2013-07-25" "2012-01-12"
## [21876] "2012-01-12" "2013-10-20" "2013-10-20" "2013-10-20" "2013-07-25"
## [21881] "2012-01-12" "2013-10-20" "2013-07-25" "2012-01-12" "2012-01-12"
## [21886] "2013-11-22" "2011-07-17" "2011-05-12" "2011-05-12" "2011-05-12"
## [21891] "2011-07-17" "2013-11-22" "2013-11-22" "2011-05-12" "2013-11-22"
## [21896] "2011-05-12" "2011-07-17" "2013-11-22" "2011-07-17" "2011-07-17"
## [21901] "2012-07-19" "2012-07-19" "2011-10-25" "2012-07-19" "2012-07-19"
## [21906] "2011-10-25" "2011-10-25" "2011-04-09" "2012-07-19" "2011-04-09"
## [21911] "2012-07-19" "2011-04-24" "2013-01-13" "2011-10-09" "2013-01-13"
## [21916] "2011-10-09" "2013-01-13" "2011-10-09" "2011-04-24" "2011-10-09"
## [21921] "2013-01-28" "2013-01-28" "2013-01-28" "2013-01-28" "2012-08-13"
## [21926] "2012-08-13" "2012-06-20" "2011-08-06" "2011-08-06" "2012-06-20"
## [21931] "2011-08-06" "2013-08-06" "2013-06-13" "2013-08-06" "2013-12-04"
## [21936] "2013-12-04" "2011-12-14" "2013-06-13" "2013-12-04" "2011-12-14"
## [21941] "2013-12-04" "2013-08-06" "2011-12-14" "2011-12-14" "2013-12-04"
## [21946] "2011-12-14" "2013-08-06" "2012-08-25" "2012-08-25" "2011-10-02"
## [21951] "2011-10-07" "2011-10-07" "2011-10-02" "2011-02-20" "2011-02-20"
## [21956] "2011-02-20" "2011-02-20" "2011-02-24" "2011-02-24" "2011-02-24"
## [21961] "2011-02-24" "2012-11-23" "2011-09-23" "2011-10-18" "2013-02-28"
## [21966] "2012-11-23" "2012-11-23" "2011-10-18" "2013-05-05" "2011-09-23"
## [21971] "2011-10-18" "2012-11-23" "2011-10-18" "2011-09-23" "2013-02-28"
## [21976] "2012-11-23" "2013-02-28" "2013-02-28" "2012-11-23" "2013-05-05"
## [21981] "2012-02-07" "2012-02-07" "2012-02-07" "2012-02-07" "2012-02-07"
## [21986] "2012-02-12" "2012-02-12" "2013-11-26" "2013-11-26" "2013-11-26"
## [21991] "2013-09-07" "2013-09-07" "2014-01-31" "2011-06-11" "2011-06-11"
## [21996] "2011-06-11" "2011-06-11" "2011-06-11" "2014-01-31" "2012-10-26"
## [22001] "2011-06-08" "2011-06-08" "2011-06-08" "2011-06-08" "2011-06-08"
## [22006] "2012-10-26" "2012-01-03" "2013-09-12" "2013-09-12" "2011-04-30"
## [22011] "2012-01-03" "2011-04-30" "2011-04-30" "2012-01-03" "2011-05-02"
## [22016] "2012-01-03" "2011-06-20" "2011-05-02" "2013-11-25" "2013-11-25"
## [22021] "2013-11-25" "2012-01-03" "2011-06-20" "2011-05-02" "2013-03-31"
## [22026] "2011-04-30" "2011-05-02" "2013-03-31" "2012-07-09" "2012-07-09"
## [22031] "2011-04-07" "2011-04-07" "2011-04-07" "2011-04-07" "2012-07-09"
## [22036] "2011-04-07" "2011-12-23" "2011-12-23" "2012-08-02" "2011-12-19"
## [22041] "2012-08-02" "2011-12-19" "2012-08-02" "2012-08-02" "2012-08-02"
## [22046] "2011-03-23" "2011-03-23" "2013-09-03" "2013-09-03" "2012-05-11"
## [22051] "2011-03-23" "2012-05-11" "2012-05-11" "2011-03-23" "2011-03-23"
## [22056] "2011-03-23" "2012-05-11" "2013-11-20" "2013-11-30" "2013-11-30"
## [22061] "2013-11-30" "2013-11-30" "2013-10-12" "2013-10-12" "2013-11-20"
## [22066] "2013-05-08" "2011-07-19" "2013-10-12" "2013-11-20" "2013-11-20"
## [22071] "2013-11-30" "2013-11-20" "2013-05-08" "2011-07-19" "2011-07-19"
## [22076] "2013-11-30" "2013-11-20" "2013-05-08" "2012-11-30" "2012-11-22"
## [22081] "2012-11-22" "2012-11-30" "2013-09-01" "2013-09-01" "2013-09-01"
## [22086] "2013-09-01" "2012-12-26" "2012-12-26" "2012-03-05" "2012-03-05"
## [22091] "2012-03-05" "2012-03-05" "2013-02-10" "2012-09-12" "2013-02-10"
## [22096] "2012-09-12" "2012-09-12" "2013-02-10" "2012-09-12" "2011-09-09"
## [22101] "2012-09-12" "2011-09-09" "2012-09-12" "2013-02-10" "2013-02-10"
## [22106] "2011-09-09" "2012-11-03" "2013-01-07" "2013-01-07" "2012-11-03"
## [22111] "2013-01-07" "2011-03-05" "2011-03-05" "2011-03-05" "2011-03-05"
## [22116] "2014-01-04" "2014-01-04" "2014-01-04" "2014-01-04" "2011-03-05"
## [22121] "2014-01-17" "2011-08-01" "2012-04-03" "2011-08-01" "2012-04-03"
## [22126] "2014-01-17" "2013-09-14" "2014-01-17" "2013-09-14" "2014-01-17"
## [22131] "2012-04-03" "2012-04-03" "2012-04-03" "2012-01-28" "2012-04-10"
## [22136] "2012-01-28" "2012-01-28" "2012-04-10" "2012-04-10" "2012-01-28"
## [22141] "2012-01-28" "2012-01-28" "2012-04-28" "2012-04-28" "2012-09-06"
## [22146] "2012-09-06" "2012-09-06" "2012-09-06" "2011-05-08" "2011-05-08"
## [22151] "2011-05-08" "2012-09-06" "2012-09-06" "2013-04-15" "2013-08-15"
## [22156] "2013-08-20" "2011-06-25" "2013-04-15" "2013-08-20" "2011-06-25"
## [22161] "2011-06-25" "2013-08-20" "2013-08-15" "2013-08-15" "2013-08-01"
## [22166] "2013-04-13" "2013-08-01" "2013-04-13" "2013-08-01" "2013-08-01"
## [22171] "2012-07-01" "2012-07-01" "2013-08-17" "2012-11-25" "2012-11-25"
## [22176] "2012-11-25" "2013-08-17" "2013-04-23" "2013-04-18" "2011-05-07"
## [22181] "2013-04-23" "2011-09-29" "2011-09-29" "2011-09-29" "2011-05-07"
## [22186] "2013-04-23" "2011-05-07" "2013-04-18" "2013-04-18" "2012-08-22"
## [22191] "2011-07-08" "2012-08-22" "2012-08-22" "2012-08-22" "2012-08-22"
## [22196] "2011-07-08" "2011-07-08" "2012-11-28" "2012-11-06" "2012-11-06"
## [22201] "2012-09-11" "2012-09-11" "2011-05-20" "2012-11-09" "2011-05-20"
## [22206] "2012-11-28" "2011-05-20" "2012-11-09" "2011-11-12" "2011-11-12"
## [22211] "2011-11-12" "2011-11-12" "2011-11-12" "2013-03-12" "2013-03-12"
## [22216] "2013-03-12" "2011-08-20" "2011-08-20" "2011-02-03" "2011-10-05"
## [22221] "2011-02-03" "2011-10-05" "2013-05-27" "2013-05-27" "2013-05-27"
## [22226] "2013-05-24" "2013-05-24" "2013-05-24" "2012-02-18" "2012-02-18"
## [22231] "2011-11-02" "2011-11-02" "2012-02-18" "2012-02-18" "2011-11-02"
## [22236] "2011-11-02" "2012-02-18" "2011-11-02" "2011-11-02" "2012-06-27"
## [22241] "2012-06-27" "2012-06-22" "2012-06-22" "2012-06-22" "2012-02-02"
## [22246] "2012-02-02" "2012-02-02" "2012-02-02" "2012-12-01" "2013-06-10"
## [22251] "2012-12-01" "2013-06-10" "2012-12-01" "2013-08-26" "2012-12-08"
## [22256] "2012-12-08" "2012-12-08" "2012-12-01" "2012-12-08" "2013-06-10"
## [22261] "2013-08-26" "2012-12-01" "2013-08-26" "2012-12-08" "2011-07-16"
## [22266] "2011-10-04" "2011-10-04" "2011-07-16" "2011-10-04" "2011-09-27"
## [22271] "2011-09-27" "2011-10-04" "2011-07-16" "2011-07-16" "2011-10-04"
## [22276] "2011-09-27" "2011-09-27" "2011-09-27" "2013-09-25" "2013-09-25"
## [22281] "2013-09-25" "2012-09-10" "2012-09-10" "2013-12-20" "2013-12-20"
## [22286] "2012-09-10" "2013-12-20" "2012-11-29" "2013-12-20" "2013-12-20"
## [22291] "2013-12-20" "2012-11-29" "2014-01-25" "2014-01-25" "2012-11-29"
## [22296] "2012-03-05" "2011-03-03" "2013-05-23" "2013-05-23" "2013-05-23"
## [22301] "2011-12-05" "2011-03-03" "2012-03-05" "2011-03-03" "2013-05-23"
## [22306] "2012-03-05" "2012-03-05" "2011-03-03" "2013-05-23" "2011-12-05"
## [22311] "2012-03-05" "2011-08-02" "2011-08-02" "2011-08-02" "2013-10-16"
## [22316] "2013-10-16" "2013-10-16" "2011-06-12" "2011-06-12" "2011-09-21"
## [22321] "2011-07-25" "2011-07-25" "2011-09-21" "2011-09-21" "2011-09-21"
## [22326] "2011-06-12" "2011-09-21" "2011-06-12" "2011-09-21" "2011-06-12"
## [22331] "2011-10-25" "2013-07-26" "2013-01-07" "2014-01-31" "2011-10-25"
## [22336] "2012-02-27" "2013-07-26" "2014-01-31" "2014-01-31" "2013-07-26"
## [22341] "2012-02-27" "2012-02-27" "2013-07-26" "2013-01-07" "2013-07-26"
## [22346] "2012-03-04" "2012-03-04" "2012-03-04" "2011-11-18" "2011-06-21"
## [22351] "2011-06-21" "2012-03-04" "2012-03-04" "2012-04-25" "2012-04-25"
## [22356] "2012-04-25" "2011-11-18" "2011-10-22" "2011-11-18" "2011-10-22"
## [22361] "2011-11-18" "2012-04-25" "2012-04-25" "2011-10-22" "2011-11-18"
## [22366] "2011-06-21" "2012-02-08" "2012-12-05" "2012-12-05" "2012-12-07"
## [22371] "2012-02-08" "2012-02-08" "2013-07-11" "2012-12-07" "2012-12-07"
## [22376] "2013-12-19" "2012-12-05" "2012-12-05" "2013-12-19" "2012-12-07"
## [22381] "2012-12-07" "2013-07-11" "2012-12-05" "2013-12-19" "2011-11-25"
## [22386] "2011-11-25" "2011-11-25" "2013-06-05" "2012-05-13" "2013-06-05"
## [22391] "2011-11-27" "2013-06-05" "2012-05-13" "2013-06-05" "2013-06-05"
## [22396] "2011-11-27" "2012-05-13" "2012-05-13" "2012-05-13" "2011-11-27"
## [22401] "2012-05-13" "2013-06-17" "2013-06-17" "2013-06-17" "2013-06-17"
## [22406] "2013-06-17" "2011-05-24" "2011-05-24" "2011-05-24" "2011-05-24"
## [22411] "2011-05-24" "2011-07-17" "2011-07-17" "2011-07-17" "2011-07-17"
## [22416] "2011-07-17" "2013-06-13" "2011-11-19" "2013-06-13" "2013-06-13"
## [22421] "2011-11-19" "2013-03-08" "2013-03-08" "2013-03-08" "2013-02-10"
## [22426] "2013-02-10" "2013-02-10" "2013-02-10" "2012-03-20" "2012-03-30"
## [22431] "2012-03-20" "2012-03-20" "2012-03-30" "2012-03-20" "2013-01-07"
## [22436] "2012-03-30" "2012-03-30" "2013-01-07" "2012-03-20" "2013-01-07"
## [22441] "2012-03-30" "2013-07-13" "2011-05-20" "2011-05-20" "2011-05-20"
## [22446] "2013-07-13" "2013-06-11" "2013-03-13" "2013-06-11" "2013-06-02"
## [22451] "2013-06-11" "2012-08-03" "2013-03-13" "2013-06-09" "2013-06-11"
## [22456] "2013-06-11" "2013-06-11" "2013-06-09" "2013-03-13" "2013-06-09"
## [22461] "2013-06-02" "2013-03-13" "2013-06-02" "2013-06-02" "2013-03-13"
## [22466] "2012-08-03" "2013-03-13" "2012-08-03" "2013-06-02" "2013-06-09"
## [22471] "2013-06-09" "2013-06-02" "2013-06-09" "2012-02-01" "2012-05-31"
## [22476] "2012-02-01" "2012-05-31" "2012-05-31" "2013-01-19" "2013-01-17"
## [22481] "2013-01-17" "2013-01-19" "2012-03-26" "2012-12-27" "2012-12-27"
## [22486] "2012-03-26" "2011-07-21" "2013-11-16" "2013-11-16" "2011-07-09"
## [22491] "2011-07-09" "2013-11-16" "2011-07-21" "2011-07-21" "2011-07-09"
## [22496] "2011-07-21" "2011-07-21" "2012-11-09" "2012-11-09" "2011-08-31"
## [22501] "2012-12-30" "2012-02-07" "2012-12-30" "2011-08-31" "2011-08-31"
## [22506] "2012-02-07" "2011-09-04" "2011-09-04" "2011-09-02" "2011-09-02"
## [22511] "2011-08-31" "2011-03-08" "2011-03-08" "2011-03-08" "2013-07-12"
## [22516] "2013-07-12" "2012-09-27" "2013-01-03" "2012-09-27" "2012-09-27"
## [22521] "2012-11-29" "2012-11-29" "2012-11-29" "2012-09-26" "2013-01-03"
## [22526] "2012-09-26" "2013-01-03" "2012-09-26" "2012-04-14" "2012-04-07"
## [22531] "2012-01-03" "2012-04-14" "2012-04-07" "2012-01-03" "2012-02-20"
## [22536] "2012-02-20" "2011-08-23" "2011-08-23" "2011-08-26" "2011-08-26"
## [22541] "2011-08-06" "2011-08-06" "2011-08-06" "2011-08-06" "2011-08-06"
## [22546] "2013-05-15" "2011-11-18" "2011-10-02" "2013-05-15" "2011-11-18"
## [22551] "2011-10-02" "2011-10-02" "2013-05-15" "2011-10-02" "2013-05-15"
## [22556] "2011-10-02" "2011-05-05" "2011-05-05" "2011-05-05" "2011-05-05"
## [22561] "2011-05-05" "2011-05-05" "2011-06-08" "2013-07-28" "2011-06-08"
## [22566] "2013-07-28" "2011-06-08" "2013-05-28" "2013-05-28" "2013-10-05"
## [22571] "2013-10-05" "2013-10-05" "2013-10-05" "2013-10-05" "2013-11-07"
## [22576] "2013-11-07" "2011-04-26" "2011-04-26" "2011-04-26" "2011-04-26"
## [22581] "2011-04-26" "2011-04-26" "2011-03-10" "2013-05-12" "2011-03-10"
## [22586] "2013-05-12" "2011-03-10" "2011-03-10" "2011-04-24" "2013-07-18"
## [22591] "2013-07-18" "2013-07-18" "2011-04-24" "2013-05-12" "2013-05-12"
## [22596] "2013-07-18" "2013-07-18" "2013-07-18" "2011-03-10" "2012-06-01"
## [22601] "2012-06-01" "2012-06-01" "2012-04-22" "2012-04-22" "2012-04-22"
## [22606] "2011-01-29" "2011-01-29" "2011-05-25" "2011-05-25" "2012-01-16"
## [22611] "2011-01-29" "2011-05-25" "2012-01-18" "2012-01-16" "2012-01-18"
## [22616] "2011-05-25" "2011-05-25" "2012-04-22" "2013-04-20" "2011-07-27"
## [22621] "2011-07-29" "2013-05-28" "2013-04-20" "2013-12-03" "2013-04-20"
## [22626] "2013-12-03" "2013-12-03" "2013-04-20" "2013-05-28" "2013-05-28"
## [22631] "2012-08-08" "2012-08-07" "2013-04-20" "2013-03-14" "2012-08-07"
## [22636] "2011-07-29" "2011-07-27" "2013-05-28" "2012-08-08" "2013-03-14"
## [22641] "2013-05-28" "2013-05-28" "2011-04-26" "2011-04-26" "2012-09-27"
## [22646] "2011-04-26" "2012-09-27" "2013-01-19" "2012-01-02" "2011-08-23"
## [22651] "2012-01-02" "2013-01-19" "2013-01-19" "2013-01-19" "2011-08-23"
## [22656] "2013-01-19" "2011-08-23" "2012-01-02" "2011-11-28" "2011-11-28"
## [22661] "2011-11-28" "2011-11-26" "2011-11-26" "2011-10-20" "2011-11-26"
## [22666] "2011-10-20" "2012-10-27" "2012-10-27" "2011-11-26" "2011-11-28"
## [22671] "2011-11-26" "2012-10-27" "2011-11-26" "2012-10-27" "2011-11-28"
## [22676] "2013-03-16" "2013-03-16" "2011-11-28" "2013-03-16" "2012-10-27"
## [22681] "2013-11-25" "2013-11-25" "2013-11-25" "2012-05-06" "2012-05-06"
## [22686] "2012-05-06" "2012-05-06" "2011-07-14" "2012-02-11" "2012-02-11"
## [22691] "2011-07-14" "2011-07-14" "2012-12-31" "2012-02-11" "2012-12-31"
## [22696] "2012-02-11" "2012-02-11" "2011-07-14" "2011-07-14" "2012-12-31"
## [22701] "2012-12-31" "2012-12-31" "2011-01-25" "2011-01-25" "2013-08-17"
## [22706] "2011-04-29" "2013-08-17" "2011-04-29" "2011-01-25" "2013-08-17"
## [22711] "2013-08-17" "2011-04-29" "2013-08-17" "2012-09-06" "2012-09-06"
## [22716] "2012-09-06" "2012-09-10" "2013-08-19" "2013-08-19" "2012-09-10"
## [22721] "2012-09-10" "2012-04-10" "2013-07-11" "2013-08-12" "2012-04-10"
## [22726] "2012-04-10" "2013-07-11" "2013-08-12" "2013-08-12" "2013-01-25"
## [22731] "2013-01-25" "2012-07-14" "2012-07-14" "2012-07-14" "2011-11-24"
## [22736] "2011-11-18" "2011-11-24" "2011-11-18" "2011-11-18" "2011-11-24"
## [22741] "2011-11-18" "2011-11-24" "2011-11-18" "2011-11-18" "2011-11-24"
## [22746] "2011-11-24" "2011-12-27" "2011-12-27" "2014-01-14" "2011-12-27"
## [22751] "2014-01-14" "2014-02-18" "2013-09-07" "2012-05-26" "2011-04-15"
## [22756] "2013-09-07" "2012-05-26" "2014-02-18" "2012-05-26" "2011-04-15"
## [22761] "2012-05-26" "2012-05-26" "2013-09-25" "2011-07-27" "2011-07-27"
## [22766] "2011-07-27" "2011-07-27" "2013-09-25" "2013-09-25" "2012-07-24"
## [22771] "2011-07-27" "2011-07-27" "2013-09-25" "2012-07-24" "2013-09-25"
## [22776] "2013-09-25" "2011-05-29" "2011-05-29" "2011-05-29" "2011-05-29"
## [22781] "2014-01-18" "2014-01-18" "2012-02-18" "2012-02-18" "2014-01-18"
## [22786] "2014-01-18" "2013-02-01" "2012-02-18" "2012-02-18" "2013-02-01"
## [22791] "2012-02-18" "2014-01-18" "2012-08-09" "2013-09-11" "2012-08-09"
## [22796] "2013-09-11" "2013-01-06" "2011-03-17" "2013-01-06" "2011-03-17"
## [22801] "2011-03-17" "2011-03-17" "2011-03-17" "2013-03-06" "2011-01-28"
## [22806] "2011-01-28" "2011-04-16" "2011-04-16" "2011-04-16" "2013-03-06"
## [22811] "2011-04-16" "2011-01-28" "2011-04-16" "2013-03-06" "2011-01-28"
## [22816] "2011-01-28" "2011-01-28" "2013-10-09" "2013-10-14" "2011-06-05"
## [22821] "2013-10-14" "2013-10-14" "2013-10-01" "2013-10-01" "2013-10-01"
## [22826] "2013-10-09" "2011-06-05" "2013-10-09" "2013-10-29" "2013-06-04"
## [22831] "2012-05-19" "2013-10-29" "2012-05-19" "2012-05-19" "2013-06-04"
## [22836] "2013-02-24" "2013-02-24" "2013-03-04" "2011-02-26" "2013-03-04"
## [22841] "2012-03-26" "2013-02-24" "2013-05-12" "2012-03-26" "2011-02-26"
## [22846] "2013-03-04" "2013-03-04" "2013-02-24" "2013-03-04" "2013-05-12"
## [22851] "2013-02-24" "2013-05-12" "2013-09-06" "2013-09-06" "2013-09-06"
## [22856] "2013-09-06" "2013-09-06" "2012-05-18" "2012-05-18" "2013-07-19"
## [22861] "2013-07-19" "2011-07-24" "2012-05-18" "2013-07-19" "2013-01-09"
## [22866] "2013-01-09" "2011-07-24" "2012-07-29" "2013-01-09" "2013-01-09"
## [22871] "2013-07-19" "2011-03-30" "2011-03-30" "2013-01-09" "2012-07-29"
## [22876] "2011-03-30" "2013-07-19" "2013-03-20" "2013-07-20" "2013-07-20"
## [22881] "2012-08-30" "2013-07-20" "2013-03-20" "2012-08-30" "2013-07-20"
## [22886] "2013-03-20" "2012-08-30" "2013-07-20" "2012-01-19" "2012-07-25"
## [22891] "2012-01-19" "2012-07-25" "2012-01-19" "2013-05-05" "2013-05-05"
## [22896] "2013-05-05" "2013-05-05" "2013-05-05" "2011-04-25" "2013-05-05"
## [22901] "2011-04-25" "2013-04-27" "2013-04-27" "2011-04-25" "2013-04-27"
## [22906] "2013-05-05" "2013-05-05" "2013-04-27" "2013-05-05" "2011-07-15"
## [22911] "2013-11-04" "2013-11-04" "2011-07-15" "2011-05-11" "2011-05-11"
## [22916] "2011-05-11" "2011-05-11" "2011-05-11" "2011-05-11" "2013-11-04"
## [22921] "2011-09-30" "2013-01-22" "2011-09-30" "2011-10-18" "2011-10-18"
## [22926] "2013-01-22" "2013-01-22" "2011-09-30" "2013-01-22" "2013-01-22"
## [22931] "2011-09-30" "2011-09-30" "2011-10-05" "2012-07-05" "2012-07-05"
## [22936] "2011-10-05" "2012-07-05" "2012-07-05" "2012-07-05" "2012-03-09"
## [22941] "2012-03-04" "2012-11-25" "2012-11-25" "2012-11-25" "2012-06-17"
## [22946] "2012-03-07" "2012-03-07" "2012-06-17" "2012-03-09" "2012-06-17"
## [22951] "2012-06-17" "2011-11-28" "2012-03-04" "2011-11-28" "2011-11-28"
## [22956] "2012-06-17" "2011-12-21" "2011-12-21" "2013-02-17" "2013-04-25"
## [22961] "2013-02-17" "2013-04-25" "2011-12-21" "2011-08-28" "2011-03-31"
## [22966] "2011-04-10" "2013-01-06" "2011-03-31" "2011-08-28" "2014-02-14"
## [22971] "2013-01-06" "2011-04-10" "2014-02-14" "2013-09-02" "2013-09-02"
## [22976] "2013-09-02" "2011-10-20" "2011-10-20" "2011-10-20" "2012-09-04"
## [22981] "2012-09-04" "2012-09-04" "2012-09-04" "2012-09-04" "2011-05-23"
## [22986] "2011-05-20" "2011-05-23" "2011-05-20" "2013-11-21" "2013-11-21"
## [22991] "2013-11-21" "2013-11-21" "2013-11-21" "2012-11-30" "2011-12-07"
## [22996] "2011-12-05" "2012-11-30" "2012-11-30" "2011-12-07" "2011-12-07"
## [23001] "2011-12-05" "2011-12-05" "2014-01-22" "2013-04-29" "2013-04-29"
## [23006] "2014-01-22" "2014-01-22" "2013-04-29" "2014-01-22" "2014-01-22"
## [23011] "2014-01-22" "2013-10-14" "2013-10-08" "2013-10-14" "2012-08-05"
## [23016] "2013-10-08" "2012-08-05" "2011-05-09" "2013-10-14" "2013-10-14"
## [23021] "2013-10-08" "2013-10-08" "2013-10-08" "2013-10-14" "2011-05-09"
## [23026] "2011-05-09" "2011-06-22" "2013-08-03" "2013-08-03" "2013-12-21"
## [23031] "2013-08-03" "2013-08-03" "2011-06-22" "2012-06-22" "2013-12-21"
## [23036] "2011-06-22" "2013-12-21" "2013-12-21" "2012-06-22" "2013-12-21"
## [23041] "2013-12-21" "2012-09-22" "2011-09-10" "2012-02-12" "2012-02-12"
## [23046] "2012-02-03" "2012-09-22" "2012-02-03" "2012-02-12" "2012-02-12"
## [23051] "2012-02-03" "2012-02-12" "2012-02-03" "2012-02-03" "2011-09-10"
## [23056] "2012-02-18" "2012-02-18" "2012-02-18" "2012-02-18" "2012-02-18"
## [23061] "2012-04-23" "2012-04-23" "2012-04-23" "2011-07-10" "2011-07-10"
## [23066] "2012-04-23" "2012-04-23" "2012-04-23" "2013-05-22" "2013-05-22"
## [23071] "2013-05-22" "2012-06-29" "2012-06-29" "2012-05-19" "2011-08-04"
## [23076] "2013-01-05" "2013-01-05" "2012-05-19" "2013-01-05" "2013-01-05"
## [23081] "2012-05-19" "2011-08-04" "2012-05-19" "2012-05-19" "2011-12-07"
## [23086] "2011-12-07" "2011-12-07" "2011-12-07" "2011-12-07" "2013-10-17"
## [23091] "2013-10-17" "2011-12-07" "2013-10-17" "2013-09-11" "2013-09-11"
## [23096] "2013-09-11" "2012-08-07" "2012-01-28" "2012-04-14" "2012-04-14"
## [23101] "2012-01-28" "2012-08-07" "2012-08-04" "2012-01-28" "2012-08-04"
## [23106] "2013-05-03" "2013-10-11" "2013-04-15" "2013-04-15" "2013-10-11"
## [23111] "2013-05-03" "2013-05-03" "2013-10-11" "2013-05-03" "2013-05-03"
## [23116] "2013-04-15" "2013-05-03" "2013-10-11" "2013-10-11" "2011-11-08"
## [23121] "2012-04-17" "2012-04-17" "2012-05-11" "2012-08-05" "2012-05-11"
## [23126] "2013-01-06" "2014-01-15" "2012-05-11" "2011-11-08" "2014-01-15"
## [23131] "2013-01-06" "2012-08-05" "2012-08-05" "2014-01-15" "2012-08-05"
## [23136] "2012-05-11" "2012-08-05" "2012-08-05" "2011-12-06" "2011-12-06"
## [23141] "2011-12-06" "2011-06-20" "2011-06-20" "2011-06-20" "2012-07-02"
## [23146] "2011-06-20" "2012-01-28" "2012-01-28" "2012-07-02" "2012-07-02"
## [23151] "2013-11-29" "2013-11-29" "2013-11-29" "2013-11-29" "2013-11-29"
## [23156] "2013-11-29" "2011-04-10" "2013-02-04" "2013-02-04" "2012-08-29"
## [23161] "2011-04-10" "2012-08-29" "2011-04-10" "2011-04-10" "2012-08-29"
## [23166] "2011-06-20" "2012-10-12" "2012-08-29" "2011-06-20" "2011-04-10"
## [23171] "2012-10-12" "2013-08-06" "2012-08-29" "2013-08-06" "2012-03-09"
## [23176] "2012-03-09" "2012-08-09" "2012-03-10" "2012-03-10" "2012-03-10"
## [23181] "2012-08-09" "2012-08-09" "2012-08-09" "2012-08-09" "2012-03-09"
## [23186] "2012-03-06" "2014-01-14" "2013-06-13" "2013-06-13" "2014-01-14"
## [23191] "2013-06-23" "2012-03-06" "2013-06-23" "2013-06-23" "2013-06-23"
## [23196] "2012-09-09" "2012-09-09" "2013-03-20" "2012-01-03" "2012-01-20"
## [23201] "2012-01-03" "2012-01-03" "2012-09-09" "2012-01-20" "2012-01-03"
## [23206] "2013-03-20" "2012-01-03" "2012-03-31" "2012-03-31" "2014-01-23"
## [23211] "2014-01-23" "2012-05-24" "2013-03-07" "2013-03-07" "2013-03-07"
## [23216] "2012-05-24" "2011-12-11" "2013-03-15" "2011-12-11" "2011-07-05"
## [23221] "2013-03-15" "2013-09-09" "2011-12-11" "2013-09-09" "2011-07-05"
## [23226] "2013-09-09" "2011-07-05" "2011-07-05" "2011-12-11" "2011-07-05"
## [23231] "2011-09-17" "2011-09-17" "2011-09-17" "2013-07-10" "2013-07-10"
## [23236] "2012-08-03" "2012-04-25" "2012-08-03" "2013-05-23" "2013-05-23"
## [23241] "2013-05-23" "2012-08-03" "2013-05-23" "2012-04-25" "2012-04-25"
## [23246] "2013-05-23" "2012-04-25" "2012-04-25" "2011-10-26" "2011-10-26"
## [23251] "2011-10-26" "2011-10-26" "2011-10-26" "2012-10-14" "2011-05-19"
## [23256] "2011-05-19" "2011-05-19" "2011-05-19" "2013-01-30" "2012-10-14"
## [23261] "2013-01-30" "2012-10-14" "2012-10-14" "2011-05-19" "2011-05-19"
## [23266] "2012-10-14" "2013-12-22" "2011-04-02" "2011-04-02" "2013-12-22"
## [23271] "2013-10-25" "2013-02-11" "2013-10-25" "2013-09-22" "2013-10-25"
## [23276] "2013-09-22" "2013-10-25" "2013-10-25" "2013-02-11" "2012-05-03"
## [23281] "2012-05-03" "2012-05-03" "2012-05-03" "2011-02-01" "2012-09-22"
## [23286] "2012-05-03" "2011-02-01" "2012-05-03" "2012-09-22" "2011-02-01"
## [23291] "2013-02-05" "2013-02-05" "2011-09-24" "2013-02-05" "2011-09-24"
## [23296] "2012-11-30" "2012-11-30" "2011-08-28" "2012-01-31" "2013-02-23"
## [23301] "2013-02-23" "2013-05-15" "2013-11-26" "2012-01-31" "2013-02-23"
## [23306] "2013-05-15" "2013-11-26" "2011-08-28" "2013-02-23" "2013-11-26"
## [23311] "2013-02-23" "2012-01-31" "2011-08-28" "2011-12-20" "2011-12-20"
## [23316] "2011-12-20" "2011-12-20" "2011-12-20" "2011-12-20" "2013-10-07"
## [23321] "2013-04-11" "2013-10-13" "2013-10-07" "2013-04-11" "2013-04-11"
## [23326] "2013-10-07" "2011-09-20" "2013-10-13" "2011-09-20" "2011-09-20"
## [23331] "2013-10-13" "2013-10-07" "2011-09-20" "2013-10-07" "2013-10-13"
## [23336] "2013-10-13" "2013-04-05" "2013-05-20" "2013-04-05" "2013-01-19"
## [23341] "2012-08-25" "2013-01-19" "2013-04-05" "2011-10-05" "2012-09-19"
## [23346] "2012-08-25" "2012-08-25" "2013-04-05" "2013-04-05" "2013-05-20"
## [23351] "2013-05-20" "2013-05-20" "2013-05-20" "2011-10-05" "2012-09-19"
## [23356] "2013-05-20" "2012-08-25" "2012-05-29" "2012-05-29" "2012-09-19"
## [23361] "2012-08-25" "2011-11-10" "2012-10-25" "2013-08-03" "2013-08-03"
## [23366] "2012-02-17" "2011-11-10" "2012-02-17" "2012-02-17" "2013-08-03"
## [23371] "2012-10-25" "2011-09-15" "2011-09-15" "2011-09-15" "2011-09-15"
## [23376] "2011-09-15" "2011-09-15" "2012-03-13" "2014-02-05" "2011-10-01"
## [23381] "2014-02-05" "2011-10-01" "2011-10-01" "2014-02-05" "2012-03-13"
## [23386] "2011-10-01" "2014-02-05" "2011-10-01" "2011-10-01" "2014-02-05"
## [23391] "2013-01-31" "2013-01-31" "2013-01-31" "2013-01-31" "2013-01-31"
## [23396] "2011-04-04" "2011-04-04" "2013-11-26" "2013-11-26" "2013-04-20"
## [23401] "2013-11-26" "2013-11-26" "2013-11-26" "2013-04-20" "2011-04-13"
## [23406] "2011-04-09" "2011-04-13" "2011-04-09" "2011-04-11" "2011-04-11"
## [23411] "2014-01-20" "2014-01-20" "2014-01-20" "2014-01-20" "2014-01-20"
## [23416] "2014-01-20" "2013-07-22" "2012-07-30" "2012-08-01" "2012-08-04"
## [23421] "2012-08-04" "2012-08-04" "2013-07-22" "2012-07-30" "2013-07-22"
## [23426] "2012-07-30" "2012-08-01" "2012-08-01" "2013-07-22" "2013-07-22"
## [23431] "2012-03-20" "2012-03-20" "2012-03-20" "2013-05-31" "2012-03-20"
## [23436] "2012-08-12" "2013-05-31" "2012-03-20" "2012-08-12" "2012-08-12"
## [23441] "2012-08-12" "2012-03-20" "2012-08-12" "2011-04-01" "2012-12-02"
## [23446] "2012-10-22" "2013-05-04" "2011-04-01" "2013-05-04" "2012-12-02"
## [23451] "2012-10-22" "2011-04-01" "2012-12-02" "2012-10-22" "2012-10-22"
## [23456] "2013-05-04" "2012-10-22" "2011-11-16" "2013-11-15" "2013-11-15"
## [23461] "2013-11-15" "2011-11-16" "2012-04-23" "2012-04-23" "2012-04-23"
## [23466] "2012-04-23" "2014-01-07" "2011-11-12" "2011-11-12" "2014-01-07"
## [23471] "2011-09-17" "2011-09-17" "2011-09-17" "2011-09-17" "2011-11-18"
## [23476] "2011-09-17" "2014-01-07" "2011-09-17" "2014-01-07" "2014-01-07"
## [23481] "2011-11-18" "2013-06-03" "2012-04-04" "2013-06-03" "2013-06-03"
## [23486] "2013-06-03" "2013-06-03" "2012-04-04" "2012-04-04" "2012-04-04"
## [23491] "2012-04-04" "2011-09-14" "2012-10-21" "2013-12-21" "2013-12-21"
## [23496] "2011-09-14" "2012-10-21" "2013-12-21" "2011-09-14" "2011-09-14"
## [23501] "2011-09-14" "2011-07-04" "2011-07-04" "2011-07-04" "2011-07-04"
## [23506] "2011-07-04" "2012-11-09" "2012-11-09" "2011-07-12" "2013-02-02"
## [23511] "2012-11-09" "2011-07-05" "2012-11-09" "2013-02-02" "2013-02-02"
## [23516] "2011-07-12" "2012-11-09" "2011-07-05" "2013-02-02" "2013-02-02"
## [23521] "2012-06-02" "2012-10-28" "2012-06-02" "2012-10-28" "2012-06-02"
## [23526] "2013-08-03" "2013-08-03" "2011-05-11" "2013-08-03" "2011-05-11"
## [23531] "2014-02-01" "2014-02-01" "2014-01-30" "2011-12-06" "2014-02-01"
## [23536] "2014-01-30" "2014-01-30" "2011-12-06" "2014-02-01" "2014-01-30"
## [23541] "2014-01-30" "2014-02-01" "2011-12-06" "2013-02-22" "2013-02-22"
## [23546] "2013-02-22" "2013-02-22" "2013-02-22" "2013-01-19" "2013-01-19"
## [23551] "2013-12-17" "2013-12-17" "2013-12-17" "2013-11-05" "2013-05-23"
## [23556] "2011-12-21" "2011-12-11" "2011-12-11" "2013-11-05" "2011-12-21"
## [23561] "2013-05-23" "2013-11-05" "2013-05-23" "2012-05-17" "2011-03-18"
## [23566] "2011-03-18" "2012-05-17" "2011-03-18" "2011-03-18" "2011-03-18"
## [23571] "2012-05-17" "2012-05-17" "2012-05-17" "2013-02-03" "2013-02-03"
## [23576] "2013-02-03" "2013-02-03" "2013-02-03" "2011-10-18" "2011-10-18"
## [23581] "2011-10-18" "2012-01-25" "2012-01-25" "2012-01-25" "2012-01-25"
## [23586] "2012-01-19" "2012-08-25" "2012-01-19" "2012-08-25" "2012-08-25"
## [23591] "2013-02-25" "2013-02-25" "2013-02-25" "2013-02-25" "2013-02-25"
## [23596] "2012-08-25" "2012-08-25" "2012-08-25" "2013-02-25" "2014-01-05"
## [23601] "2014-01-05" "2013-06-05" "2013-06-05" "2013-06-14" "2013-06-05"
## [23606] "2013-06-14" "2011-06-23" "2011-06-23" "2011-06-23" "2011-06-23"
## [23611] "2013-06-14" "2011-06-23" "2012-10-24" "2013-02-16" "2012-07-28"
## [23616] "2012-10-24" "2013-02-16" "2012-10-24" "2012-10-24" "2012-07-28"
## [23621] "2012-07-28" "2011-02-12" "2011-02-12" "2012-07-28" "2013-02-16"
## [23626] "2011-02-12" "2012-07-28" "2012-12-28" "2013-10-07" "2012-12-28"
## [23631] "2011-11-21" "2012-12-28" "2012-12-19" "2011-07-05" "2011-11-21"
## [23636] "2011-07-05" "2013-10-07" "2012-12-28" "2012-12-28" "2013-10-07"
## [23641] "2011-07-05" "2012-12-19" "2011-07-05" "2011-07-05" "2012-10-20"
## [23646] "2013-08-08" "2013-08-08" "2013-08-08" "2012-10-20" "2013-02-20"
## [23651] "2013-02-20" "2012-06-07" "2013-02-20" "2012-06-07" "2013-02-20"
## [23656] "2011-08-05" "2012-06-07" "2011-08-05" "2012-06-07" "2013-02-20"
## [23661] "2012-06-07" "2012-06-03" "2012-06-03" "2012-06-03" "2013-05-04"
## [23666] "2011-07-16" "2013-03-16" "2013-03-16" "2013-03-16" "2013-04-29"
## [23671] "2013-03-16" "2013-05-04" "2013-05-04" "2011-05-05" "2011-07-16"
## [23676] "2011-05-05" "2013-03-16" "2011-07-16" "2013-04-29" "2013-04-29"
## [23681] "2012-08-31" "2012-08-31" "2011-04-24" "2012-11-02" "2011-11-28"
## [23686] "2011-04-24" "2011-04-24" "2012-11-02" "2011-11-28" "2011-11-28"
## [23691] "2011-04-24" "2011-11-28" "2012-11-02" "2012-11-02" "2011-04-24"
## [23696] "2011-11-28" "2012-11-02" "2012-11-02" "2011-11-28" "2011-11-13"
## [23701] "2011-09-06" "2011-03-31" "2011-11-13" "2011-09-06" "2011-08-14"
## [23706] "2011-09-06" "2011-03-31" "2011-09-06" "2011-08-14" "2011-03-31"
## [23711] "2011-04-02" "2011-04-02" "2013-05-15" "2013-05-15" "2012-10-15"
## [23716] "2013-05-15" "2012-10-15" "2013-05-15" "2013-02-18" "2013-02-18"
## [23721] "2013-02-18" "2013-02-18" "2013-02-18" "2012-05-26" "2012-05-26"
## [23726] "2012-05-26" "2012-05-26" "2012-05-26" "2013-10-03" "2012-10-08"
## [23731] "2012-10-08" "2013-10-03" "2013-10-12" "2013-10-12" "2013-10-13"
## [23736] "2013-10-12" "2013-04-06" "2013-10-13" "2013-04-06" "2012-11-03"
## [23741] "2013-10-13" "2012-11-03" "2012-08-10" "2011-12-16" "2011-12-16"
## [23746] "2013-09-06" "2011-12-16" "2013-09-06" "2011-04-04" "2013-09-06"
## [23751] "2012-08-10" "2011-04-04" "2013-09-24" "2013-09-24" "2013-09-24"
## [23756] "2013-09-24" "2013-09-24" "2013-04-03" "2013-04-03" "2013-04-03"
## [23761] "2013-04-03" "2013-04-03" "2013-04-03" "2012-08-27" "2011-02-04"
## [23766] "2012-08-27" "2013-10-23" "2011-02-04" "2011-02-05" "2011-02-05"
## [23771] "2012-08-31" "2012-08-31" "2012-08-27" "2012-08-31" "2013-10-23"
## [23776] "2012-08-31" "2012-08-27" "2013-10-23" "2011-12-21" "2013-06-29"
## [23781] "2013-06-29" "2011-12-21" "2011-12-21" "2014-01-28" "2014-01-28"
## [23786] "2014-01-28" "2011-12-21" "2011-12-21" "2013-02-01" "2013-02-01"
## [23791] "2013-01-27" "2013-02-01" "2013-01-27" "2013-01-21" "2013-01-21"
## [23796] "2013-01-21" "2011-05-31" "2011-05-31" "2013-08-28" "2011-11-01"
## [23801] "2013-05-09" "2011-11-01" "2013-08-28" "2013-05-09" "2013-08-28"
## [23806] "2013-05-09" "2013-05-09" "2011-11-01" "2013-05-09" "2011-07-29"
## [23811] "2013-09-22" "2011-07-29" "2013-09-22" "2012-11-29" "2012-11-29"
## [23816] "2012-11-29" "2013-09-15" "2013-09-15" "2011-07-29" "2012-11-29"
## [23821] "2011-07-29" "2013-11-16" "2013-11-16" "2012-08-08" "2013-09-01"
## [23826] "2013-08-23" "2012-08-08" "2013-08-23" "2013-09-01" "2012-08-08"
## [23831] "2012-08-08" "2012-08-08" "2013-08-22" "2013-08-22" "2011-11-02"
## [23836] "2013-06-16" "2012-06-12" "2013-06-16" "2012-06-12" "2012-06-12"
## [23841] "2012-06-12" "2013-06-16" "2012-06-12" "2011-11-02" "2013-05-01"
## [23846] "2013-05-01" "2012-12-17" "2012-07-22" "2013-02-19" "2012-07-13"
## [23851] "2012-12-17" "2013-02-19" "2012-07-13" "2012-07-22" "2013-02-19"
## [23856] "2012-07-13" "2012-07-22" "2013-10-20" "2013-01-09" "2012-07-06"
## [23861] "2013-01-09" "2013-01-09" "2012-07-06" "2012-07-06" "2013-10-20"
## [23866] "2013-01-09" "2012-07-06" "2013-01-07" "2013-01-09" "2013-01-07"
## [23871] "2013-01-07" "2012-07-06" "2013-10-20" "2013-10-20" "2013-10-20"
## [23876] "2013-01-07" "2013-01-07" "2011-04-09" "2011-04-09" "2013-02-28"
## [23881] "2013-07-03" "2013-02-28" "2013-07-03" "2013-02-28" "2013-07-03"
## [23886] "2011-12-28" "2011-12-28" "2011-12-28" "2013-08-05" "2013-08-05"
## [23891] "2011-06-06" "2011-04-18" "2011-06-06" "2011-06-06" "2013-08-05"
## [23896] "2011-06-06" "2011-06-06" "2011-04-18" "2011-04-18" "2011-11-07"
## [23901] "2011-11-07" "2011-11-07" "2011-11-07" "2012-11-15" "2012-11-15"
## [23906] "2012-10-12" "2012-10-12" "2012-06-19" "2011-05-03" "2011-05-03"
## [23911] "2011-05-03" "2012-10-12" "2012-06-19" "2012-06-19" "2012-03-01"
## [23916] "2012-03-01" "2012-03-06" "2012-03-06" "2012-10-29" "2012-03-01"
## [23921] "2012-03-06" "2012-10-29" "2013-12-30" "2013-12-30" "2011-06-02"
## [23926] "2013-12-30" "2013-12-30" "2013-10-01" "2013-12-30" "2013-10-01"
## [23931] "2013-10-01" "2013-10-01" "2011-06-02" "2013-12-30" "2013-10-01"
## [23936] "2013-07-05" "2012-11-01" "2012-11-01" "2012-11-01" "2013-07-05"
## [23941] "2014-01-23" "2014-01-23" "2012-08-23" "2014-01-23" "2014-01-23"
## [23946] "2012-08-23" "2011-05-01" "2011-09-17" "2011-05-01" "2013-03-07"
## [23951] "2011-05-01" "2011-05-01" "2011-09-17" "2011-09-17" "2013-03-07"
## [23956] "2013-03-07" "2011-05-01" "2013-03-07" "2011-05-01" "2011-05-01"
## [23961] "2011-05-01" "2011-05-01" "2011-05-01" "2011-03-17" "2011-03-17"
## [23966] "2013-09-09" "2012-01-20" "2013-09-09" "2011-07-31" "2012-01-20"
## [23971] "2012-01-20" "2011-07-31" "2013-09-09" "2011-07-31" "2012-11-19"
## [23976] "2012-11-19" "2012-11-19" "2011-07-31" "2011-07-31" "2013-09-09"
## [23981] "2012-01-01" "2012-01-15" "2011-12-29" "2011-10-17" "2012-01-01"
## [23986] "2012-01-01" "2011-10-17" "2012-01-15" "2011-10-17" "2012-01-01"
## [23991] "2011-10-17" "2011-12-29" "2011-12-29" "2012-01-01" "2011-12-29"
## [23996] "2011-12-29" "2011-10-18" "2012-03-24" "2012-10-22" "2012-10-15"
## [24001] "2012-10-15" "2012-10-22" "2012-10-15" "2012-10-15" "2011-10-18"
## [24006] "2012-10-22" "2012-10-15" "2012-10-22" "2012-10-22" "2011-10-18"
## [24011] "2011-10-18" "2011-10-18" "2012-03-24" "2011-10-18" "2012-03-24"
## [24016] "2011-07-02" "2011-07-02" "2011-09-30" "2011-09-30" "2011-10-07"
## [24021] "2014-01-20" "2011-10-07" "2011-12-13" "2014-01-20" "2014-01-20"
## [24026] "2011-12-13" "2011-12-13" "2014-01-20" "2014-01-20" "2012-05-03"
## [24031] "2014-01-19" "2012-05-03" "2012-04-28" "2014-01-19" "2012-04-28"
## [24036] "2014-01-19" "2012-04-28" "2013-03-28" "2013-03-28" "2014-01-27"
## [24041] "2014-01-27" "2014-01-27" "2011-06-02" "2011-06-02" "2012-08-22"
## [24046] "2011-06-10" "2011-06-02" "2011-06-10" "2012-08-22" "2011-06-02"
## [24051] "2012-08-22" "2011-06-10" "2011-06-10" "2011-06-02" "2011-06-10"
## [24056] "2013-07-17" "2013-07-17" "2013-02-17" "2013-07-17" "2013-07-17"
## [24061] "2014-02-18" "2012-07-30" "2012-07-30" "2013-02-17" "2014-02-18"
## [24066] "2013-07-17" "2013-02-17" "2012-01-14" "2011-12-18" "2011-05-18"
## [24071] "2011-05-18" "2012-01-14" "2011-05-18" "2013-09-14" "2011-05-18"
## [24076] "2011-12-18" "2011-05-18" "2012-01-14" "2013-09-14" "2011-12-18"
## [24081] "2013-09-14" "2013-12-09" "2013-12-09" "2013-02-16" "2013-12-09"
## [24086] "2013-08-17" "2013-02-16" "2012-06-13" "2013-12-09" "2012-06-13"
## [24091] "2013-02-16" "2013-12-09" "2013-08-17" "2013-06-09" "2013-01-25"
## [24096] "2013-06-09" "2014-01-29" "2013-09-03" "2013-06-09" "2014-01-29"
## [24101] "2011-04-05" "2014-01-29" "2011-04-05" "2013-01-25" "2011-04-05"
## [24106] "2014-01-29" "2014-01-29" "2013-09-03" "2013-09-03" "2013-09-03"
## [24111] "2011-04-05" "2011-07-27" "2014-02-15" "2014-02-15" "2011-07-27"
## [24116] "2011-08-27" "2014-02-15" "2011-08-27" "2011-08-27" "2011-08-27"
## [24121] "2014-02-15" "2011-08-27" "2014-02-15" "2011-02-10" "2013-10-23"
## [24126] "2012-07-01" "2011-02-10" "2011-02-10" "2011-02-10" "2012-07-01"
## [24131] "2011-02-10" "2012-07-01" "2012-07-01" "2011-02-10" "2013-10-23"
## [24136] "2012-07-01" "2012-05-04" "2014-01-11" "2012-04-26" "2014-01-11"
## [24141] "2014-01-11" "2012-04-26" "2012-05-04" "2012-04-26" "2012-05-04"
## [24146] "2012-04-26" "2012-04-26" "2012-05-04" "2014-01-11" "2012-05-04"
## [24151] "2014-01-11" "2012-07-28" "2012-07-28" "2013-12-19" "2012-07-28"
## [24156] "2013-12-19" "2013-02-18" "2013-02-18" "2013-02-19" "2013-03-28"
## [24161] "2013-03-28" "2013-02-19" "2013-02-18" "2013-02-19" "2013-02-27"
## [24166] "2013-02-27" "2013-02-26" "2013-02-27" "2012-10-11" "2011-09-16"
## [24171] "2012-10-11" "2013-02-26" "2012-10-11" "2013-02-27" "2013-02-27"
## [24176] "2013-02-26" "2011-09-16" "2013-02-26" "2013-02-26" "2011-02-25"
## [24181] "2011-02-25" "2012-10-14" "2012-10-14" "2012-10-14" "2012-10-14"
## [24186] "2012-10-14" "2012-08-30" "2011-02-25" "2012-10-14" "2012-08-30"
## [24191] "2011-06-17" "2011-06-17" "2012-04-14" "2012-04-14" "2012-02-06"
## [24196] "2012-02-06" "2012-04-14" "2012-02-06" "2012-04-14" "2012-04-14"
## [24201] "2012-12-02" "2012-02-12" "2012-02-03" "2012-02-12" "2012-02-03"
## [24206] "2012-12-02" "2012-02-12" "2012-12-02" "2012-12-02" "2012-02-03"
## [24211] "2012-02-03" "2012-12-02" "2012-02-12" "2012-11-21" "2012-11-21"
## [24216] "2012-08-01" "2012-11-21" "2012-08-02" "2012-11-21" "2012-08-01"
## [24221] "2012-11-21" "2012-08-02" "2012-08-02" "2012-08-01" "2012-08-02"
## [24226] "2012-07-25" "2012-08-01" "2012-07-25" "2012-07-25" "2012-07-25"
## [24231] "2012-08-02" "2012-07-25" "2012-08-01" "2013-12-01" "2011-04-29"
## [24236] "2011-04-29" "2012-11-10" "2013-11-23" "2013-12-01" "2012-10-23"
## [24241] "2012-10-23" "2012-02-22" "2012-10-23" "2013-11-23" "2012-11-10"
## [24246] "2012-10-23" "2012-02-22" "2012-10-23" "2012-02-22" "2012-10-23"
## [24251] "2013-10-08" "2012-06-23" "2013-04-25" "2012-06-23" "2012-08-08"
## [24256] "2012-08-08" "2013-01-27" "2012-05-29" "2011-11-02" "2012-08-08"
## [24261] "2011-11-02" "2012-06-23" "2012-06-23" "2011-11-02" "2011-11-02"
## [24266] "2013-01-27" "2011-11-02" "2012-05-29" "2012-06-23" "2013-04-25"
## [24271] "2011-11-02" "2012-05-29" "2013-04-25" "2012-05-29" "2013-04-25"
## [24276] "2013-10-08" "2013-04-25" "2012-05-29" "2012-10-28" "2012-10-28"
## [24281] "2011-09-10" "2012-10-28" "2011-09-10" "2013-06-15" "2013-11-26"
## [24286] "2013-06-15" "2013-11-26" "2013-11-26" "2013-06-12" "2013-06-15"
## [24291] "2013-06-12" "2013-06-12" "2013-11-26" "2013-11-26" "2011-04-08"
## [24296] "2011-04-08" "2013-09-01" "2013-09-01" "2013-09-01" "2011-04-08"
## [24301] "2011-04-08" "2011-04-08" "2011-04-08" "2013-09-13" "2013-09-13"
## [24306] "2013-09-13" "2013-05-07" "2013-05-07" "2011-08-15" "2013-05-07"
## [24311] "2011-04-13" "2011-04-13" "2011-04-13" "2011-08-15" "2012-10-20"
## [24316] "2014-01-16" "2014-01-16" "2012-10-20" "2012-02-29" "2012-10-20"
## [24321] "2014-02-19" "2011-07-25" "2012-02-29" "2014-02-19" "2014-02-19"
## [24326] "2014-01-16" "2014-01-16" "2014-02-19" "2014-02-19" "2011-07-25"
## [24331] "2012-05-13" "2012-05-13" "2013-03-30" "2012-05-11" "2012-05-13"
## [24336] "2012-05-11" "2013-02-23" "2012-05-11" "2013-03-30" "2012-05-13"
## [24341] "2012-05-13" "2012-05-11" "2013-02-23" "2013-03-30" "2012-05-11"
## [24346] "2011-09-17" "2011-09-17" "2011-09-17" "2013-08-08" "2013-08-08"
## [24351] "2013-09-04" "2014-02-01" "2013-09-04" "2013-08-08" "2014-02-01"
## [24356] "2013-04-28" "2013-04-28" "2013-04-28" "2013-04-28" "2013-04-28"
## [24361] "2011-10-28" "2011-02-26" "2011-10-28" "2013-07-10" "2011-02-26"
## [24366] "2011-10-28" "2013-07-10" "2011-10-28" "2013-07-10" "2011-10-28"
## [24371] "2011-03-09" "2011-03-09" "2011-07-05" "2011-03-09" "2011-03-09"
## [24376] "2011-03-09" "2011-07-05" "2011-03-09" "2011-08-18" "2012-12-23"
## [24381] "2011-08-18" "2011-08-18" "2011-08-18" "2012-12-23" "2011-08-18"
## [24386] "2012-11-15" "2012-11-15" "2012-11-15" "2011-09-14" "2012-06-29"
## [24391] "2011-09-08" "2012-06-29" "2011-09-14" "2011-09-08" "2011-09-14"
## [24396] "2011-09-08" "2012-05-19" "2012-05-19" "2011-10-10" "2012-05-20"
## [24401] "2012-05-20" "2011-10-10" "2011-10-10" "2013-10-02" "2013-11-03"
## [24406] "2013-11-03" "2013-10-02" "2013-11-03" "2013-11-03" "2013-11-03"
## [24411] "2012-11-18" "2011-09-30" "2012-11-18" "2011-09-30" "2011-09-30"
## [24416] "2011-08-03" "2011-08-03" "2011-08-03" "2011-08-03" "2011-09-30"
## [24421] "2011-08-03" "2011-09-30" "2012-05-24" "2011-02-02" "2011-02-02"
## [24426] "2011-02-02" "2012-05-24" "2013-05-22" "2013-05-22" "2013-05-22"
## [24431] "2013-05-18" "2013-05-18" "2011-06-15" "2011-06-15" "2011-06-15"
## [24436] "2011-06-15" "2013-05-18" "2011-06-15" "2011-06-15" "2011-09-06"
## [24441] "2013-03-23" "2011-09-06" "2011-09-06" "2012-01-30" "2011-09-06"
## [24446] "2013-03-23" "2011-09-06" "2011-09-06" "2012-12-26" "2013-03-23"
## [24451] "2012-12-26" "2013-03-23" "2012-01-30" "2012-01-30" "2013-03-23"
## [24456] "2012-01-30" "2012-01-30" "2012-12-26" "2011-03-07" "2011-03-07"
## [24461] "2011-03-07" "2011-03-07" "2011-03-07" "2012-04-27" "2011-03-28"
## [24466] "2012-04-26" "2012-04-26" "2012-04-29" "2012-04-29" "2011-03-28"
## [24471] "2011-03-28" "2012-04-27" "2012-04-26" "2012-04-29" "2014-01-14"
## [24476] "2012-12-27" "2012-09-05" "2014-01-14" "2012-12-27" "2012-09-05"
## [24481] "2013-04-18" "2013-11-18" "2013-04-18" "2013-11-18" "2013-04-18"
## [24486] "2013-04-18" "2013-04-18" "2013-11-29" "2013-11-29" "2013-05-18"
## [24491] "2011-09-23" "2011-09-23" "2011-09-23" "2013-05-18" "2011-09-23"
## [24496] "2013-11-29" "2013-11-29" "2013-04-27" "2013-04-27" "2013-04-27"
## [24501] "2013-04-27" "2013-04-27" "2013-04-27" "2013-04-16" "2013-04-16"
## [24506] "2014-01-22" "2014-01-22" "2014-01-22" "2014-01-17" "2014-01-22"
## [24511] "2013-04-16" "2011-11-23" "2011-11-23" "2014-01-17" "2011-11-23"
## [24516] "2014-01-22" "2011-11-23" "2011-11-23" "2013-12-15" "2013-12-15"
## [24521] "2013-12-15" "2012-04-17" "2012-04-17" "2012-04-17" "2012-04-17"
## [24526] "2012-04-17" "2013-11-07" "2011-08-21" "2013-11-07" "2013-11-07"
## [24531] "2013-11-07" "2013-11-07" "2011-08-21" "2013-11-07" "2012-06-12"
## [24536] "2012-06-12" "2012-06-12" "2012-06-12" "2012-06-12" "2013-03-22"
## [24541] "2013-03-22" "2012-06-12" "2013-12-13" "2013-12-09" "2012-10-06"
## [24546] "2013-12-13" "2013-12-09" "2012-11-25" "2012-10-06" "2012-10-06"
## [24551] "2012-10-06" "2013-12-13" "2013-12-13" "2013-12-09" "2013-12-09"
## [24556] "2013-12-13" "2012-10-06" "2012-11-25" "2013-12-09" "2013-12-09"
## [24561] "2013-12-13" "2011-03-13" "2011-11-13" "2011-11-13" "2011-03-13"
## [24566] "2011-03-13" "2013-12-18" "2013-12-28" "2013-12-18" "2013-12-28"
## [24571] "2011-11-09" "2011-11-09" "2012-05-16" "2012-05-16" "2012-05-16"
## [24576] "2012-07-19" "2012-05-16" "2011-11-09" "2012-05-16" "2012-07-19"
## [24581] "2012-07-19" "2013-10-06" "2013-01-06" "2013-08-26" "2013-08-26"
## [24586] "2013-08-27" "2013-08-27" "2013-09-03" "2013-09-03" "2013-01-06"
## [24591] "2013-10-06" "2013-10-06" "2013-08-27" "2013-09-03" "2013-01-06"
## [24596] "2013-09-03" "2013-10-06" "2013-08-26" "2013-10-06" "2013-08-26"
## [24601] "2013-08-27" "2013-09-03" "2013-08-27" "2013-08-26" "2012-01-13"
## [24606] "2012-01-13" "2011-11-23" "2011-11-29" "2011-11-28" "2011-11-23"
## [24611] "2011-11-28" "2013-04-11" "2011-11-29" "2013-07-31" "2013-07-31"
## [24616] "2011-11-23" "2013-04-11" "2013-04-11" "2011-11-28" "2011-11-29"
## [24621] "2013-07-31" "2013-11-17" "2013-11-17" "2013-11-17" "2012-07-29"
## [24626] "2012-07-29" "2012-07-29" "2012-07-29" "2013-11-17" "2012-07-29"
## [24631] "2013-09-23" "2013-11-17" "2013-09-23" "2012-07-29" "2014-02-03"
## [24636] "2011-07-07" "2011-07-07" "2011-07-07" "2011-07-07" "2014-02-03"
## [24641] "2011-07-07" "2014-02-03" "2012-12-01" "2011-01-25" "2014-01-12"
## [24646] "2014-01-12" "2011-01-25" "2014-01-12" "2011-01-25" "2012-12-01"
## [24651] "2012-12-01" "2011-04-11" "2011-04-11" "2011-01-25" "2011-01-25"
## [24656] "2014-01-15" "2011-04-07" "2014-01-15" "2014-01-15" "2011-10-15"
## [24661] "2011-10-15" "2011-10-15" "2011-04-07" "2011-10-15" "2011-04-07"
## [24666] "2013-04-15" "2013-04-15" "2013-04-15" "2013-04-15" "2013-04-15"
## [24671] "2012-02-24" "2013-01-27" "2013-02-27" "2013-01-27" "2013-01-27"
## [24676] "2013-02-27" "2012-02-24" "2013-01-27" "2013-02-27" "2014-02-10"
## [24681] "2013-09-08" "2014-02-10" "2014-02-10" "2014-02-10" "2013-09-08"
## [24686] "2013-09-08" "2014-02-10" "2013-10-13" "2013-10-13" "2013-10-13"
## [24691] "2013-09-18" "2013-09-18" "2013-09-18" "2013-10-13" "2013-10-13"
## [24696] "2013-10-13" "2011-11-15" "2011-11-15" "2011-11-15" "2013-01-02"
## [24701] "2013-01-02" "2011-04-27" "2011-05-02" "2011-06-29" "2013-01-02"
## [24706] "2011-04-27" "2011-05-02" "2011-05-06" "2013-01-02" "2013-01-02"
## [24711] "2011-06-29" "2011-04-27" "2011-05-02" "2011-05-06" "2011-05-06"
## [24716] "2011-04-27" "2013-01-02" "2011-06-29" "2011-05-02" "2011-05-06"
## [24721] "2011-10-01" "2012-12-22" "2011-12-27" "2011-08-05" "2011-08-05"
## [24726] "2011-12-27" "2011-10-01" "2013-09-16" "2013-09-16" "2011-08-05"
## [24731] "2012-12-22" "2012-07-18" "2011-12-27" "2013-09-16" "2011-10-01"
## [24736] "2012-12-22" "2013-09-16" "2011-08-05" "2011-12-27" "2013-09-16"
## [24741] "2011-10-01" "2011-08-05" "2011-10-01" "2012-07-18" "2011-12-27"
## [24746] "2012-04-02" "2012-04-02" "2013-10-21" "2012-04-02" "2013-10-21"
## [24751] "2013-10-03" "2013-10-03" "2013-03-03" "2013-10-03" "2013-07-06"
## [24756] "2013-03-03" "2013-10-03" "2013-07-06" "2013-10-03" "2013-03-03"
## [24761] "2013-10-03" "2013-03-17" "2011-07-07" "2011-03-24" "2013-03-17"
## [24766] "2011-07-07" "2013-08-09" "2011-03-24" "2013-03-17" "2013-08-09"
## [24771] "2011-07-07" "2011-07-07" "2011-03-24" "2011-03-24" "2011-03-24"
## [24776] "2011-07-07" "2011-07-07" "2012-03-11" "2012-03-11" "2012-03-11"
## [24781] "2012-03-11" "2012-03-11" "2012-07-17" "2012-07-17" "2012-07-08"
## [24786] "2012-12-14" "2011-10-27" "2012-12-14" "2012-10-15" "2013-11-21"
## [24791] "2012-12-14" "2012-10-15" "2012-07-08" "2012-12-14" "2012-10-15"
## [24796] "2012-12-14" "2011-10-27" "2012-07-08" "2011-10-27" "2013-11-21"
## [24801] "2011-02-23" "2012-10-06" "2011-02-23" "2011-02-23" "2012-10-06"
## [24806] "2012-10-06" "2013-05-26" "2013-07-05" "2012-03-29" "2012-03-29"
## [24811] "2013-07-05" "2013-07-05" "2013-07-05" "2012-03-29" "2013-07-05"
## [24816] "2013-05-26" "2012-10-11" "2013-02-08" "2013-02-08" "2012-10-11"
## [24821] "2012-10-11" "2013-05-24" "2013-03-05" "2013-03-05" "2011-05-16"
## [24826] "2013-05-24" "2013-02-07" "2013-02-07" "2013-02-07" "2011-05-16"
## [24831] "2013-05-24" "2013-02-07" "2013-02-07" "2013-04-15" "2013-04-15"
## [24836] "2013-04-15" "2013-04-15" "2013-04-15" "2011-03-31" "2011-03-31"
## [24841] "2011-03-31" "2011-03-31" "2011-11-13" "2011-11-13" "2011-10-14"
## [24846] "2011-11-13" "2011-10-14" "2013-03-09" "2013-03-09" "2011-05-23"
## [24851] "2011-05-23" "2011-05-23" "2013-03-14" "2013-03-14" "2013-03-14"
## [24856] "2013-03-09" "2011-10-14" "2011-11-30" "2013-07-11" "2011-11-30"
## [24861] "2011-11-30" "2011-02-27" "2011-02-27" "2013-07-11" "2011-11-30"
## [24866] "2011-02-27" "2011-11-30" "2011-02-27" "2011-02-27" "2013-07-11"
## [24871] "2013-08-11" "2013-08-11" "2013-08-11" "2013-02-08" "2013-02-08"
## [24876] "2012-07-26" "2012-07-26" "2012-07-09" "2012-07-31" "2013-02-08"
## [24881] "2013-02-08" "2012-07-09" "2012-07-31" "2012-04-10" "2013-02-08"
## [24886] "2012-07-26" "2012-07-31" "2011-08-24" "2012-04-10" "2012-07-09"
## [24891] "2012-07-26" "2011-08-24" "2012-07-31" "2012-07-26" "2012-07-31"
## [24896] "2011-12-10" "2013-11-30" "2013-11-30" "2011-12-10" "2011-07-05"
## [24901] "2011-12-10" "2011-12-10" "2011-12-10" "2013-11-30" "2011-07-05"
## [24906] "2011-07-05" "2012-03-04" "2012-03-04" "2011-03-19" "2013-07-20"
## [24911] "2011-03-19" "2011-03-19" "2012-08-30" "2012-08-30" "2011-03-19"
## [24916] "2011-03-19" "2013-07-20" "2013-07-14" "2011-07-14" "2012-08-30"
## [24921] "2012-08-30" "2012-08-30" "2013-07-14" "2013-07-20" "2011-07-14"
## [24926] "2011-03-19" "2011-07-14" "2011-07-14" "2013-07-14" "2011-07-14"
## [24931] "2013-07-06" "2013-07-06" "2011-03-03" "2011-03-03" "2011-03-03"
## [24936] "2012-11-13" "2013-05-09" "2013-05-09" "2012-11-13" "2013-11-11"
## [24941] "2012-05-04" "2012-05-04" "2013-11-11" "2013-11-11" "2012-05-04"
## [24946] "2011-10-07" "2011-10-07" "2011-08-31" "2011-08-31" "2012-10-16"
## [24951] "2013-10-07" "2013-10-07" "2013-10-07" "2013-10-07" "2012-10-16"
## [24956] "2013-10-07" "2012-07-25" "2012-07-25" "2012-07-25" "2012-07-25"
## [24961] "2012-07-25" "2013-07-11" "2013-11-15" "2013-11-15" "2013-07-11"
## [24966] "2013-11-15" "2013-11-15" "2013-07-11" "2011-03-04" "2011-03-04"
## [24971] "2013-07-11" "2013-11-15" "2011-03-04" "2013-07-11" "2013-07-11"
## [24976] "2012-11-19" "2012-11-19" "2011-09-30" "2012-11-19" "2012-11-19"
## [24981] "2012-11-19" "2011-09-30" "2012-07-13" "2011-05-01" "2012-07-13"
## [24986] "2011-05-01" "2011-05-01" "2011-07-11" "2012-07-13" "2011-05-01"
## [24991] "2011-05-01" "2011-07-11" "2011-07-11" "2011-08-03" "2011-08-03"
## [24996] "2011-02-16" "2011-02-16" "2011-02-16" "2011-02-16" "2011-02-16"
## [25001] "2011-10-30" "2014-01-15" "2014-01-24" "2013-03-20" "2014-01-15"
## [25006] "2014-01-24" "2011-10-30" "2012-01-04" "2012-01-04" "2012-01-04"
## [25011] "2013-03-20" "2012-01-04" "2011-10-30" "2012-01-04" "2012-01-04"
## [25016] "2012-01-17" "2012-03-10" "2012-01-17" "2012-03-10" "2012-01-17"
## [25021] "2012-01-17" "2012-03-10" "2012-08-13" "2012-08-19" "2012-08-19"
## [25026] "2012-08-13" "2011-12-30" "2011-12-30" "2011-12-30" "2012-01-04"
## [25031] "2012-01-04" "2012-01-04" "2011-06-28" "2011-06-28" "2012-05-21"
## [25036] "2011-06-28" "2011-06-28" "2012-05-04" "2012-05-04" "2012-05-04"
## [25041] "2012-05-04" "2012-03-18" "2012-05-04" "2012-05-04" "2012-03-18"
## [25046] "2011-06-28" "2011-06-28" "2012-03-18" "2012-05-21" "2013-07-24"
## [25051] "2013-07-24" "2013-07-24" "2013-07-24" "2013-07-24" "2012-08-31"
## [25056] "2012-09-03" "2011-02-13" "2012-09-03" "2011-02-13" "2012-08-31"
## [25061] "2012-08-31" "2012-09-03" "2011-02-13" "2011-02-13" "2012-09-03"
## [25066] "2012-08-31" "2013-02-03" "2012-05-19" "2011-07-20" "2013-02-03"
## [25071] "2013-12-23" "2013-02-03" "2012-05-19" "2013-02-03" "2012-05-27"
## [25076] "2011-07-20" "2013-12-23" "2011-07-20" "2012-05-19" "2011-07-20"
## [25081] "2013-02-03" "2012-05-19" "2011-07-20" "2012-05-19" "2012-05-27"
## [25086] "2012-05-19" "2013-12-23" "2013-12-23" "2012-11-24" "2011-10-31"
## [25091] "2011-10-31" "2011-06-24" "2011-10-31" "2011-06-24" "2011-10-31"
## [25096] "2011-06-24" "2012-11-24" "2011-06-24" "2011-06-24" "2013-03-30"
## [25101] "2013-01-03" "2012-12-24" "2013-03-30" "2013-03-30" "2012-12-24"
## [25106] "2013-01-03" "2013-03-30" "2013-03-30" "2013-11-06" "2013-11-06"
## [25111] "2013-11-06" "2012-02-05" "2012-02-05" "2012-02-05" "2012-02-05"
## [25116] "2013-11-06" "2013-11-06" "2012-02-05" "2013-02-02" "2013-02-07"
## [25121] "2013-02-07" "2013-02-02" "2014-01-23" "2014-01-23" "2012-06-30"
## [25126] "2014-01-23" "2012-06-30" "2012-06-30" "2012-06-30" "2012-06-30"
## [25131] "2012-06-30" "2013-06-27" "2013-06-27" "2013-06-27" "2012-07-06"
## [25136] "2011-04-15" "2011-04-15" "2011-04-15" "2012-07-06" "2012-07-06"
## [25141] "2011-04-15" "2011-04-15" "2014-02-02" "2014-01-29" "2014-01-29"
## [25146] "2014-02-02" "2014-01-29" "2014-01-29" "2014-02-02" "2014-02-02"
## [25151] "2012-10-10" "2012-10-10" "2013-02-03" "2013-02-03" "2013-02-03"
## [25156] "2012-11-29" "2012-11-29" "2012-11-29" "2012-11-29" "2012-11-29"
## [25161] "2012-11-29" "2011-07-03" "2011-07-03" "2013-01-22" "2013-01-22"
## [25166] "2011-07-03" "2013-01-15" "2013-01-15" "2013-01-15" "2013-01-15"
## [25171] "2013-08-13" "2013-08-13" "2012-06-19" "2011-02-06" "2013-09-04"
## [25176] "2012-06-19" "2011-02-06" "2013-09-04" "2013-12-21" "2012-06-19"
## [25181] "2013-09-01" "2013-12-21" "2013-09-01" "2013-12-21" "2011-04-07"
## [25186] "2011-04-07" "2012-05-11" "2012-05-11" "2011-04-07" "2011-04-07"
## [25191] "2011-04-07" "2012-05-11" "2011-04-12" "2011-04-12" "2011-04-12"
## [25196] "2012-05-11" "2011-04-12" "2011-04-12" "2012-05-11" "2011-07-28"
## [25201] "2011-07-28" "2012-09-19" "2012-09-19" "2011-05-22" "2012-01-07"
## [25206] "2012-07-03" "2012-01-07" "2011-05-22" "2012-07-03" "2012-07-03"
## [25211] "2013-08-14" "2013-08-14" "2013-08-30" "2012-01-21" "2012-10-01"
## [25216] "2013-08-30" "2012-01-21" "2012-10-06" "2012-10-01" "2012-10-01"
## [25221] "2012-08-24" "2012-08-16" "2012-10-06" "2012-10-06" "2012-08-24"
## [25226] "2013-06-20" "2012-08-16" "2013-06-20" "2012-01-21" "2014-02-13"
## [25231] "2013-12-14" "2013-01-19" "2013-01-19" "2011-03-04" "2013-01-20"
## [25236] "2013-12-14" "2013-01-20" "2014-02-13" "2011-03-04" "2013-12-14"
## [25241] "2011-03-04" "2011-03-04" "2011-03-04" "2014-02-05" "2014-02-05"
## [25246] "2014-02-05" "2014-02-05" "2014-02-05" "2011-10-23" "2011-10-23"
## [25251] "2011-10-23" "2011-10-23" "2011-10-23" "2013-10-10" "2013-10-10"
## [25256] "2012-11-02" "2013-10-10" "2012-11-02" "2012-10-27" "2012-11-27"
## [25261] "2012-11-27" "2012-10-27" "2012-11-27" "2012-11-27" "2012-10-27"
## [25266] "2012-11-02" "2013-11-25" "2013-11-25" "2013-02-01" "2013-11-25"
## [25271] "2013-02-01" "2013-02-01" "2013-02-01" "2012-12-10" "2012-11-16"
## [25276] "2012-04-06" "2013-11-25" "2012-11-16" "2013-02-01" "2012-04-06"
## [25281] "2012-11-16" "2013-11-25" "2012-12-10" "2012-12-10" "2012-04-06"
## [25286] "2013-11-25" "2011-04-09" "2011-04-09" "2011-04-09" "2011-04-09"
## [25291] "2014-01-29" "2013-08-05" "2013-08-05" "2014-02-04" "2014-02-04"
## [25296] "2014-01-29" "2013-08-05" "2013-08-05" "2013-08-05" "2012-11-17"
## [25301] "2012-11-17" "2013-08-26" "2013-08-26" "2013-05-14" "2013-05-14"
## [25306] "2013-12-16" "2013-12-16" "2013-12-16" "2013-07-13" "2013-07-13"
## [25311] "2013-07-13" "2012-07-31" "2012-07-31" "2012-07-31" "2012-01-26"
## [25316] "2011-02-23" "2013-03-31" "2011-02-23" "2012-01-26" "2012-01-26"
## [25321] "2012-01-26" "2012-01-26" "2013-04-06" "2013-03-31" "2012-01-26"
## [25326] "2013-04-06" "2011-09-26" "2011-09-26" "2011-09-26" "2013-09-03"
## [25331] "2013-09-03" "2013-07-28" "2013-07-28" "2013-07-28" "2013-09-03"
## [25336] "2013-07-28" "2013-07-28" "2013-03-14" "2011-09-02" "2011-11-15"
## [25341] "2013-03-14" "2013-10-04" "2011-09-02" "2011-09-02" "2013-03-14"
## [25346] "2011-11-15" "2011-09-02" "2013-10-04" "2011-11-13" "2011-09-02"
## [25351] "2013-10-04" "2011-11-13" "2012-07-13" "2011-07-19" "2012-07-13"
## [25356] "2012-07-13" "2011-07-19" "2012-03-27" "2012-03-27" "2013-12-05"
## [25361] "2013-12-05" "2013-12-05" "2013-12-05" "2012-03-27" "2013-10-13"
## [25366] "2013-10-13" "2013-10-13" "2013-10-13" "2013-10-13" "2011-12-08"
## [25371] "2011-04-14" "2011-04-14" "2011-09-12" "2011-09-12" "2011-12-08"
## [25376] "2012-06-15" "2012-08-03" "2012-06-15" "2012-08-03" "2012-06-15"
## [25381] "2012-08-03" "2012-06-15" "2012-06-15" "2011-09-01" "2011-09-01"
## [25386] "2011-09-01" "2011-09-01" "2011-09-01" "2011-09-01" "2012-08-01"
## [25391] "2013-05-03" "2012-08-01" "2013-05-03" "2012-10-14" "2012-01-09"
## [25396] "2012-08-01" "2012-10-14" "2012-10-14" "2012-06-02" "2012-06-02"
## [25401] "2012-08-01" "2013-05-03" "2012-01-09" "2012-06-02" "2012-06-02"
## [25406] "2012-08-01" "2012-06-02" "2013-01-28" "2012-12-28" "2011-10-24"
## [25411] "2012-12-28" "2013-01-28" "2012-12-28" "2012-11-12" "2012-12-28"
## [25416] "2011-10-24" "2012-11-12" "2012-11-12" "2012-12-28" "2011-10-24"
## [25421] "2013-01-28" "2012-10-10" "2012-10-10" "2013-01-06" "2013-01-04"
## [25426] "2013-01-06" "2012-10-10" "2013-01-04" "2012-11-12" "2012-11-12"
## [25431] "2014-02-02" "2011-01-30" "2014-02-02" "2011-01-30" "2014-02-02"
## [25436] "2012-11-02" "2012-07-03" "2012-07-03" "2012-06-03" "2012-11-02"
## [25441] "2012-06-03" "2012-11-02" "2012-07-12" "2012-03-09" "2012-11-02"
## [25446] "2012-11-02" "2012-03-09" "2012-07-12" "2012-03-09" "2012-01-04"
## [25451] "2013-06-15" "2012-01-04" "2011-09-21" "2011-09-21" "2011-09-21"
## [25456] "2013-06-15" "2013-06-15" "2011-12-29" "2011-12-24" "2011-12-30"
## [25461] "2011-10-07" "2011-12-30" "2013-03-06" "2011-12-30" "2011-12-24"
## [25466] "2011-12-24" "2011-12-30" "2011-12-29" "2011-12-24" "2013-03-06"
## [25471] "2011-10-07" "2012-06-15" "2011-12-30" "2011-12-29" "2011-10-07"
## [25476] "2011-12-29" "2011-12-29" "2012-06-15" "2011-12-24" "2012-09-24"
## [25481] "2012-04-16" "2012-04-16" "2012-04-16" "2012-04-16" "2012-04-16"
## [25486] "2012-09-24" "2012-09-24" "2013-12-11" "2013-12-11" "2013-12-11"
## [25491] "2013-12-11" "2013-12-11" "2012-09-28" "2012-05-29" "2012-02-03"
## [25496] "2012-02-03" "2012-07-11" "2012-05-29" "2012-05-29" "2012-05-29"
## [25501] "2012-09-28" "2012-07-11" "2012-07-11" "2012-02-03" "2012-02-03"
## [25506] "2012-02-03" "2011-05-06" "2011-05-06" "2011-05-06" "2011-05-06"
## [25511] "2012-09-02" "2011-05-06" "2012-09-02" "2012-09-02" "2013-08-16"
## [25516] "2013-08-16" "2013-11-29" "2013-11-29" "2013-11-29" "2011-08-29"
## [25521] "2013-08-16" "2011-08-29" "2012-12-21" "2012-12-21" "2012-12-21"
## [25526] "2013-10-09" "2013-10-09" "2013-10-09" "2013-10-09" "2011-03-08"
## [25531] "2011-03-08" "2011-03-08" "2013-07-10" "2011-03-08" "2013-05-07"
## [25536] "2013-07-10" "2013-05-07" "2013-07-10" "2013-07-10" "2011-03-08"
## [25541] "2013-05-07" "2013-02-05" "2011-06-04" "2011-06-04" "2011-06-04"
## [25546] "2013-02-05" "2011-06-04" "2012-04-30" "2012-04-30" "2012-05-27"
## [25551] "2013-02-05" "2012-05-27" "2012-05-27" "2012-05-27" "2012-05-27"
## [25556] "2011-02-08" "2011-02-07" "2011-02-07" "2011-02-08" "2011-02-08"
## [25561] "2011-02-08" "2013-04-05" "2011-02-07" "2011-02-07" "2011-02-08"
## [25566] "2011-02-07" "2013-04-05" "2011-02-07" "2011-02-08" "2011-04-17"
## [25571] "2011-12-10" "2011-04-17" "2011-12-17" "2012-10-21" "2011-04-17"
## [25576] "2011-04-17" "2011-04-17" "2011-12-10" "2011-04-17" "2012-10-21"
## [25581] "2011-12-15" "2011-12-15" "2012-10-21" "2011-12-17" "2013-05-19"
## [25586] "2013-05-19" "2013-05-19" "2011-09-27" "2011-09-27" "2011-05-21"
## [25591] "2012-08-06" "2012-08-13" "2012-08-06" "2012-08-06" "2011-05-21"
## [25596] "2012-08-13" "2011-02-24" "2012-08-13" "2011-09-27" "2011-05-21"
## [25601] "2014-01-19" "2011-02-24" "2012-08-13" "2014-01-19" "2011-09-27"
## [25606] "2014-01-19" "2012-08-13" "2011-05-21" "2014-01-19" "2012-08-06"
## [25611] "2012-08-06" "2014-01-19" "2011-05-21" "2014-01-19" "2011-09-27"
## [25616] "2014-01-29" "2013-12-28" "2012-12-04" "2013-12-28" "2012-12-04"
## [25621] "2014-01-29" "2013-10-26" "2013-10-26" "2013-10-26" "2013-10-26"
## [25626] "2013-10-13" "2013-10-13" "2013-10-13" "2013-03-08" "2013-03-16"
## [25631] "2013-03-08" "2013-03-16" "2013-03-08" "2013-03-16" "2013-03-16"
## [25636] "2013-03-16" "2013-03-08" "2013-03-08" "2011-03-03" "2011-07-24"
## [25641] "2011-03-03" "2011-03-03" "2011-07-24" "2014-02-07" "2011-03-03"
## [25646] "2011-07-24" "2014-02-07" "2011-07-24" "2014-02-07" "2014-02-07"
## [25651] "2011-07-24" "2014-02-07" "2011-03-03" "2013-06-13" "2013-06-10"
## [25656] "2013-06-10" "2013-06-13" "2013-03-26" "2013-06-10" "2013-06-10"
## [25661] "2013-06-13" "2013-03-26" "2013-06-10" "2013-06-13" "2013-06-13"
## [25666] "2013-03-26" "2011-04-28" "2011-04-28" "2013-01-02" "2013-01-02"
## [25671] "2011-04-28" "2011-04-28" "2011-04-28" "2013-01-02" "2013-01-02"
## [25676] "2013-01-02" "2013-11-14" "2013-11-14" "2013-11-14" "2013-08-14"
## [25681] "2013-08-14" "2011-12-25" "2012-11-12" "2011-12-25" "2012-11-04"
## [25686] "2012-11-04" "2014-02-03" "2014-02-03" "2011-12-25" "2011-12-25"
## [25691] "2011-12-25" "2012-11-12" "2011-11-29" "2014-02-03" "2011-11-29"
## [25696] "2014-02-03" "2013-08-04" "2012-06-20" "2013-08-04" "2013-03-09"
## [25701] "2012-06-20" "2012-06-20" "2013-03-09" "2013-03-09" "2012-12-16"
## [25706] "2013-03-09" "2013-03-09" "2013-08-04" "2011-03-09" "2012-12-16"
## [25711] "2012-12-16" "2012-12-16" "2011-03-09" "2012-12-16" "2013-03-09"
## [25716] "2012-12-16" "2011-06-09" "2011-06-09" "2011-06-09" "2011-06-09"
## [25721] "2013-11-28" "2013-11-28" "2014-01-25" "2013-11-28" "2013-11-22"
## [25726] "2014-01-25" "2013-11-22" "2014-01-25" "2014-01-25" "2013-11-22"
## [25731] "2013-11-22" "2013-11-28" "2014-01-25" "2012-09-16" "2014-01-25"
## [25736] "2013-11-22" "2012-09-16" "2012-09-16" "2012-09-16" "2013-11-28"
## [25741] "2012-09-16" "2011-12-22" "2011-12-22" "2012-07-26" "2011-12-22"
## [25746] "2012-03-14" "2012-03-14" "2012-07-26" "2012-03-14" "2012-04-09"
## [25751] "2012-04-09" "2012-03-14" "2012-04-09" "2012-03-14" "2012-11-18"
## [25756] "2012-04-09" "2012-04-09" "2012-11-18" "2011-10-07" "2012-07-26"
## [25761] "2013-10-24" "2013-03-19" "2013-03-19" "2013-06-28" "2012-04-22"
## [25766] "2013-06-28" "2013-03-19" "2012-07-26" "2011-10-07" "2013-06-28"
## [25771] "2013-06-28" "2012-07-26" "2013-10-24" "2013-06-28" "2011-10-07"
## [25776] "2011-10-07" "2012-04-22" "2013-10-24" "2012-04-22" "2012-04-22"
## [25781] "2012-04-22" "2011-10-07" "2013-03-19" "2012-04-22" "2011-12-03"
## [25786] "2013-09-21" "2011-11-09" "2011-11-09" "2011-12-11" "2011-11-09"
## [25791] "2011-03-18" "2011-03-18" "2013-09-21" "2011-12-11" "2011-12-11"
## [25796] "2011-03-18" "2011-11-09" "2011-03-18" "2011-10-28" "2011-12-03"
## [25801] "2011-11-09" "2011-12-03" "2011-03-18" "2011-10-28" "2011-07-05"
## [25806] "2011-07-05" "2012-11-29" "2014-02-13" "2012-08-23" "2011-07-05"
## [25811] "2011-07-05" "2011-07-05" "2012-08-23" "2011-07-05" "2014-02-13"
## [25816] "2014-02-07" "2012-11-29" "2012-11-29" "2014-02-07" "2012-11-29"
## [25821] "2012-11-29" "2011-10-27" "2011-02-05" "2011-10-27" "2011-02-05"
## [25826] "2011-10-27" "2011-02-05" "2011-10-27" "2011-10-27" "2011-02-05"
## [25831] "2011-02-05" "2011-02-05" "2013-05-17" "2013-07-10" "2013-07-10"
## [25836] "2013-05-17" "2013-07-10" "2013-07-10" "2013-07-10" "2011-02-18"
## [25841] "2012-12-03" "2014-01-20" "2013-01-15" "2013-01-15" "2012-12-03"
## [25846] "2013-01-15" "2013-01-15" "2013-01-15" "2011-02-18" "2014-01-20"
## [25851] "2011-05-15" "2011-05-15" "2012-11-18" "2012-11-18" "2012-05-09"
## [25856] "2011-05-15" "2012-11-18" "2012-11-18" "2012-12-03" "2012-05-09"
## [25861] "2011-02-18" "2011-11-26" "2011-11-12" "2011-11-12" "2011-11-26"
## [25866] "2012-02-13" "2012-02-13" "2012-09-30" "2012-09-30" "2012-04-06"
## [25871] "2012-09-30" "2012-04-06" "2013-09-30" "2013-09-30" "2013-09-20"
## [25876] "2013-09-20" "2013-09-20" "2013-09-30" "2012-02-24" "2012-02-24"
## [25881] "2012-02-24" "2012-02-24" "2012-02-24" "2012-02-24" "2012-08-22"
## [25886] "2012-08-22" "2012-08-22" "2012-02-09" "2012-02-09" "2012-02-09"
## [25891] "2012-02-09" "2012-02-09" "2012-02-09" "2014-02-18" "2014-02-18"
## [25896] "2013-03-01" "2013-03-01" "2014-02-18" "2013-12-21" "2013-12-21"
## [25901] "2013-07-24" "2013-12-21" "2013-07-24" "2013-12-21" "2011-02-02"
## [25906] "2011-09-03" "2011-08-24" "2012-09-10" "2011-02-02" "2012-09-10"
## [25911] "2011-08-24" "2011-09-03" "2012-09-10" "2011-08-24" "2011-09-03"
## [25916] "2012-04-23" "2013-07-27" "2012-04-23" "2012-04-23" "2013-07-27"
## [25921] "2012-07-16" "2012-08-08" "2012-08-04" "2012-08-04" "2012-08-08"
## [25926] "2012-08-04" "2012-08-08" "2012-07-16" "2013-11-23" "2012-05-09"
## [25931] "2012-05-12" "2013-11-23" "2013-11-23" "2013-11-23" "2012-05-09"
## [25936] "2012-05-12" "2011-10-29" "2011-10-29" "2013-09-15" "2013-09-15"
## [25941] "2013-09-15" "2013-09-15" "2013-09-15" "2013-07-21" "2011-10-17"
## [25946] "2011-07-21" "2013-07-21" "2011-07-21" "2011-10-17" "2011-07-21"
## [25951] "2013-07-21" "2011-10-17" "2011-10-17" "2011-07-21" "2013-07-21"
## [25956] "2013-07-21" "2011-07-21" "2011-07-21" "2011-10-17" "2012-07-10"
## [25961] "2012-07-10" "2011-05-30" "2011-05-30" "2011-05-30" "2012-07-10"
## [25966] "2012-07-10" "2011-12-12" "2011-12-12" "2013-09-16" "2013-09-16"
## [25971] "2011-12-12" "2013-04-05" "2013-04-05" "2013-09-16" "2013-09-16"
## [25976] "2013-04-05" "2013-09-16" "2012-06-05" "2012-06-05" "2012-08-29"
## [25981] "2011-07-17" "2012-06-29" "2011-07-23" "2011-07-23" "2012-08-29"
## [25986] "2011-07-17" "2012-08-29" "2012-06-29" "2011-07-23" "2011-07-17"
## [25991] "2011-08-31" "2011-08-31" "2011-08-31" "2011-08-31" "2011-08-31"
## [25996] "2013-07-24" "2013-07-24" "2013-07-24" "2013-07-24" "2013-07-24"
## [26001] "2012-08-21" "2013-04-22" "2012-08-21" "2012-08-21" "2012-08-21"
## [26006] "2012-07-04" "2012-07-04" "2013-04-22" "2012-08-21" "2012-07-04"
## [26011] "2013-05-14" "2013-05-14" "2013-04-22" "2013-11-09" "2012-03-27"
## [26016] "2013-12-10" "2013-12-15" "2013-12-08" "2013-12-15" "2013-11-09"
## [26021] "2012-03-27" "2013-12-08" "2013-12-10" "2012-03-24" "2012-03-24"
## [26026] "2012-08-22" "2012-09-07" "2012-08-22" "2012-08-22" "2011-07-24"
## [26031] "2011-07-24" "2013-01-27" "2011-07-24" "2011-07-24" "2012-09-07"
## [26036] "2012-08-22" "2012-09-07" "2011-07-24" "2011-07-24" "2012-09-07"
## [26041] "2013-01-27" "2012-09-07" "2012-08-22" "2013-01-27" "2012-05-20"
## [26046] "2013-09-20" "2012-03-26" "2013-09-20" "2012-05-20" "2012-03-26"
## [26051] "2012-03-16" "2012-03-26" "2012-03-26" "2012-03-16" "2012-03-16"
## [26056] "2013-09-20" "2012-03-16" "2012-03-16" "2012-03-26" "2011-10-07"
## [26061] "2011-10-07" "2011-10-07" "2011-10-07" "2011-10-07" "2014-01-21"
## [26066] "2011-10-28" "2011-02-05" "2014-01-21" "2011-02-05" "2011-02-05"
## [26071] "2011-10-28" "2011-02-05" "2011-02-05" "2013-12-28" "2011-10-28"
## [26076] "2011-10-28" "2011-10-28" "2014-01-21" "2011-10-28" "2014-01-21"
## [26081] "2014-01-21" "2013-12-28" "2011-09-20" "2012-01-08" "2011-09-13"
## [26086] "2013-11-16" "2011-09-20" "2011-09-13" "2013-11-16" "2012-01-08"
## [26091] "2013-11-08" "2013-11-08" "2013-06-27" "2013-06-27" "2013-06-27"
## [26096] "2013-06-27" "2013-11-29" "2011-08-23" "2014-01-02" "2013-11-21"
## [26101] "2013-11-29" "2011-08-23" "2011-08-23" "2014-01-02" "2013-11-29"
## [26106] "2014-01-02" "2013-11-21" "2014-01-02" "2013-11-21" "2014-01-02"
## [26111] "2011-08-23" "2011-08-23" "2013-07-16" "2013-02-03" "2013-07-16"
## [26116] "2013-02-03" "2012-01-08" "2012-01-08" "2011-06-12" "2011-06-12"
## [26121] "2012-01-08" "2012-06-03" "2011-02-17" "2011-02-17" "2011-02-17"
## [26126] "2012-06-03" "2012-03-14" "2011-04-13" "2011-04-13" "2012-02-25"
## [26131] "2012-03-14" "2011-04-13" "2012-03-14" "2012-02-25" "2012-12-28"
## [26136] "2013-05-07" "2012-12-28" "2013-05-07" "2012-12-28" "2013-05-07"
## [26141] "2012-03-09" "2012-03-09" "2011-08-07" "2013-01-29" "2013-01-29"
## [26146] "2012-03-09" "2013-01-29" "2013-01-29" "2013-01-29" "2013-01-29"
## [26151] "2011-08-07" "2012-10-20" "2012-10-20" "2012-10-20" "2012-10-20"
## [26156] "2012-10-20" "2012-10-20" "2012-01-10" "2012-01-10" "2012-01-23"
## [26161] "2012-01-10" "2012-01-23" "2012-11-16" "2012-11-16" "2014-01-13"
## [26166] "2012-11-16" "2013-06-03" "2012-11-16" "2013-06-03" "2014-01-13"
## [26171] "2014-01-13" "2012-11-16" "2013-01-25" "2012-02-09" "2012-02-09"
## [26176] "2012-02-09" "2013-01-25" "2012-02-09" "2011-11-02" "2013-01-25"
## [26181] "2012-02-09" "2011-11-02" "2011-11-02" "2011-11-02" "2011-11-02"
## [26186] "2013-01-25" "2013-01-25" "2012-02-28" "2012-02-28" "2013-09-27"
## [26191] "2013-04-27" "2013-04-27" "2013-04-27" "2011-04-10" "2013-09-27"
## [26196] "2011-04-10" "2013-07-02" "2013-07-02" "2012-04-24" "2012-04-24"
## [26201] "2014-01-05" "2014-01-05" "2014-01-05" "2014-01-05" "2013-01-30"
## [26206] "2013-01-30" "2013-01-30" "2013-09-14" "2013-01-30" "2013-07-25"
## [26211] "2013-09-14" "2013-07-25" "2013-01-30" "2013-07-25" "2014-01-02"
## [26216] "2014-01-02" "2011-02-07" "2011-02-07" "2011-02-07" "2013-04-10"
## [26221] "2011-06-22" "2013-04-10" "2011-06-22" "2011-06-22" "2011-06-22"
## [26226] "2014-02-09" "2014-02-09" "2014-01-27" "2014-01-27" "2014-02-09"
## [26231] "2014-01-27" "2014-01-27" "2012-09-26" "2014-01-27" "2014-01-27"
## [26236] "2012-09-26" "2013-04-16" "2013-04-16" "2013-04-16" "2013-04-16"
## [26241] "2013-04-16" "2012-12-28" "2012-12-28" "2011-06-23" "2011-06-23"
## [26246] "2011-10-23" "2012-12-28" "2012-12-28" "2011-10-23" "2012-05-29"
## [26251] "2011-06-23" "2013-06-24" "2012-12-28" "2012-05-29" "2013-06-24"
## [26256] "2011-10-23" "2013-06-24" "2012-05-29" "2013-04-07" "2013-04-07"
## [26261] "2013-04-07" "2011-06-03" "2013-04-07" "2013-04-07" "2011-06-03"
## [26266] "2012-11-15" "2012-11-15" "2011-07-15" "2011-07-13" "2011-07-15"
## [26271] "2011-07-15" "2011-07-13" "2011-07-13" "2013-03-21" "2013-03-21"
## [26276] "2014-02-08" "2014-02-08" "2014-02-08" "2011-10-04" "2011-09-25"
## [26281] "2012-03-29" "2012-03-29" "2012-08-30" "2014-02-08" "2012-08-30"
## [26286] "2014-02-08" "2012-08-30" "2011-09-25" "2011-10-04" "2011-10-09"
## [26291] "2012-09-19" "2011-10-09" "2013-11-29" "2013-11-29" "2012-09-19"
## [26296] "2013-08-25" "2012-09-19" "2012-09-19" "2012-09-19" "2013-11-29"
## [26301] "2013-11-29" "2013-08-25" "2011-09-03" "2011-09-03" "2011-09-03"
## [26306] "2011-09-03" "2011-09-03" "2013-08-08" "2013-08-08" "2013-07-26"
## [26311] "2013-07-11" "2013-12-13" "2013-07-26" "2013-12-13" "2013-07-11"
## [26316] "2013-07-11" "2013-07-11" "2013-07-11" "2011-03-07" "2011-03-07"
## [26321] "2011-05-13" "2011-05-13" "2011-03-07" "2011-05-13" "2013-04-10"
## [26326] "2011-02-15" "2012-02-22" "2013-04-10" "2014-01-01" "2013-01-02"
## [26331] "2013-01-02" "2013-04-10" "2014-01-01" "2011-02-15" "2011-09-10"
## [26336] "2011-02-15" "2012-02-22" "2014-01-01" "2011-09-10" "2013-09-06"
## [26341] "2013-09-06" "2013-09-06" "2011-08-18" "2011-11-30" "2011-11-30"
## [26346] "2012-01-19" "2011-11-30" "2012-01-19" "2011-11-30" "2011-08-18"
## [26351] "2011-11-30" "2012-12-25" "2012-12-25" "2012-12-25" "2012-04-07"
## [26356] "2011-05-05" "2013-09-24" "2013-09-24" "2013-09-24" "2012-04-07"
## [26361] "2012-09-08" "2012-09-08" "2011-05-05" "2012-09-08" "2013-02-11"
## [26366] "2013-02-25" "2013-02-25" "2013-02-25" "2013-02-11" "2013-02-11"
## [26371] "2013-02-25" "2013-02-25" "2012-06-26" "2012-06-26" "2013-02-25"
## [26376] "2012-01-22" "2012-01-22" "2012-01-22" "2012-10-13" "2012-10-13"
## [26381] "2012-10-13" "2012-02-29" "2012-02-29" "2013-09-11" "2012-02-29"
## [26386] "2013-09-11" "2011-10-22" "2011-10-22" "2011-10-22" "2011-10-22"
## [26391] "2012-06-18" "2012-06-18" "2011-03-17" "2011-03-17" "2012-08-03"
## [26396] "2013-06-15" "2012-08-03" "2012-08-03" "2013-06-15" "2012-08-03"
## [26401] "2012-08-03" "2013-06-15" "2013-04-12" "2013-04-12" "2013-04-12"
## [26406] "2013-04-12" "2013-04-12" "2011-02-07" "2011-02-13" "2011-02-07"
## [26411] "2011-02-13" "2011-02-07" "2011-11-22" "2011-02-13" "2012-04-29"
## [26416] "2012-04-29" "2011-11-22" "2011-11-22" "2012-02-18" "2012-09-21"
## [26421] "2012-02-18" "2011-02-21" "2011-02-21" "2012-09-21" "2011-02-21"
## [26426] "2012-02-18" "2014-01-03" "2014-01-03" "2013-04-21" "2013-04-21"
## [26431] "2012-09-29" "2012-01-12" "2012-01-12" "2012-05-02" "2012-09-29"
## [26436] "2014-01-10" "2012-09-29" "2012-01-12" "2012-01-12" "2012-05-02"
## [26441] "2012-01-12" "2013-09-20" "2013-09-20" "2012-09-29" "2012-09-29"
## [26446] "2012-05-02" "2014-01-10" "2014-01-10" "2014-01-10" "2013-08-01"
## [26451] "2013-08-01" "2013-08-01" "2013-08-01" "2013-08-01" "2012-03-30"
## [26456] "2012-03-30" "2011-12-12" "2011-12-12" "2011-06-28" "2011-12-12"
## [26461] "2011-06-28" "2011-12-12" "2011-02-05" "2011-12-12" "2011-02-05"
## [26466] "2013-11-21" "2013-11-21" "2013-11-21" "2013-11-21" "2013-12-26"
## [26471] "2013-11-21" "2012-11-10" "2013-11-21" "2012-11-10" "2013-12-26"
## [26476] "2012-11-10" "2013-11-12" "2013-11-12" "2013-11-12" "2013-11-12"
## [26481] "2013-09-23" "2013-11-12" "2013-09-23" "2013-11-12" "2013-08-11"
## [26486] "2013-08-11" "2013-08-11" "2013-08-11" "2013-08-11" "2011-01-30"
## [26491] "2011-01-30" "2011-12-16" "2013-10-28" "2013-10-28" "2013-10-28"
## [26496] "2011-12-16" "2011-12-09" "2011-12-09" "2013-10-05" "2011-02-03"
## [26501] "2013-07-26" "2011-02-01" "2011-02-03" "2011-02-03" "2013-10-05"
## [26506] "2011-02-01" "2013-07-22" "2013-07-26" "2013-07-26" "2011-02-01"
## [26511] "2011-02-03" "2011-08-06" "2013-10-05" "2013-07-22" "2011-08-06"
## [26516] "2011-02-03" "2011-02-01" "2013-07-22" "2011-02-01" "2011-12-20"
## [26521] "2011-12-20" "2013-11-16" "2014-02-14" "2011-03-18" "2014-02-14"
## [26526] "2013-11-16" "2011-03-18" "2014-02-14" "2012-06-29" "2011-03-18"
## [26531] "2012-06-29" "2012-06-29" "2014-02-14" "2012-06-29" "2012-06-29"
## [26536] "2011-04-16" "2011-05-27" "2011-04-11" "2011-05-27" "2011-04-16"
## [26541] "2011-11-15" "2011-05-27" "2011-04-16" "2011-05-27" "2011-05-27"
## [26546] "2011-04-23" "2011-04-11" "2011-04-20" "2011-04-20" "2011-04-16"
## [26551] "2011-05-27" "2011-04-20" "2011-04-16" "2011-04-20" "2011-04-11"
## [26556] "2011-05-27" "2011-04-20" "2011-05-27" "2011-11-15" "2011-05-27"
## [26561] "2011-04-23" "2011-05-27" "2013-08-04" "2011-07-27" "2013-08-04"
## [26566] "2011-07-27" "2011-07-23" "2011-07-23" "2011-07-23" "2013-12-23"
## [26571] "2013-12-23" "2013-12-23" "2011-07-15" "2011-07-15" "2013-01-21"
## [26576] "2013-01-21" "2013-12-23" "2011-07-15" "2011-07-15" "2011-07-23"
## [26581] "2013-12-23" "2013-01-21" "2014-01-07" "2011-07-18" "2011-07-18"
## [26586] "2011-07-15" "2011-07-18" "2011-07-23" "2013-01-17" "2013-01-17"
## [26591] "2011-07-18" "2013-01-17" "2013-01-17" "2011-07-18" "2013-12-23"
## [26596] "2013-01-17" "2014-01-07" "2011-12-11" "2011-12-11" "2011-04-10"
## [26601] "2012-03-26" "2011-04-13" "2011-04-17" "2011-04-13" "2012-03-26"
## [26606] "2011-04-17" "2012-03-26" "2011-04-10" "2011-04-10" "2011-04-13"
## [26611] "2012-04-05" "2012-04-05" "2012-04-05" "2013-08-17" "2012-04-05"
## [26616] "2013-08-17" "2012-04-05" "2013-08-17" "2013-08-17" "2014-01-30"
## [26621] "2013-08-03" "2013-08-03" "2011-07-23" "2011-07-23" "2014-01-30"
## [26626] "2011-07-23" "2011-07-23" "2013-08-03" "2011-07-23" "2014-01-30"
## [26631] "2013-05-25" "2011-11-23" "2013-05-25" "2011-11-23" "2013-05-25"
## [26636] "2011-11-23" "2011-11-23" "2011-11-23" "2011-11-23" "2013-05-25"
## [26641] "2012-11-09" "2013-02-17" "2013-12-12" "2013-02-17" "2013-12-12"
## [26646] "2013-10-03" "2013-02-17" "2013-12-12" "2013-12-12" "2012-05-16"
## [26651] "2012-11-09" "2012-05-16" "2013-10-03" "2012-11-09" "2013-10-03"
## [26656] "2012-05-12" "2012-05-12" "2012-05-12" "2012-05-12" "2012-05-12"
## [26661] "2012-06-16" "2012-08-13" "2012-06-16" "2012-08-13" "2012-06-16"
## [26666] "2013-12-21" "2012-08-06" "2012-08-06" "2012-08-13" "2012-12-10"
## [26671] "2013-12-21" "2012-12-10" "2012-12-10" "2013-12-21" "2012-12-10"
## [26676] "2013-05-14" "2012-08-06" "2013-05-14" "2012-12-10" "2012-07-14"
## [26681] "2012-07-14" "2012-01-08" "2012-01-08" "2012-01-08" "2012-01-08"
## [26686] "2013-05-06" "2013-05-06" "2013-05-06" "2011-08-02" "2013-05-06"
## [26691] "2011-08-02" "2013-05-06" "2011-08-02" "2013-05-06" "2013-03-10"
## [26696] "2012-04-08" "2014-01-24" "2014-01-24" "2013-03-10" "2013-03-10"
## [26701] "2012-04-08" "2012-04-08" "2011-10-12" "2012-01-29" "2012-01-29"
## [26706] "2012-01-19" "2011-10-12" "2011-10-12" "2014-01-26" "2014-01-26"
## [26711] "2014-01-26" "2012-01-19" "2012-01-19" "2011-10-12" "2012-01-29"
## [26716] "2012-02-21" "2011-10-12" "2012-02-21" "2012-02-21" "2011-02-25"
## [26721] "2012-02-06" "2011-02-22" "2011-02-12" "2011-02-12" "2011-02-25"
## [26726] "2012-02-06" "2011-02-25" "2012-02-06" "2012-02-06" "2012-02-06"
## [26731] "2011-02-22" "2011-12-02" "2011-04-20" "2013-02-04" "2011-04-20"
## [26736] "2013-02-04" "2013-02-04" "2011-12-02" "2013-02-04" "2011-04-20"
## [26741] "2013-02-04" "2011-04-20" "2013-04-26" "2012-11-10" "2012-11-10"
## [26746] "2011-10-07" "2011-10-07" "2011-10-07" "2013-04-26" "2011-12-31"
## [26751] "2011-02-24" "2011-12-31" "2011-12-31" "2011-02-24" "2011-02-24"
## [26756] "2011-12-31" "2011-12-31" "2011-12-31" "2013-06-29" "2013-06-29"
## [26761] "2013-06-29" "2013-06-29" "2013-03-31" "2013-03-31" "2013-03-31"
## [26766] "2013-03-31" "2013-03-31" "2013-03-31" "2013-11-16" "2013-11-16"
## [26771] "2013-11-16" "2012-08-31" "2012-08-31" "2013-12-19" "2013-12-19"
## [26776] "2011-04-08" "2013-12-19" "2012-08-22" "2011-04-08" "2013-11-29"
## [26781] "2011-04-08" "2011-04-08" "2013-12-19" "2012-08-22" "2013-11-29"
## [26786] "2013-12-19" "2012-08-12" "2012-03-15" "2012-03-15" "2013-09-29"
## [26791] "2013-09-29" "2013-09-29" "2012-03-15" "2012-08-12" "2011-09-03"
## [26796] "2013-09-15" "2011-06-12" "2013-05-18" "2013-09-15" "2011-06-12"
## [26801] "2011-09-03" "2011-06-12" "2011-06-12" "2012-10-31" "2012-05-10"
## [26806] "2013-05-18" "2011-09-03" "2011-06-12" "2012-10-31" "2012-05-10"
## [26811] "2013-05-18" "2012-05-10" "2012-05-10" "2012-05-10" "2011-06-12"
## [26816] "2013-12-21" "2013-12-21" "2013-12-21" "2013-12-21" "2013-12-21"
## [26821] "2013-12-21" "2012-11-16" "2012-11-16" "2013-05-22" "2012-10-17"
## [26826] "2012-10-17" "2012-10-17" "2012-10-17" "2013-12-27" "2013-12-27"
## [26831] "2013-05-24" "2013-12-27" "2013-12-27" "2013-07-20" "2012-10-17"
## [26836] "2013-07-20" "2013-12-27" "2013-05-22" "2013-05-24" "2012-09-19"
## [26841] "2012-09-19" "2012-09-19" "2012-02-03" "2012-08-29" "2012-09-04"
## [26846] "2011-11-26" "2012-05-26" "2012-02-24" "2012-05-26" "2011-11-27"
## [26851] "2012-02-24" "2012-05-26" "2012-02-24" "2012-02-03" "2012-09-04"
## [26856] "2012-08-29" "2012-09-04" "2012-08-29" "2011-11-27" "2011-11-26"
## [26861] "2013-03-18" "2013-03-18" "2013-03-18" "2013-03-18" "2011-10-15"
## [26866] "2011-10-15" "2011-10-15" "2011-10-20" "2012-05-02" "2011-10-20"
## [26871] "2011-12-28" "2012-07-20" "2012-07-20" "2011-10-20" "2012-07-20"
## [26876] "2012-05-02" "2011-12-28" "2013-05-01" "2013-06-06" "2013-06-06"
## [26881] "2013-06-06" "2013-06-06" "2013-05-01" "2012-05-18" "2012-05-18"
## [26886] "2012-05-18" "2013-06-13" "2013-06-06" "2012-05-18" "2012-05-18"
## [26891] "2013-06-13" "2011-02-20" "2012-02-12" "2012-04-02" "2012-04-02"
## [26896] "2012-02-12" "2012-04-02" "2011-02-20" "2012-02-12" "2011-02-20"
## [26901] "2012-07-09" "2012-04-02" "2012-04-02" "2012-07-09" "2013-08-14"
## [26906] "2013-04-06" "2011-02-24" "2011-02-24" "2013-04-06" "2013-08-14"
## [26911] "2013-08-14" "2011-05-30" "2013-05-01" "2014-01-07" "2011-05-30"
## [26916] "2013-05-01" "2013-10-21" "2013-05-02" "2014-01-07" "2013-10-21"
## [26921] "2013-10-21" "2011-05-30" "2013-05-02" "2012-02-18" "2013-10-11"
## [26926] "2013-08-28" "2013-10-11" "2012-02-18" "2012-11-14" "2012-02-18"
## [26931] "2013-10-11" "2012-11-14" "2012-11-14" "2013-08-28" "2013-10-11"
## [26936] "2013-09-06" "2013-09-02" "2012-11-14" "2013-09-02" "2012-02-18"
## [26941] "2013-09-06" "2013-10-11" "2012-11-14" "2012-02-18" "2011-04-04"
## [26946] "2011-04-04" "2012-03-19" "2012-01-19" "2011-04-04" "2011-04-04"
## [26951] "2012-03-20" "2012-01-19" "2013-05-04" "2013-05-04" "2011-04-04"
## [26956] "2012-03-19" "2012-01-19" "2012-01-19" "2012-03-19" "2012-03-20"
## [26961] "2012-03-20" "2013-03-31" "2013-03-31" "2013-03-31" "2012-08-30"
## [26966] "2012-08-30" "2011-06-23" "2011-07-26" "2011-06-23" "2011-06-23"
## [26971] "2011-06-23" "2012-05-02" "2012-05-04" "2011-08-05" "2012-05-04"
## [26976] "2011-07-26" "2012-05-02" "2011-08-05" "2012-05-02" "2012-05-02"
## [26981] "2011-08-05" "2011-08-05" "2011-06-23" "2011-07-26" "2011-07-26"
## [26986] "2012-05-02" "2013-08-26" "2012-04-07" "2012-05-16" "2012-04-07"
## [26991] "2012-05-16" "2013-08-26" "2013-08-26" "2012-05-16" "2014-02-19"
## [26996] "2014-02-19" "2012-02-19" "2013-08-26" "2014-02-19" "2014-02-19"
## [27001] "2013-08-26" "2012-02-19" "2013-08-26" "2012-02-19" "2014-02-19"
## [27006] "2012-06-23" "2012-06-23" "2011-10-03" "2011-10-23" "2011-10-23"
## [27011] "2012-06-23" "2012-06-23" "2012-06-23" "2011-10-23" "2011-10-23"
## [27016] "2011-10-03" "2012-06-23" "2011-10-23" "2011-10-03" "2011-10-03"
## [27021] "2011-10-23" "2012-02-15" "2012-10-13" "2012-10-13" "2012-10-13"
## [27026] "2012-02-15" "2012-02-15" "2012-10-13" "2012-10-13" "2013-01-27"
## [27031] "2011-03-24" "2013-01-27" "2011-03-24" "2011-03-17" "2011-03-24"
## [27036] "2011-03-24" "2011-03-24" "2013-01-27" "2013-01-12" "2011-03-17"
## [27041] "2013-01-12" "2011-09-24" "2011-09-24" "2011-10-02" "2012-08-11"
## [27046] "2012-06-17" "2011-10-02" "2012-08-11" "2012-08-07" "2011-09-24"
## [27051] "2012-06-17" "2012-08-11" "2012-06-17" "2012-08-07" "2011-10-02"
## [27056] "2012-08-07" "2013-08-29" "2013-02-05" "2013-08-29" "2013-02-05"
## [27061] "2013-08-29" "2013-02-05" "2013-09-06" "2013-09-06" "2012-03-15"
## [27066] "2012-03-15" "2011-04-18" "2011-04-18" "2011-04-18" "2011-04-18"
## [27071] "2011-04-18" "2013-11-13" "2013-11-13" "2012-02-01" "2012-02-01"
## [27076] "2012-02-01" "2013-11-13" "2014-01-18" "2014-01-18" "2014-01-18"
## [27081] "2013-11-13" "2013-11-13" "2014-01-18" "2014-01-18" "2013-11-13"
## [27086] "2014-01-18" "2011-08-05" "2011-08-05" "2012-05-26" "2012-05-26"
## [27091] "2012-11-03" "2013-03-30" "2012-05-19" "2013-03-30" "2013-03-30"
## [27096] "2011-08-05" "2012-05-19" "2011-10-23" "2011-10-23" "2011-09-18"
## [27101] "2012-11-03" "2011-10-23" "2011-10-23" "2011-09-18" "2011-10-23"
## [27106] "2012-05-19" "2012-05-19" "2012-05-19" "2012-05-11" "2012-03-24"
## [27111] "2012-05-11" "2012-03-24" "2011-11-04" "2011-11-04" "2013-05-19"
## [27116] "2011-11-04" "2013-05-19" "2013-05-19" "2013-05-19" "2013-05-19"
## [27121] "2013-05-19" "2011-12-03" "2011-12-03" "2011-12-03" "2012-09-18"
## [27126] "2011-10-09" "2011-10-09" "2012-09-18" "2011-10-09" "2012-10-12"
## [27131] "2011-10-09" "2011-10-09" "2012-09-18" "2012-10-12" "2011-09-28"
## [27136] "2011-09-28" "2011-09-28" "2011-02-04" "2012-11-25" "2012-03-09"
## [27141] "2013-05-01" "2011-04-20" "2011-04-20" "2012-03-09" "2013-05-01"
## [27146] "2012-11-25" "2011-02-04" "2013-05-01" "2012-11-25" "2011-04-20"
## [27151] "2011-02-04" "2012-11-25" "2011-02-04" "2012-11-25" "2011-02-04"
## [27156] "2011-02-04" "2011-10-11" "2011-10-12" "2011-10-12" "2011-10-12"
## [27161] "2011-10-11" "2011-10-11" "2012-03-11" "2012-03-11" "2013-08-06"
## [27166] "2013-08-06" "2014-01-13" "2011-02-09" "2011-02-09" "2013-08-06"
## [27171] "2014-01-13" "2013-08-06" "2014-01-13" "2011-02-09" "2013-08-06"
## [27176] "2011-02-09" "2011-02-09" "2012-12-22" "2012-12-22" "2012-12-22"
## [27181] "2012-09-26" "2012-02-19" "2012-02-19" "2012-09-26" "2012-02-16"
## [27186] "2012-11-05" "2012-09-26" "2011-06-27" "2012-09-23" "2012-09-23"
## [27191] "2012-02-16" "2012-09-23" "2012-09-23" "2012-09-26" "2012-11-05"
## [27196] "2012-09-26" "2011-06-27" "2012-09-23" "2011-09-28" "2012-11-05"
## [27201] "2012-02-19" "2011-09-28" "2012-02-16" "2011-06-27" "2011-03-18"
## [27206] "2011-03-18" "2011-03-18" "2012-07-01" "2012-07-01" "2012-02-21"
## [27211] "2012-12-30" "2012-12-30" "2012-07-01" "2012-02-21" "2012-12-30"
## [27216] "2011-12-22" "2011-12-22" "2011-12-20" "2011-12-20" "2011-12-20"
## [27221] "2011-12-20" "2013-08-23" "2013-09-12" "2014-02-14" "2014-02-14"
## [27226] "2013-09-12" "2011-04-09" "2013-08-23" "2013-08-23" "2014-02-14"
## [27231] "2011-04-09" "2014-02-14" "2013-08-23" "2014-02-14" "2013-09-12"
## [27236] "2013-08-23" "2012-12-15" "2012-10-23" "2013-11-04" "2013-04-04"
## [27241] "2013-04-04" "2013-04-04" "2012-10-23" "2012-12-25" "2013-04-04"
## [27246] "2013-11-07" "2012-10-23" "2013-04-04" "2012-12-15" "2013-11-07"
## [27251] "2013-04-04" "2012-12-25" "2013-11-04" "2012-09-29" "2012-09-29"
## [27256] "2012-09-29" "2012-09-29" "2012-09-29" "2013-05-17" "2011-04-26"
## [27261] "2012-01-31" "2011-04-26" "2013-05-17" "2012-01-31" "2011-04-26"
## [27266] "2012-01-31" "2013-07-10" "2013-07-10" "2012-10-31" "2012-10-31"
## [27271] "2012-09-03" "2013-09-13" "2013-11-15" "2013-09-13" "2012-02-21"
## [27276] "2013-11-15" "2012-09-03" "2013-11-15" "2013-09-13" "2012-02-21"
## [27281] "2012-09-03" "2011-10-09" "2011-10-09" "2011-10-09" "2011-10-09"
## [27286] "2011-10-06" "2011-10-06" "2011-10-09" "2011-10-06" "2012-11-27"
## [27291] "2012-11-27" "2012-10-03" "2014-02-10" "2012-10-03" "2012-10-03"
## [27296] "2014-02-10" "2012-11-27" "2012-11-27" "2012-11-27" "2012-08-02"
## [27301] "2012-10-31" "2012-08-02" "2013-11-10" "2012-08-16" "2013-11-10"
## [27306] "2012-10-31" "2012-08-02" "2012-10-31" "2012-08-16" "2012-08-02"
## [27311] "2011-11-03" "2014-02-15" "2011-04-14" "2011-04-25" "2011-04-25"
## [27316] "2011-11-03" "2011-04-14" "2011-11-03" "2011-04-14" "2011-04-14"
## [27321] "2011-04-14" "2011-04-25" "2011-04-14" "2014-02-15" "2014-02-15"
## [27326] "2011-02-02" "2011-02-02" "2011-02-02" "2013-10-17" "2013-10-17"
## [27331] "2013-07-10" "2013-07-10" "2011-02-02" "2013-07-10" "2013-07-10"
## [27336] "2013-10-17" "2011-02-02" "2013-10-17" "2013-10-17" "2013-10-17"
## [27341] "2013-07-10" "2014-01-01" "2014-01-01" "2014-01-01" "2013-01-13"
## [27346] "2013-01-13" "2012-07-10" "2012-07-10" "2013-01-13" "2013-01-13"
## [27351] "2012-07-10" "2013-01-13" "2012-05-28" "2012-05-28" "2012-05-28"
## [27356] "2012-05-28" "2012-05-28" "2012-02-27" "2012-04-18" "2013-02-03"
## [27361] "2013-02-03" "2013-02-03" "2013-02-03" "2013-02-03" "2012-02-27"
## [27366] "2012-04-18" "2012-02-27" "2012-04-18" "2011-07-31" "2013-06-19"
## [27371] "2013-06-19" "2013-06-19" "2011-07-31" "2012-07-20" "2013-06-19"
## [27376] "2011-07-31" "2012-07-20" "2011-07-31" "2013-06-19" "2011-07-31"
## [27381] "2012-11-30" "2013-08-20" "2012-11-30" "2012-11-30" "2014-01-03"
## [27386] "2014-01-03" "2012-11-30" "2012-11-30" "2013-08-20" "2011-04-05"
## [27391] "2011-04-05" "2013-07-04" "2012-11-05" "2011-05-13" "2011-05-13"
## [27396] "2011-05-13" "2013-07-04" "2013-07-04" "2013-07-04" "2011-05-13"
## [27401] "2013-07-04" "2012-11-05" "2013-11-07" "2013-11-15" "2013-11-15"
## [27406] "2013-11-07" "2012-12-19" "2011-05-07" "2011-05-07" "2012-12-19"
## [27411] "2012-12-19" "2012-12-19" "2012-12-19" "2011-05-07" "2011-05-07"
## [27416] "2011-08-03" "2011-08-03" "2011-08-03" "2011-08-03" "2012-03-16"
## [27421] "2012-03-13" "2012-07-07" "2012-07-07" "2012-03-13" "2012-03-16"
## [27426] "2011-06-18" "2011-06-18" "2012-07-07" "2012-07-07" "2012-08-06"
## [27431] "2012-08-06" "2012-08-06" "2012-07-07" "2011-11-17" "2012-07-07"
## [27436] "2011-06-18" "2011-11-25" "2011-06-18" "2012-07-07" "2011-06-18"
## [27441] "2011-06-18" "2012-07-07" "2011-11-25" "2011-11-17" "2013-04-29"
## [27446] "2013-04-29" "2013-04-29" "2013-04-29" "2011-06-09" "2013-02-06"
## [27451] "2014-01-27" "2011-06-09" "2013-02-06" "2011-06-09" "2011-06-09"
## [27456] "2014-01-27" "2013-02-09" "2013-02-06" "2014-01-27" "2011-06-09"
## [27461] "2013-02-09" "2013-02-06" "2013-02-09" "2013-02-09" "2014-01-27"
## [27466] "2013-02-09" "2013-02-09" "2013-02-06" "2014-01-27" "2013-02-06"
## [27471] "2013-11-08" "2013-11-08" "2013-11-08" "2013-11-08" "2013-11-08"
## [27476] "2013-11-08" "2012-10-12" "2012-10-12" "2012-07-26" "2012-07-26"
## [27481] "2012-07-26" "2012-07-26" "2012-10-12" "2013-02-21" "2013-02-21"
## [27486] "2014-01-23" "2014-01-23" "2013-02-21" "2012-01-01" "2012-01-01"
## [27491] "2012-01-01" "2011-03-29" "2011-03-29" "2011-10-02" "2013-02-06"
## [27496] "2011-03-29" "2011-03-29" "2011-03-29" "2011-10-02" "2013-07-30"
## [27501] "2011-10-02" "2013-02-06" "2013-07-30" "2011-10-02" "2011-05-01"
## [27506] "2011-05-01" "2013-01-16" "2013-01-16" "2013-01-16" "2013-01-07"
## [27511] "2013-01-07" "2013-01-07" "2013-01-16" "2013-01-16" "2013-01-07"
## [27516] "2013-01-07" "2013-10-17" "2013-10-20" "2013-10-20" "2013-10-20"
## [27521] "2013-10-17" "2013-10-17" "2013-06-03" "2013-06-03" "2013-06-03"
## [27526] "2013-06-03" "2013-06-03" "2013-08-22" "2013-08-22" "2011-09-17"
## [27531] "2011-09-17" "2011-09-17" "2011-09-17" "2013-12-24" "2011-09-17"
## [27536] "2013-12-24" "2011-04-05" "2013-12-24" "2013-12-24" "2013-12-24"
## [27541] "2011-04-05" "2013-12-24" "2012-09-02" "2012-09-02" "2012-09-02"
## [27546] "2012-09-02" "2012-09-02" "2013-09-17" "2013-07-10" "2011-10-28"
## [27551] "2013-07-10" "2013-09-17" "2013-09-17" "2013-08-20" "2011-10-28"
## [27556] "2011-05-05" "2011-05-05" "2013-07-10" "2011-10-28" "2013-08-20"
## [27561] "2013-09-18" "2013-09-18" "2013-08-20" "2013-09-18" "2013-06-16"
## [27566] "2014-02-14" "2013-03-04" "2014-02-14" "2013-03-04" "2013-03-04"
## [27571] "2012-05-08" "2012-05-08" "2012-05-08" "2013-03-04" "2013-06-16"
## [27576] "2012-05-08" "2014-02-14" "2012-05-08" "2013-03-04" "2011-04-18"
## [27581] "2012-08-24" "2011-04-18" "2011-04-18" "2012-01-27" "2012-08-24"
## [27586] "2014-01-07" "2012-01-27" "2014-01-07" "2011-04-18" "2012-01-27"
## [27591] "2012-01-27" "2014-01-07" "2012-08-24" "2012-01-27" "2011-02-11"
## [27596] "2011-02-11" "2011-02-11" "2011-02-11" "2011-02-11" "2011-02-11"
## [27601] "2014-02-06" "2014-02-06" "2014-02-06" "2014-02-06" "2014-02-06"
## [27606] "2012-04-12" "2011-02-21" "2011-07-15" "2012-08-03" "2012-04-12"
## [27611] "2012-04-12" "2011-07-15" "2011-07-19" "2012-04-12" "2011-07-19"
## [27616] "2012-04-12" "2012-08-03" "2011-02-21" "2012-08-03" "2012-08-03"
## [27621] "2012-08-03" "2012-08-03" "2014-01-25" "2011-06-16" "2014-01-25"
## [27626] "2011-06-16" "2011-09-25" "2011-09-25" "2011-09-25" "2012-01-07"
## [27631] "2012-01-07" "2012-01-07" "2012-11-11" "2012-11-11" "2012-05-16"
## [27636] "2012-05-16" "2013-03-23" "2013-03-23" "2014-02-12" "2014-01-21"
## [27641] "2014-01-21" "2014-01-21" "2014-02-12" "2014-01-21" "2014-02-12"
## [27646] "2014-01-21" "2011-08-30" "2011-03-31" "2011-03-31" "2011-08-30"
## [27651] "2011-08-30" "2011-08-30" "2011-03-31" "2011-08-30" "2011-03-31"
## [27656] "2011-03-31" "2013-09-02" "2011-11-05" "2013-09-02" "2013-09-02"
## [27661] "2013-09-02" "2013-09-02" "2011-11-10" "2011-11-10" "2011-11-05"
## [27666] "2013-01-04" "2013-01-04" "2013-01-04" "2013-01-04" "2013-01-04"
## [27671] "2012-10-11" "2012-10-11" "2012-10-11" "2013-09-04" "2013-09-04"
## [27676] "2013-09-04" "2013-09-04" "2011-06-17" "2011-06-17" "2011-11-23"
## [27681] "2011-11-23" "2011-11-23" "2011-11-23" "2011-11-23" "2011-11-29"
## [27686] "2011-10-21" "2011-11-29" "2011-10-21" "2011-10-21" "2011-09-02"
## [27691] "2011-09-02" "2011-09-02" "2011-09-02" "2013-12-24" "2011-09-02"
## [27696] "2013-12-24" "2012-10-28" "2012-10-28" "2012-10-28" "2012-10-28"
## [27701] "2012-10-28" "2014-01-18" "2011-04-15" "2014-01-18" "2013-12-02"
## [27706] "2011-04-02" "2012-11-28" "2011-04-02" "2013-07-22" "2014-01-18"
## [27711] "2012-11-22" "2012-11-22" "2012-11-22" "2013-12-02" "2011-04-15"
## [27716] "2013-07-22" "2012-11-28" "2012-01-19" "2012-01-19" "2012-11-28"
## [27721] "2012-11-22" "2012-11-28" "2012-01-19" "2012-05-17" "2012-05-17"
## [27726] "2011-04-07" "2012-05-17" "2011-11-19" "2011-11-19" "2011-11-19"
## [27731] "2012-05-17" "2011-04-07" "2011-04-07" "2012-05-17" "2012-10-26"
## [27736] "2012-10-26" "2012-10-26" "2012-10-26" "2012-05-21" "2012-05-21"
## [27741] "2012-05-21" "2012-05-21" "2012-05-21" "2011-03-07" "2011-03-07"
## [27746] "2011-11-11" "2011-05-03" "2011-05-03" "2011-11-11" "2012-11-10"
## [27751] "2011-03-07" "2012-11-10" "2011-05-03" "2011-03-07" "2011-03-07"
## [27756] "2011-11-11" "2012-07-10" "2012-07-10" "2012-07-10" "2013-10-04"
## [27761] "2013-10-04" "2013-01-16" "2013-01-16" "2012-01-16" "2013-01-16"
## [27766] "2013-01-16" "2013-05-15" "2012-01-16" "2013-01-16" "2013-05-15"
## [27771] "2011-04-30" "2011-04-30" "2011-02-26" "2012-04-11" "2012-04-11"
## [27776] "2012-04-11" "2011-02-26" "2012-04-11" "2012-04-11" "2013-03-10"
## [27781] "2013-08-26" "2013-08-26" "2013-03-10" "2013-03-10" "2013-03-10"
## [27786] "2013-03-10" "2013-08-26" "2011-05-13" "2011-05-13" "2013-04-14"
## [27791] "2013-04-14" "2013-03-10" "2013-04-14" "2013-04-14" "2011-02-24"
## [27796] "2014-01-29" "2012-01-20" "2012-01-20" "2013-03-17" "2013-06-17"
## [27801] "2011-02-24" "2013-02-10" "2013-06-17" "2012-01-20" "2013-06-17"
## [27806] "2012-01-20" "2012-01-20" "2013-03-17" "2013-02-10" "2014-01-29"
## [27811] "2013-03-12" "2013-02-10" "2013-03-12" "2012-08-28" "2012-08-28"
## [27816] "2012-08-28" "2013-01-28" "2013-02-08" "2013-02-08" "2013-01-28"
## [27821] "2013-02-08" "2013-01-28" "2013-04-29" "2012-06-03" "2013-04-29"
## [27826] "2011-11-28" "2013-03-28" "2012-01-15" "2013-03-28" "2012-01-15"
## [27831] "2012-06-03" "2012-06-03" "2013-03-28" "2011-11-28" "2011-06-15"
## [27836] "2011-11-28" "2011-11-28" "2011-06-15" "2011-06-20" "2011-06-20"
## [27841] "2011-06-20" "2012-04-25" "2012-04-25" "2013-07-06" "2013-07-06"
## [27846] "2012-04-25" "2012-04-25" "2012-04-25" "2013-07-06" "2011-09-29"
## [27851] "2013-11-08" "2013-11-08" "2011-09-29" "2013-11-08" "2012-03-24"
## [27856] "2012-03-24" "2012-03-24" "2012-03-24" "2012-09-28" "2012-09-28"
## [27861] "2012-09-21" "2012-09-28" "2012-12-07" "2012-09-21" "2011-09-03"
## [27866] "2011-09-03" "2012-09-28" "2012-09-21" "2012-09-28" "2011-09-03"
## [27871] "2011-09-03" "2012-09-21" "2012-12-07" "2012-09-28" "2011-09-03"
## [27876] "2012-09-21" "2012-12-07" "2012-09-21" "2012-12-20" "2012-12-20"
## [27881] "2012-04-30" "2012-04-30" "2012-04-30" "2012-04-30" "2012-12-20"
## [27886] "2012-04-30" "2012-08-08" "2012-08-08" "2013-07-26" "2011-06-12"
## [27891] "2011-06-12" "2013-07-26" "2013-08-29" "2013-09-04" "2013-09-04"
## [27896] "2013-08-29" "2013-09-04" "2013-08-29" "2013-08-29" "2013-09-04"
## [27901] "2013-09-04" "2013-08-29" "2012-03-03" "2012-03-03" "2012-09-18"
## [27906] "2012-09-18" "2012-09-18" "2012-09-18" "2012-09-18" "2012-09-02"
## [27911] "2012-09-02" "2012-09-02" "2012-11-01" "2012-11-01" "2012-11-01"
## [27916] "2012-11-01" "2012-11-01" "2013-04-08" "2013-04-08" "2013-11-09"
## [27921] "2013-04-08" "2013-11-09" "2012-09-20" "2012-09-20" "2012-09-20"
## [27926] "2011-12-03" "2012-11-06" "2012-09-20" "2012-09-15" "2012-11-06"
## [27931] "2012-09-20" "2013-08-02" "2013-08-02" "2012-11-06" "2012-09-15"
## [27936] "2013-08-02" "2012-11-06" "2012-09-15" "2012-09-15" "2013-08-02"
## [27941] "2013-08-02" "2011-12-03" "2012-09-15" "2012-11-06" "2011-08-30"
## [27946] "2011-08-30" "2012-03-14" "2011-08-30" "2011-08-30" "2012-03-14"
## [27951] "2013-07-14" "2011-08-30" "2013-07-14" "2013-07-14" "2013-07-14"
## [27956] "2013-07-14" "2012-04-25" "2013-10-22" "2012-04-25" "2013-10-18"
## [27961] "2012-04-25" "2013-10-18" "2013-10-22" "2013-10-22" "2013-07-28"
## [27966] "2013-07-28" "2013-07-28" "2013-03-15" "2013-03-15" "2013-03-15"
## [27971] "2011-03-03" "2011-03-03" "2011-10-07" "2011-10-07" "2011-10-07"
## [27976] "2012-09-23" "2011-03-19" "2011-10-07" "2011-03-19" "2012-09-23"
## [27981] "2011-10-07" "2011-06-08" "2012-05-04" "2011-06-08" "2011-06-08"
## [27986] "2011-06-08" "2012-05-04" "2011-06-08" "2012-05-04" "2012-05-04"
## [27991] "2012-07-13" "2012-07-13" "2012-05-04" "2012-07-13" "2012-09-20"
## [27996] "2013-07-31" "2013-04-22" "2012-03-23" "2013-07-31" "2012-09-20"
## [28001] "2013-07-31" "2013-04-22" "2012-03-23" "2012-03-23" "2013-10-20"
## [28006] "2013-10-20" "2013-02-05" "2013-02-08" "2013-02-05" "2013-02-08"
## [28011] "2013-02-05" "2013-02-08" "2011-04-03" "2011-04-03" "2012-08-09"
## [28016] "2012-08-09" "2012-11-14" "2012-11-14" "2012-11-14" "2012-08-09"
## [28021] "2012-11-14" "2012-11-14" "2011-06-27" "2011-06-27" "2012-03-21"
## [28026] "2011-06-14" "2011-06-27" "2012-03-21" "2011-06-14" "2011-06-27"
## [28031] "2011-06-27" "2012-03-21" "2011-06-27" "2011-10-05" "2011-10-05"
## [28036] "2011-10-05" "2011-10-05" "2011-10-05" "2012-10-28" "2013-01-16"
## [28041] "2012-10-28" "2013-01-16" "2013-01-16" "2013-01-16" "2012-10-28"
## [28046] "2013-01-16" "2013-01-16" "2012-10-28" "2012-10-28" "2011-08-24"
## [28051] "2011-12-02" "2011-12-30" "2011-08-24" "2011-12-30" "2011-08-24"
## [28056] "2012-12-25" "2012-12-25" "2012-12-25" "2011-08-24" "2011-12-02"
## [28061] "2011-08-24" "2012-12-25" "2012-12-25" "2011-12-30" "2011-08-24"
## [28066] "2011-10-25" "2012-08-19" "2012-08-19" "2013-09-07" "2011-10-25"
## [28071] "2012-08-19" "2011-10-20" "2011-10-25" "2011-10-20" "2013-09-07"
## [28076] "2013-09-07" "2011-10-20" "2013-09-07" "2013-09-07" "2011-08-14"
## [28081] "2011-08-14" "2011-08-14" "2013-04-22" "2013-04-22" "2013-04-22"
## [28086] "2013-04-22" "2013-04-22" "2013-11-15" "2013-11-10" "2013-10-13"
## [28091] "2013-11-10" "2013-10-13" "2013-11-10" "2013-11-15" "2013-10-13"
## [28096] "2013-10-13" "2013-10-13" "2013-11-15" "2013-04-10" "2013-04-10"
## [28101] "2013-12-11" "2013-12-11" "2011-03-04" "2011-12-22" "2012-11-11"
## [28106] "2011-12-22" "2011-12-22" "2011-12-22" "2011-03-04" "2012-11-11"
## [28111] "2011-12-22" "2011-03-04" "2011-09-08" "2011-09-08" "2011-03-19"
## [28116] "2012-11-18" "2012-07-30" "2013-01-25" "2012-11-18" "2011-03-19"
## [28121] "2012-11-18" "2013-01-17" "2013-01-25" "2012-07-30" "2013-05-12"
## [28126] "2012-11-18" "2012-07-30" "2011-03-19" "2013-01-25" "2012-07-30"
## [28131] "2013-01-17" "2013-05-12" "2013-01-17" "2011-08-12" "2011-08-12"
## [28136] "2013-12-26" "2011-06-20" "2011-06-20" "2011-06-20" "2011-06-20"
## [28141] "2013-12-26" "2011-03-20" "2011-03-20" "2013-12-22" "2011-03-20"
## [28146] "2013-12-22" "2011-03-20" "2011-06-20" "2011-03-20" "2011-09-23"
## [28151] "2011-09-23" "2011-11-10" "2011-09-23" "2013-04-09" "2011-09-23"
## [28156] "2011-09-23" "2011-11-10" "2011-11-10" "2013-04-09" "2011-11-10"
## [28161] "2011-09-23" "2013-04-09" "2011-08-25" "2012-09-17" "2012-02-28"
## [28166] "2011-08-25" "2012-02-28" "2012-09-17" "2013-03-16" "2013-03-22"
## [28171] "2013-03-22" "2012-06-20" "2013-03-22" "2013-03-22" "2013-03-16"
## [28176] "2013-03-16" "2013-03-22" "2013-03-16" "2012-06-20" "2013-03-16"
## [28181] "2013-12-02" "2011-03-25" "2013-12-02" "2013-12-02" "2013-12-02"
## [28186] "2013-12-02" "2011-03-25" "2012-12-03" "2011-04-06" "2011-04-06"
## [28191] "2012-12-03" "2011-04-06" "2012-12-03" "2012-12-03" "2012-12-03"
## [28196] "2011-06-15" "2011-06-15" "2011-06-15" "2011-06-15" "2011-06-15"
## [28201] "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18"
## [28206] "2012-01-23" "2012-09-03" "2012-01-23" "2012-09-12" "2012-09-03"
## [28211] "2014-01-15" "2012-09-12" "2014-01-15" "2013-09-22" "2012-09-12"
## [28216] "2013-09-22" "2013-09-22" "2012-09-03" "2012-09-03" "2012-09-30"
## [28221] "2012-10-04" "2012-10-04" "2012-09-30" "2011-08-18" "2013-07-20"
## [28226] "2011-08-09" "2012-10-03" "2012-10-03" "2013-07-20" "2011-08-18"
## [28231] "2011-08-09" "2013-04-30" "2013-04-30" "2012-09-25" "2012-09-25"
## [28236] "2013-04-30" "2013-06-30" "2013-06-30" "2012-09-25" "2013-06-30"
## [28241] "2013-09-19" "2013-09-19" "2012-09-02" "2012-09-02" "2013-09-19"
## [28246] "2013-01-15" "2013-01-15" "2013-01-15" "2013-01-15" "2012-04-24"
## [28251] "2012-04-24" "2014-01-02" "2014-01-02" "2013-01-04" "2013-01-04"
## [28256] "2013-01-04" "2013-01-04" "2013-01-04" "2012-04-18" "2013-02-25"
## [28261] "2013-02-04" "2013-02-25" "2012-04-18" "2013-02-04" "2014-01-10"
## [28266] "2014-01-10" "2013-06-25" "2013-06-25" "2014-01-10" "2012-05-21"
## [28271] "2014-01-10" "2014-01-10" "2012-05-21" "2013-09-24" "2011-12-21"
## [28276] "2013-05-20" "2012-10-02" "2013-03-14" "2012-09-23" "2013-09-24"
## [28281] "2012-09-23" "2013-03-14" "2013-03-14" "2013-05-20" "2013-09-24"
## [28286] "2013-05-20" "2011-11-10" "2013-03-14" "2011-12-21" "2011-11-10"
## [28291] "2012-09-23" "2013-05-20" "2013-09-24" "2013-09-24" "2011-12-21"
## [28296] "2013-05-20" "2013-05-20" "2013-03-14" "2012-10-02" "2012-10-02"
## [28301] "2011-11-10" "2012-02-28" "2012-01-11" "2012-01-11" "2012-01-11"
## [28306] "2012-01-11" "2012-08-10" "2012-01-11" "2012-02-28" "2012-02-28"
## [28311] "2012-08-10" "2012-08-10" "2012-08-10" "2012-08-10" "2012-02-28"
## [28316] "2012-02-28" "2011-07-12" "2011-09-02" "2011-07-12" "2011-09-02"
## [28321] "2011-07-12" "2011-09-02" "2011-07-12" "2011-07-12" "2011-09-02"
## [28326] "2011-05-17" "2011-05-17" "2012-07-11" "2012-07-11" "2012-07-11"
## [28331] "2012-07-11" "2011-05-17" "2012-07-11" "2013-11-29" "2013-10-29"
## [28336] "2012-09-22" "2013-11-29" "2013-10-19" "2013-10-19" "2012-09-22"
## [28341] "2012-09-22" "2013-10-29" "2013-10-29" "2013-10-19" "2013-10-19"
## [28346] "2013-10-19" "2013-02-20" "2013-02-20" "2013-02-20" "2013-05-14"
## [28351] "2013-05-14" "2013-05-14" "2013-05-14" "2013-05-14" "2013-05-14"
## [28356] "2013-11-06" "2013-11-06" "2012-12-11" "2012-12-11" "2013-11-25"
## [28361] "2012-04-27" "2012-04-27" "2013-11-25" "2013-11-25" "2012-04-27"
## [28366] "2013-11-25" "2013-11-25" "2012-06-26" "2012-09-04" "2012-06-26"
## [28371] "2012-09-04" "2012-09-04" "2012-08-15" "2012-09-04" "2012-08-15"
## [28376] "2012-08-15" "2012-08-15" "2012-09-04" "2012-09-04" "2012-08-15"
## [28381] "2012-08-15" "2012-05-15" "2011-10-26" "2012-05-15" "2011-10-26"
## [28386] "2011-10-26" "2011-10-26" "2011-10-26" "2014-01-22" "2012-05-15"
## [28391] "2011-10-26" "2014-01-22" "2013-12-05" "2012-11-27" "2013-12-05"
## [28396] "2012-11-27" "2012-11-27" "2011-09-03" "2013-09-11" "2013-09-11"
## [28401] "2011-09-03" "2013-09-11" "2013-09-11" "2013-09-11" "2013-08-16"
## [28406] "2013-08-16" "2013-08-16" "2013-08-16" "2013-08-16" "2011-03-19"
## [28411] "2013-10-20" "2013-10-20" "2011-05-15" "2011-05-15" "2011-05-15"
## [28416] "2013-10-20" "2011-06-19" "2011-03-19" "2013-10-20" "2011-03-19"
## [28421] "2011-03-19" "2011-06-19" "2011-06-19" "2013-03-12" "2013-03-12"
## [28426] "2013-03-12" "2012-10-23" "2012-10-23" "2012-08-28" "2012-04-11"
## [28431] "2012-04-11" "2012-08-28" "2012-10-23" "2012-04-11" "2012-08-28"
## [28436] "2012-04-11" "2012-10-23" "2013-06-04" "2013-06-04" "2012-09-20"
## [28441] "2012-09-29" "2012-09-20" "2012-09-29" "2012-09-29" "2012-09-20"
## [28446] "2011-02-01" "2012-11-02" "2011-02-01" "2012-11-02" "2013-11-18"
## [28451] "2012-09-19" "2012-09-19" "2013-11-18" "2011-02-01" "2012-11-02"
## [28456] "2013-11-18" "2011-02-11" "2011-02-11" "2012-07-23" "2012-07-23"
## [28461] "2012-07-23" "2012-07-23" "2012-07-23" "2013-05-08" "2013-05-08"
## [28466] "2011-11-24" "2013-05-08" "2011-11-24" "2011-11-24" "2011-11-24"
## [28471] "2011-11-24" "2013-01-05" "2011-03-16" "2011-03-16" "2011-03-10"
## [28476] "2013-02-23" "2013-02-23" "2013-02-23" "2013-01-05" "2013-02-23"
## [28481] "2013-06-13" "2011-03-10" "2013-06-13" "2013-01-05" "2011-03-16"
## [28486] "2013-01-05" "2013-01-05" "2013-02-23" "2011-03-10" "2012-05-31"
## [28491] "2011-03-20" "2011-03-20" "2011-03-20" "2011-07-17" "2011-07-17"
## [28496] "2011-03-20" "2011-07-08" "2011-07-08" "2011-03-20" "2012-05-31"
## [28501] "2011-03-20" "2011-07-17" "2012-06-09" "2012-06-09" "2012-05-31"
## [28506] "2011-07-08" "2012-06-09" "2011-09-10" "2011-09-10" "2011-09-10"
## [28511] "2011-09-10" "2011-09-10" "2011-09-10" "2012-07-11" "2011-03-03"
## [28516] "2011-03-11" "2012-07-11" "2011-03-03" "2011-03-03" "2011-03-11"
## [28521] "2011-03-03" "2011-03-03" "2014-01-06" "2012-07-11" "2011-03-11"
## [28526] "2014-01-06" "2014-01-06" "2011-03-11" "2011-03-11" "2014-01-06"
## [28531] "2014-01-06" "2013-02-05" "2013-02-05" "2014-02-11" "2012-01-05"
## [28536] "2014-02-11" "2014-02-11" "2012-01-05" "2014-02-11" "2014-02-11"
## [28541] "2011-08-27" "2011-08-27" "2011-08-27" "2012-10-25" "2012-10-25"
## [28546] "2012-10-25" "2012-10-25" "2012-10-25" "2012-10-25" "2013-11-04"
## [28551] "2014-01-23" "2012-05-11" "2013-11-04" "2014-01-23" "2012-05-11"
## [28556] "2013-11-04" "2011-12-31" "2011-12-31" "2012-05-11" "2012-05-11"
## [28561] "2012-05-11" "2014-01-23" "2012-05-11" "2011-12-31" "2011-08-04"
## [28566] "2011-06-11" "2011-07-26" "2013-09-25" "2013-09-25" "2013-09-25"
## [28571] "2013-06-06" "2011-08-04" "2013-06-06" "2013-09-25" "2013-09-25"
## [28576] "2013-07-15" "2011-06-11" "2014-02-08" "2011-06-11" "2011-08-04"
## [28581] "2013-06-06" "2011-07-26" "2013-07-15" "2011-07-26" "2011-06-11"
## [28586] "2011-06-11" "2014-02-08" "2013-11-26" "2011-12-19" "2014-01-23"
## [28591] "2012-05-07" "2013-11-26" "2012-05-07" "2014-01-14" "2012-05-07"
## [28596] "2012-11-16" "2014-01-23" "2013-11-26" "2014-01-23" "2014-01-14"
## [28601] "2011-12-19" "2012-05-07" "2013-11-26" "2013-11-26" "2012-11-16"
## [28606] "2012-11-16" "2012-11-16" "2011-12-19" "2012-11-16" "2012-11-16"
## [28611] "2014-01-14" "2012-05-07" "2012-05-07" "2011-07-18" "2014-02-15"
## [28616] "2011-10-14" "2013-06-08" "2013-11-23" "2011-07-18" "2014-02-15"
## [28621] "2011-07-18" "2011-07-18" "2014-02-15" "2013-06-08" "2011-07-18"
## [28626] "2011-10-14" "2011-07-18" "2014-02-15" "2011-10-14" "2011-10-14"
## [28631] "2014-02-15" "2013-11-23" "2011-10-14" "2014-02-15" "2013-07-24"
## [28636] "2013-06-09" "2011-06-02" "2013-07-24" "2013-07-24" "2011-06-02"
## [28641] "2013-07-24" "2011-06-02" "2011-06-02" "2013-06-09" "2011-06-02"
## [28646] "2013-07-24" "2013-07-24" "2013-06-09" "2013-06-09" "2013-06-09"
## [28651] "2011-10-04" "2011-10-04" "2011-03-14" "2011-03-09" "2011-03-09"
## [28656] "2011-03-09" "2013-06-19" "2011-03-09" "2011-03-14" "2011-03-09"
## [28661] "2011-03-14" "2011-03-14" "2013-06-19" "2013-06-19" "2013-06-19"
## [28666] "2011-03-14" "2011-03-14" "2013-06-19" "2011-03-09" "2013-07-23"
## [28671] "2012-04-20" "2013-07-23" "2013-07-23" "2012-04-20" "2013-12-22"
## [28676] "2013-12-22" "2013-12-22" "2013-12-22" "2013-12-22" "2013-12-22"
## [28681] "2013-06-14" "2013-06-14" "2013-06-14" "2013-06-14" "2013-06-14"
## [28686] "2013-06-14" "2012-12-19" "2012-05-23" "2012-05-23" "2012-12-11"
## [28691] "2012-05-23" "2012-12-11" "2012-05-23" "2012-12-19" "2012-05-23"
## [28696] "2012-04-19" "2012-04-19" "2013-03-01" "2013-03-01" "2013-02-03"
## [28701] "2013-03-01" "2013-01-12" "2013-01-12" "2013-02-03" "2013-03-01"
## [28706] "2013-03-01" "2013-01-12" "2013-03-12" "2013-03-12" "2013-03-12"
## [28711] "2013-03-12" "2013-03-12" "2013-03-12" "2012-08-22" "2012-08-22"
## [28716] "2013-11-23" "2013-11-23" "2013-11-23" "2013-11-23" "2013-11-23"
## [28721] "2011-11-17" "2011-11-17" "2013-07-14" "2013-07-14" "2011-11-17"
## [28726] "2012-02-18" "2012-02-18" "2011-04-28" "2011-04-24" "2012-02-18"
## [28731] "2011-04-24" "2012-02-18" "2011-04-28" "2011-04-24" "2012-02-18"
## [28736] "2011-06-03" "2011-06-03" "2011-06-03" "2011-02-06" "2011-02-06"
## [28741] "2011-02-06" "2011-03-24" "2013-01-10" "2011-03-24" "2011-02-06"
## [28746] "2012-09-07" "2012-09-07" "2013-01-17" "2013-01-10" "2012-07-13"
## [28751] "2012-09-07" "2012-07-13" "2013-01-10" "2013-01-17" "2012-09-07"
## [28756] "2012-09-07" "2011-02-06" "2012-07-13" "2012-07-13" "2012-07-13"
## [28761] "2012-09-07" "2011-03-11" "2011-03-11" "2011-03-11" "2011-03-11"
## [28766] "2013-12-17" "2013-12-13" "2012-05-25" "2011-03-11" "2013-12-13"
## [28771] "2013-12-17" "2012-05-25" "2011-09-13" "2011-09-13" "2011-09-13"
## [28776] "2012-01-15" "2011-09-13" "2012-01-15" "2012-01-15" "2011-09-13"
## [28781] "2012-01-15" "2012-01-15" "2011-08-21" "2011-08-21" "2011-12-12"
## [28786] "2011-08-21" "2011-12-12" "2012-01-30" "2011-10-23" "2011-10-23"
## [28791] "2011-08-21" "2011-08-21" "2011-10-23" "2012-01-30" "2012-01-30"
## [28796] "2012-01-30" "2012-01-30" "2013-06-23" "2013-06-23" "2012-08-03"
## [28801] "2013-11-11" "2013-11-11" "2013-11-07" "2013-09-22" "2013-09-22"
## [28806] "2011-07-31" "2011-07-31" "2012-08-09" "2013-09-22" "2013-11-07"
## [28811] "2012-08-03" "2013-03-04" "2013-04-27" "2012-04-10" "2013-04-27"
## [28816] "2013-11-11" "2013-11-11" "2012-04-10" "2012-08-09" "2013-04-27"
## [28821] "2012-04-10" "2013-09-22" "2012-08-03" "2013-11-07" "2013-09-22"
## [28826] "2011-07-31" "2013-03-04" "2012-08-03" "2013-11-07" "2012-08-09"
## [28831] "2012-04-10" "2012-08-09" "2012-08-09" "2013-11-07" "2013-11-11"
## [28836] "2013-04-27" "2012-04-10" "2012-04-10" "2012-08-03" "2011-11-27"
## [28841] "2013-06-03" "2013-06-03" "2012-10-10" "2012-10-12" "2012-10-10"
## [28846] "2012-10-12" "2011-11-27" "2012-10-10" "2012-10-12" "2012-10-10"
## [28851] "2011-11-27" "2013-06-03" "2013-06-03" "2013-06-03" "2012-10-12"
## [28856] "2011-06-05" "2011-06-05" "2013-01-10" "2011-06-05" "2013-01-10"
## [28861] "2011-06-05" "2011-12-10" "2011-06-05" "2013-01-10" "2011-12-10"
## [28866] "2013-04-19" "2012-06-06" "2013-04-19" "2011-09-20" "2012-06-06"
## [28871] "2011-09-20" "2012-06-06" "2011-09-20" "2012-03-13" "2012-03-13"
## [28876] "2012-03-13" "2011-09-14" "2012-03-07" "2011-09-14" "2013-03-24"
## [28881] "2013-03-24" "2011-12-31" "2011-09-14" "2011-09-14" "2011-09-14"
## [28886] "2012-03-07" "2011-09-14" "2012-03-07" "2012-03-07" "2013-03-24"
## [28891] "2012-03-07" "2011-12-31" "2011-12-31" "2011-12-31" "2011-07-20"
## [28896] "2011-01-27" "2011-07-20" "2011-02-05" "2011-01-27" "2011-07-20"
## [28901] "2011-07-20" "2011-07-20" "2011-02-05" "2011-10-03" "2011-10-03"
## [28906] "2011-10-03" "2011-06-19" "2011-06-14" "2011-06-19" "2011-06-14"
## [28911] "2013-07-10" "2011-12-23" "2013-07-10" "2013-07-10" "2011-12-23"
## [28916] "2011-08-15" "2011-08-15" "2011-11-11" "2011-11-11" "2011-11-11"
## [28921] "2011-04-17" "2011-04-17" "2011-04-17" "2012-05-06" "2012-05-06"
## [28926] "2011-08-30" "2013-08-06" "2013-10-29" "2013-08-10" "2013-08-10"
## [28931] "2013-08-10" "2013-08-06" "2013-08-06" "2013-08-10" "2013-08-10"
## [28936] "2013-10-29" "2012-05-06" "2011-08-30" "2013-08-06" "2013-08-06"
## [28941] "2013-10-29" "2013-08-06" "2013-08-10" "2013-04-29" "2013-05-08"
## [28946] "2012-09-07" "2013-05-08" "2012-09-07" "2013-04-29" "2013-05-08"
## [28951] "2013-04-29" "2012-05-17" "2014-01-03" "2014-01-03" "2014-01-03"
## [28956] "2012-05-17" "2012-05-17" "2012-11-01" "2012-11-01" "2012-11-01"
## [28961] "2012-06-24" "2012-04-18" "2012-04-18" "2012-06-24" "2012-04-18"
## [28966] "2012-06-24" "2013-06-19" "2013-06-19" "2012-06-24" "2013-12-13"
## [28971] "2013-12-13" "2012-06-24" "2013-12-13" "2011-05-02" "2011-09-19"
## [28976] "2011-05-02" "2011-09-19" "2011-09-19" "2011-05-02" "2011-05-02"
## [28981] "2013-09-02" "2011-05-02" "2013-09-02" "2011-05-02" "2012-10-09"
## [28986] "2012-10-09" "2012-11-13" "2012-11-13" "2012-11-13" "2011-08-30"
## [28991] "2013-02-02" "2011-08-30" "2012-11-13" "2012-11-13" "2013-02-02"
## [28996] "2012-08-23" "2012-08-21" "2012-08-23" "2012-08-21" "2012-08-23"
## [29001] "2013-11-07" "2012-08-23" "2013-11-07" "2012-08-21" "2012-08-23"
## [29006] "2012-08-21" "2013-11-07" "2012-08-21" "2012-04-29" "2012-10-21"
## [29011] "2012-10-21" "2012-10-21" "2012-04-29" "2012-05-12" "2011-09-16"
## [29016] "2011-09-16" "2012-04-29" "2012-04-29" "2011-09-16" "2011-09-16"
## [29021] "2012-10-21" "2012-05-12" "2011-09-16" "2012-05-12" "2012-04-29"
## [29026] "2013-09-15" "2013-11-08" "2012-08-18" "2012-01-23" "2013-11-08"
## [29031] "2012-10-04" "2012-08-18" "2012-08-18" "2014-01-08" "2012-10-04"
## [29036] "2012-10-04" "2012-08-18" "2014-01-08" "2013-09-15" "2013-09-15"
## [29041] "2013-11-08" "2013-09-15" "2012-01-23" "2012-08-18" "2013-09-15"
## [29046] "2014-01-08" "2011-06-01" "2013-06-06" "2011-06-01" "2013-06-06"
## [29051] "2013-06-06" "2011-06-01" "2013-10-09" "2013-10-09" "2013-07-02"
## [29056] "2013-07-02" "2013-07-02" "2013-07-02" "2013-07-02" "2013-11-07"
## [29061] "2013-11-07" "2013-11-07" "2011-03-29" "2011-03-29" "2013-08-18"
## [29066] "2013-08-18" "2013-04-13" "2013-08-18" "2013-08-18" "2013-04-13"
## [29071] "2013-04-13" "2013-08-18" "2011-09-25" "2011-09-25" "2011-09-25"
## [29076] "2011-05-10" "2012-09-22" "2011-05-10" "2012-09-22" "2012-09-22"
## [29081] "2013-07-09" "2011-05-10" "2012-09-21" "2012-09-21" "2013-07-09"
## [29086] "2012-09-22" "2013-07-09" "2012-09-21" "2012-09-21" "2012-09-21"
## [29091] "2012-09-22" "2012-09-21" "2012-09-22" "2013-03-30" "2013-03-30"
## [29096] "2013-06-29" "2013-06-28" "2013-06-29" "2013-03-23" "2013-07-03"
## [29101] "2013-06-28" "2013-07-03" "2013-06-28" "2013-03-23" "2013-03-23"
## [29106] "2013-03-30" "2013-06-29" "2013-07-03" "2014-01-10" "2012-05-31"
## [29111] "2012-05-31" "2014-01-10" "2014-01-10" "2014-01-10" "2012-05-31"
## [29116] "2012-05-31" "2012-05-31" "2012-04-02" "2012-10-09" "2012-04-02"
## [29121] "2012-09-05" "2012-10-09" "2012-10-09" "2012-09-05" "2012-09-05"
## [29126] "2012-09-05" "2012-09-05" "2013-08-15" "2012-12-19" "2011-03-27"
## [29131] "2012-12-19" "2012-12-19" "2012-12-19" "2013-08-15" "2013-08-15"
## [29136] "2011-03-27" "2013-08-15" "2013-08-15" "2012-12-19" "2013-09-25"
## [29141] "2012-01-03" "2013-09-25" "2013-09-25" "2012-01-03" "2012-01-03"
## [29146] "2013-12-16" "2013-12-16" "2013-04-04" "2013-04-04" "2013-04-04"
## [29151] "2013-04-05" "2013-04-05" "2013-04-05" "2013-04-04" "2013-04-05"
## [29156] "2011-10-09" "2011-10-09" "2013-10-19" "2011-10-09" "2012-11-03"
## [29161] "2012-11-03" "2013-10-19" "2012-11-03" "2013-10-19" "2012-11-03"
## [29166] "2011-10-09" "2012-11-03" "2012-11-03" "2011-10-09" "2013-08-03"
## [29171] "2013-08-03" "2012-10-08" "2013-12-30" "2013-12-27" "2013-12-27"
## [29176] "2012-10-08" "2013-12-30" "2012-10-08" "2012-03-17" "2012-03-17"
## [29181] "2012-03-17" "2013-10-27" "2012-06-05" "2012-06-05" "2013-10-27"
## [29186] "2012-06-05" "2012-06-05" "2012-06-05" "2012-11-25" "2012-11-25"
## [29191] "2012-12-03" "2012-12-03" "2012-12-03" "2012-12-03" "2012-12-03"
## [29196] "2012-12-03" "2013-05-11" "2013-05-11" "2011-04-17" "2013-05-27"
## [29201] "2011-04-17" "2012-06-16" "2012-06-16" "2012-06-16" "2012-06-16"
## [29206] "2013-05-27" "2012-06-16" "2013-05-27" "2011-04-17" "2011-08-05"
## [29211] "2011-08-05" "2011-08-05" "2011-07-12" "2011-08-05" "2011-07-12"
## [29216] "2013-05-11" "2011-07-12" "2011-07-12" "2011-08-05" "2013-05-11"
## [29221] "2011-08-05" "2013-05-11" "2013-05-11" "2011-07-12" "2011-07-12"
## [29226] "2011-02-16" "2011-02-16" "2014-01-10" "2011-02-16" "2011-02-16"
## [29231] "2014-01-10" "2011-02-16" "2012-04-19" "2014-01-10" "2012-04-19"
## [29236] "2011-11-09" "2011-11-09" "2013-09-13" "2013-09-13" "2013-09-13"
## [29241] "2011-08-04" "2011-08-04" "2011-08-04" "2011-08-04" "2011-08-04"
## [29246] "2011-06-12" "2011-06-12" "2011-06-12" "2011-06-12" "2011-06-12"
## [29251] "2013-08-08" "2013-08-08" "2013-08-08" "2013-01-20" "2013-01-20"
## [29256] "2013-01-20" "2013-01-20" "2013-01-20" "2013-10-08" "2013-01-20"
## [29261] "2013-10-08" "2012-09-07" "2012-11-06" "2012-09-07" "2012-11-06"
## [29266] "2012-02-18" "2012-02-23" "2013-10-19" "2013-10-19" "2012-02-18"
## [29271] "2012-02-18" "2012-02-18" "2013-10-19" "2012-02-23" "2012-02-18"
## [29276] "2012-02-23" "2011-09-09" "2014-01-12" "2011-09-09" "2011-09-09"
## [29281] "2014-01-12" "2011-09-09" "2011-09-09" "2012-01-05" "2012-01-05"
## [29286] "2013-07-25" "2013-07-25" "2013-07-25" "2013-07-25" "2013-07-25"
## [29291] "2011-01-25" "2013-07-23" "2013-07-23" "2013-07-23" "2011-04-29"
## [29296] "2012-10-09" "2013-12-11" "2011-09-27" "2011-09-27" "2011-01-25"
## [29301] "2011-09-27" "2012-04-25" "2012-04-24" "2013-07-23" "2012-04-24"
## [29306] "2012-04-24" "2012-04-25" "2013-12-11" "2012-04-25" "2011-09-27"
## [29311] "2012-04-24" "2012-04-25" "2011-04-29" "2011-01-25" "2012-04-25"
## [29316] "2012-04-24" "2011-04-29" "2013-07-23" "2012-10-09" "2012-04-25"
## [29321] "2012-10-09" "2011-09-27" "2012-04-24" "2011-06-15" "2011-06-15"
## [29326] "2011-06-15" "2011-10-17" "2011-10-17" "2011-10-17" "2011-10-17"
## [29331] "2011-10-17" "2013-01-13" "2013-01-13" "2011-02-23" "2013-01-13"
## [29336] "2012-10-04" "2011-02-23" "2012-10-04" "2011-09-24" "2011-08-22"
## [29341] "2011-09-24" "2011-09-16" "2011-08-22" "2011-08-22" "2011-09-24"
## [29346] "2011-09-16" "2011-09-16" "2011-08-22" "2011-08-22" "2012-06-20"
## [29351] "2012-03-22" "2012-11-10" "2012-11-10" "2012-06-20" "2012-11-10"
## [29356] "2012-11-10" "2012-11-10" "2012-06-20" "2012-06-20" "2012-03-22"
## [29361] "2012-06-20" "2013-01-23" "2013-07-13" "2012-09-18" "2012-09-18"
## [29366] "2013-07-13" "2013-07-13" "2012-09-18" "2013-01-23" "2013-01-23"
## [29371] "2013-01-23" "2013-01-23" "2012-09-18" "2013-01-23" "2012-09-18"
## [29376] "2013-07-20" "2013-09-24" "2013-07-20" "2013-09-24" "2013-09-24"
## [29381] "2013-07-20" "2013-09-24" "2011-09-08" "2011-09-08" "2011-09-08"
## [29386] "2011-09-08" "2011-09-08" "2012-11-27" "2012-11-27" "2012-11-27"
## [29391] "2012-11-27" "2012-11-27" "2011-10-28" "2011-10-28" "2011-10-28"
## [29396] "2011-10-28" "2012-04-25" "2012-04-25" "2011-09-20" "2011-09-16"
## [29401] "2011-09-20" "2013-11-03" "2011-09-20" "2011-09-20" "2013-11-03"
## [29406] "2011-09-16" "2011-09-16" "2011-09-16" "2011-05-04" "2012-02-02"
## [29411] "2012-01-15" "2012-01-15" "2011-05-04" "2012-01-15" "2012-02-02"
## [29416] "2011-05-04" "2011-05-04" "2012-01-15" "2012-01-15" "2011-08-12"
## [29421] "2011-08-12" "2013-06-17" "2013-06-17" "2013-06-17" "2013-06-17"
## [29426] "2011-08-12" "2013-11-12" "2013-11-12" "2013-06-17" "2014-01-22"
## [29431] "2014-01-22" "2012-09-11" "2014-01-27" "2014-01-27" "2012-09-11"
## [29436] "2014-01-27" "2011-02-11" "2014-01-27" "2011-02-11" "2012-09-11"
## [29441] "2011-02-11" "2011-02-11" "2011-02-11" "2014-01-27" "2013-08-29"
## [29446] "2012-09-11" "2012-09-11" "2013-08-29" "2013-12-01" "2013-12-01"
## [29451] "2013-12-19" "2013-12-01" "2013-12-19" "2013-11-17" "2013-11-17"
## [29456] "2013-11-17" "2011-02-04" "2013-11-17" "2011-02-04" "2011-02-04"
## [29461] "2011-02-04" "2011-02-04" "2013-11-17" "2013-12-01" "2013-12-01"
## [29466] "2013-12-19" "2013-06-05" "2011-05-30" "2013-06-05" "2011-05-30"
## [29471] "2013-06-05" "2011-05-28" "2013-06-05" "2011-05-28" "2013-07-27"
## [29476] "2013-07-27" "2013-06-05" "2011-05-30" "2013-07-27" "2011-05-28"
## [29481] "2012-03-26" "2013-02-05" "2012-03-26" "2012-03-26" "2013-02-05"
## [29486] "2013-03-19" "2013-03-19" "2012-07-20" "2013-03-19" "2011-11-26"
## [29491] "2012-07-20" "2011-11-26" "2013-03-19" "2011-11-26" "2013-03-19"
## [29496] "2011-11-26" "2013-03-19" "2012-08-28" "2011-11-09" "2012-08-28"
## [29501] "2011-11-09" "2012-08-28" "2011-04-14" "2011-04-14" "2012-11-14"
## [29506] "2012-11-14" "2013-02-14" "2012-11-14" "2013-02-14" "2014-01-17"
## [29511] "2014-01-17" "2014-01-17" "2011-10-04" "2011-10-04" "2013-11-28"
## [29516] "2013-11-28" "2013-05-19" "2013-05-19" "2013-04-18" "2013-05-19"
## [29521] "2013-11-28" "2013-04-18" "2013-05-19" "2011-10-04" "2013-05-19"
## [29526] "2013-05-19" "2013-12-11" "2013-12-11" "2011-10-29" "2011-10-29"
## [29531] "2013-04-30" "2013-04-30" "2013-04-30" "2011-10-29" "2011-10-29"
## [29536] "2011-05-20" "2011-05-20" "2011-05-20" "2012-01-16" "2012-01-16"
## [29541] "2012-01-16" "2013-12-24" "2013-12-24" "2013-12-24" "2012-01-16"
## [29546] "2012-01-16" "2013-10-08" "2013-10-08" "2014-01-23" "2012-05-05"
## [29551] "2012-01-15" "2013-10-08" "2012-09-22" "2012-05-05" "2012-09-22"
## [29556] "2012-01-15" "2012-09-22" "2012-05-05" "2012-05-05" "2014-01-23"
## [29561] "2012-01-15" "2014-01-23" "2013-03-01" "2013-03-01" "2013-10-19"
## [29566] "2013-03-01" "2013-10-19" "2013-03-01" "2013-10-19" "2013-10-19"
## [29571] "2011-09-23" "2011-09-23" "2011-06-24" "2013-07-11" "2012-03-13"
## [29576] "2011-03-05" "2011-03-05" "2011-06-24" "2013-07-11" "2013-07-11"
## [29581] "2012-03-13" "2013-12-28" "2011-06-24" "2013-12-28" "2011-03-05"
## [29586] "2013-07-11" "2013-07-11" "2013-10-15" "2013-10-15" "2013-10-15"
## [29591] "2012-02-29" "2013-03-21" "2012-02-29" "2012-05-01" "2013-10-05"
## [29596] "2011-11-14" "2013-10-05" "2012-02-29" "2013-03-29" "2012-04-24"
## [29601] "2013-10-15" "2012-05-01" "2012-04-24" "2012-05-01" "2011-11-14"
## [29606] "2013-03-29" "2013-03-21" "2012-04-24" "2011-11-14" "2013-11-07"
## [29611] "2013-04-15" "2013-11-07" "2013-04-15" "2013-11-07" "2011-03-06"
## [29616] "2011-03-06" "2013-11-01" "2011-10-03" "2013-11-01" "2011-11-20"
## [29621] "2013-11-01" "2011-10-03" "2011-03-06" "2011-03-06" "2011-03-06"
## [29626] "2012-09-07" "2011-10-03" "2011-10-03" "2012-09-07" "2012-09-07"
## [29631] "2012-09-07" "2011-11-20" "2013-11-01" "2011-11-20" "2013-11-01"
## [29636] "2012-09-07" "2013-02-13" "2013-02-13" "2013-02-13" "2013-02-13"
## [29641] "2013-02-13" "2012-03-31" "2012-03-31" "2012-03-31" "2013-10-04"
## [29646] "2013-10-04" "2012-03-31" "2012-03-31" "2013-10-04" "2013-10-01"
## [29651] "2013-10-01" "2013-10-01" "2011-09-15" "2013-10-01" "2012-09-22"
## [29656] "2013-10-01" "2012-09-22" "2011-09-15" "2013-10-01" "2011-09-15"
## [29661] "2011-09-15" "2012-09-22" "2011-09-15" "2011-09-15" "2011-03-22"
## [29666] "2011-03-22" "2011-03-22" "2011-11-10" "2011-11-10" "2012-01-25"
## [29671] "2012-08-26" "2013-09-04" "2012-01-25" "2013-09-04" "2012-08-26"
## [29676] "2012-08-26" "2012-01-25" "2011-07-12" "2012-11-06" "2012-11-06"
## [29681] "2012-11-06" "2012-11-06" "2011-07-12" "2012-11-06" "2013-06-17"
## [29686] "2013-06-17" "2013-06-17" "2013-04-29" "2013-07-07" "2013-09-03"
## [29691] "2013-09-03" "2013-07-07" "2011-10-17" "2011-10-17" "2013-04-29"
## [29696] "2013-09-03" "2011-10-17" "2013-11-04" "2013-07-07" "2013-11-04"
## [29701] "2013-04-29" "2011-10-17" "2013-11-04" "2011-10-17" "2013-07-07"
## [29706] "2013-04-29" "2012-03-25" "2012-04-09" "2012-04-04" "2012-04-04"
## [29711] "2012-03-25" "2012-04-09" "2012-04-04" "2012-04-04" "2012-04-09"
## [29716] "2012-04-09" "2012-04-09" "2012-04-04" "2013-08-21" "2011-08-26"
## [29721] "2012-02-24" "2012-02-24" "2012-02-24" "2013-08-21" "2012-02-24"
## [29726] "2011-08-26" "2011-08-26" "2011-06-07" "2011-08-26" "2011-08-26"
## [29731] "2012-02-24" "2011-06-07" "2012-02-24" "2013-09-29" "2011-01-29"
## [29736] "2011-02-16" "2011-02-24" "2011-02-22" "2011-02-16" "2011-02-24"
## [29741] "2011-01-29" "2011-01-29" "2011-02-22" "2013-09-29" "2011-02-22"
## [29746] "2011-02-16" "2011-02-24" "2012-11-25" "2012-03-19" "2012-03-19"
## [29751] "2011-10-14" "2013-09-25" "2012-03-19" "2012-11-25" "2013-09-25"
## [29756] "2013-09-25" "2013-02-02" "2013-09-25" "2011-10-14" "2012-03-19"
## [29761] "2013-02-02" "2012-11-25" "2013-02-02" "2013-02-02" "2012-11-25"
## [29766] "2012-11-25" "2013-02-10" "2013-02-10" "2013-02-10" "2011-07-13"
## [29771] "2011-07-13" "2011-07-13" "2011-08-15" "2011-08-15" "2011-08-15"
## [29776] "2012-01-28" "2013-09-19" "2012-01-28" "2012-04-17" "2013-09-19"
## [29781] "2012-04-17" "2012-01-28" "2012-07-02" "2013-01-14" "2013-01-14"
## [29786] "2013-01-14" "2012-07-02" "2012-07-02" "2013-01-14" "2013-01-14"
## [29791] "2012-07-02" "2012-07-02" "2013-12-17" "2012-08-19" "2013-12-17"
## [29796] "2012-08-19" "2013-12-17" "2012-08-19" "2013-12-17" "2012-02-21"
## [29801] "2012-08-19" "2012-02-21" "2013-12-17" "2012-08-19" "2012-02-21"
## [29806] "2012-08-06" "2012-02-21" "2012-02-21" "2012-08-06" "2012-08-06"
## [29811] "2013-12-28" "2013-07-13" "2013-07-13" "2014-01-03" "2012-12-16"
## [29816] "2013-12-28" "2013-12-28" "2014-01-03" "2014-01-03" "2013-12-28"
## [29821] "2014-01-03" "2013-07-13" "2013-07-13" "2011-07-16" "2013-12-28"
## [29826] "2014-01-03" "2012-12-16" "2013-07-13" "2011-07-16" "2012-12-16"
## [29831] "2011-07-16" "2011-07-16" "2011-07-16" "2013-04-09" "2011-04-13"
## [29836] "2011-04-13" "2013-04-09" "2013-04-09" "2013-04-09" "2011-04-13"
## [29841] "2013-07-21" "2013-07-21" "2011-03-08" "2011-03-08" "2011-03-08"
## [29846] "2011-03-08" "2013-07-21" "2011-03-08" "2012-12-18" "2012-11-23"
## [29851] "2012-11-23" "2012-12-18" "2012-12-18" "2012-11-23" "2013-02-11"
## [29856] "2013-03-18" "2013-02-11" "2011-07-24" "2013-03-18" "2013-03-18"
## [29861] "2011-07-24" "2011-07-24" "2013-02-11" "2013-03-18" "2011-07-24"
## [29866] "2013-03-18" "2011-07-24" "2011-05-02" "2011-05-02" "2013-02-09"
## [29871] "2011-05-02" "2013-02-09" "2013-02-09" "2013-12-18" "2012-07-26"
## [29876] "2013-07-01" "2013-12-18" "2013-07-01" "2012-07-26" "2012-02-02"
## [29881] "2013-07-01" "2013-07-01" "2012-02-02" "2013-12-18" "2012-02-02"
## [29886] "2013-12-18" "2013-12-18" "2012-07-17" "2012-07-14" "2012-07-14"
## [29891] "2012-07-17" "2011-04-20" "2011-04-20" "2011-04-20" "2012-12-02"
## [29896] "2012-12-02" "2012-12-02" "2012-12-02" "2012-12-02" "2013-08-25"
## [29901] "2013-07-31" "2013-07-31" "2013-08-25" "2013-08-25" "2013-08-25"
## [29906] "2013-07-31" "2013-08-25" "2013-08-08" "2011-02-11" "2011-02-11"
## [29911] "2014-01-15" "2011-02-11" "2013-08-08" "2014-01-13" "2013-08-08"
## [29916] "2014-01-15" "2013-08-08" "2014-01-13" "2013-08-08" "2013-10-25"
## [29921] "2013-10-25" "2013-10-25" "2013-10-25" "2013-10-25" "2013-10-25"
## [29926] "2012-11-21" "2012-11-21" "2012-11-21" "2012-11-21" "2012-11-21"
## [29931] "2011-08-11" "2011-08-11" "2011-09-22" "2011-11-12" "2011-11-12"
## [29936] "2011-09-22" "2011-09-22" "2011-11-12" "2011-11-14" "2011-11-12"
## [29941] "2011-09-21" "2011-11-14" "2012-12-31" "2011-11-12" "2011-11-14"
## [29946] "2011-11-14" "2011-11-14" "2011-09-21" "2012-12-31" "2011-09-21"
## [29951] "2012-01-22" "2011-06-02" "2012-10-04" "2011-06-02" "2012-10-04"
## [29956] "2012-01-13" "2012-01-22" "2012-10-04" "2011-06-02" "2012-01-13"
## [29961] "2012-01-22" "2012-01-22" "2011-06-02" "2011-06-02" "2012-01-13"
## [29966] "2012-01-22" "2012-01-13" "2012-01-13" "2013-12-18" "2013-12-18"
## [29971] "2011-11-16" "2013-01-25" "2011-11-16" "2013-01-25" "2013-01-25"
## [29976] "2011-12-30" "2011-11-16" "2013-01-25" "2013-01-25" "2011-12-30"
## [29981] "2011-03-06" "2011-11-16" "2011-03-06" "2011-12-30" "2011-11-16"
## [29986] "2011-11-16" "2011-12-30" "2011-12-30" "2013-09-12" "2013-09-12"
## [29991] "2013-12-03" "2014-01-11" "2014-01-11" "2014-01-11" "2013-09-12"
## [29996] "2014-01-11" "2013-12-03" "2013-09-12" "2013-09-12" "2014-01-11"
## [30001] "2013-12-01" "2013-06-25" "2013-12-01" "2013-06-25" "2013-12-01"
## [30006] "2013-08-10" "2012-02-08" "2011-09-04" "2012-02-08" "2012-04-09"
## [30011] "2011-09-10" "2012-04-09" "2012-02-08" "2011-09-04" "2013-08-10"
## [30016] "2013-08-10" "2011-09-10" "2011-04-25" "2011-04-25" "2011-04-25"
## [30021] "2013-04-09" "2014-01-21" "2013-04-09" "2013-04-09" "2013-04-09"
## [30026] "2013-04-09" "2014-01-21" "2011-03-16" "2013-02-14" "2013-10-07"
## [30031] "2011-03-16" "2013-03-16" "2012-07-18" "2013-02-14" "2013-08-18"
## [30036] "2012-07-18" "2013-03-16" "2013-03-16" "2011-03-16" "2013-03-16"
## [30041] "2011-03-16" "2012-07-18" "2011-03-16" "2013-10-07" "2012-07-18"
## [30046] "2013-08-18" "2013-10-07" "2013-03-16" "2013-08-18" "2013-10-07"
## [30051] "2013-10-07" "2013-01-26" "2013-01-26" "2011-04-25" "2011-04-25"
## [30056] "2011-07-20" "2011-07-20" "2011-12-18" "2011-12-18" "2011-07-19"
## [30061] "2011-02-04" "2011-07-06" "2011-07-19" "2013-09-30" "2013-09-30"
## [30066] "2011-02-04" "2011-02-04" "2011-07-06" "2011-07-19" "2011-10-30"
## [30071] "2013-02-05" "2013-02-05" "2013-02-05" "2013-02-05" "2011-10-30"
## [30076] "2013-02-05" "2013-02-05" "2012-01-02" "2011-11-15" "2012-01-02"
## [30081] "2012-02-04" "2011-11-15" "2012-02-04" "2012-01-02" "2011-11-15"
## [30086] "2013-10-15" "2011-11-15" "2012-01-02" "2013-10-15" "2012-01-02"
## [30091] "2012-02-04" "2012-01-09" "2012-01-09" "2013-08-07" "2013-08-07"
## [30096] "2013-08-07" "2012-01-09" "2013-08-07" "2013-08-07" "2013-08-07"
## [30101] "2013-09-21" "2012-01-30" "2012-01-30" "2013-09-21" "2012-11-21"
## [30106] "2012-08-24" "2012-08-24" "2013-07-15" "2012-08-24" "2012-08-24"
## [30111] "2012-08-24" "2013-07-15" "2012-11-21" "2012-11-21" "2012-03-21"
## [30116] "2012-06-25" "2012-03-21" "2012-03-21" "2012-06-25" "2012-03-21"
## [30121] "2012-06-25" "2012-03-21" "2012-05-28" "2012-05-28" "2012-05-28"
## [30126] "2013-02-05" "2012-05-28" "2011-07-25" "2012-05-28" "2011-01-30"
## [30131] "2012-03-01" "2012-07-25" "2011-01-30" "2011-07-25" "2011-01-30"
## [30136] "2012-07-25" "2012-05-28" "2012-03-01" "2011-07-25" "2012-03-01"
## [30141] "2011-01-30" "2013-02-05" "2011-07-25" "2011-07-25" "2011-01-30"
## [30146] "2012-12-12" "2012-12-12" "2012-12-12" "2012-03-04" "2012-07-02"
## [30151] "2012-03-04" "2012-03-04" "2013-08-31" "2012-03-04" "2013-08-31"
## [30156] "2012-03-04" "2013-08-31" "2012-07-05" "2013-08-31" "2013-08-31"
## [30161] "2012-07-05" "2012-07-02" "2013-08-31" "2013-09-19" "2013-09-19"
## [30166] "2013-09-19" "2011-11-11" "2011-11-11" "2013-01-27" "2013-01-27"
## [30171] "2013-01-27" "2012-12-02" "2013-12-10" "2012-12-10" "2013-12-10"
## [30176] "2013-12-10" "2012-12-02" "2012-12-13" "2012-12-10" "2012-12-09"
## [30181] "2012-12-09" "2012-12-13" "2013-12-27" "2013-12-27" "2013-12-27"
## [30186] "2011-05-28" "2011-05-28" "2011-05-28" "2013-11-21" "2011-10-24"
## [30191] "2011-06-15" "2011-10-24" "2013-11-21" "2011-10-24" "2011-06-15"
## [30196] "2011-10-18" "2011-10-18" "2011-06-15" "2011-10-18" "2013-11-21"
## [30201] "2013-10-21" "2013-02-21" "2013-10-21" "2012-04-23" "2013-10-21"
## [30206] "2012-04-23" "2013-10-21" "2013-02-21" "2013-02-21" "2013-10-21"
## [30211] "2013-10-20" "2013-02-25" "2013-02-25" "2012-03-17" "2012-05-02"
## [30216] "2013-10-20" "2013-02-25" "2013-10-20" "2012-03-17" "2012-05-02"
## [30221] "2012-03-17" "2013-02-25" "2012-05-02" "2013-02-25" "2012-05-02"
## [30226] "2013-10-20" "2012-03-17" "2012-11-22" "2012-11-22" "2012-11-22"
## [30231] "2012-11-22" "2012-11-22" "2013-04-24" "2013-04-24" "2011-11-04"
## [30236] "2011-11-04" "2013-04-24" "2013-04-24" "2011-11-04" "2012-12-01"
## [30241] "2013-07-19" "2012-12-01" "2012-12-01" "2012-12-01" "2013-07-19"
## [30246] "2013-07-19" "2012-02-20" "2011-05-05" "2012-02-20" "2011-05-05"
## [30251] "2012-02-20" "2012-02-20" "2011-05-05" "2011-05-05" "2012-02-20"
## [30256] "2011-05-05" "2012-03-01" "2014-01-17" "2013-03-19" "2014-01-17"
## [30261] "2012-11-24" "2012-11-24" "2012-11-24" "2012-11-24" "2014-01-17"
## [30266] "2013-03-19" "2014-01-17" "2012-03-01" "2011-04-29" "2011-09-18"
## [30271] "2011-09-18" "2011-04-29" "2011-09-18" "2011-04-29" "2011-09-18"
## [30276] "2011-04-29" "2011-04-29" "2011-09-18" "2011-06-10" "2014-01-31"
## [30281] "2011-06-10" "2014-01-31" "2014-01-05" "2014-01-05" "2012-05-15"
## [30286] "2012-05-15" "2012-05-15" "2014-01-05" "2014-01-05" "2012-01-16"
## [30291] "2012-01-16" "2012-01-16" "2013-11-18" "2012-10-14" "2012-10-14"
## [30296] "2013-08-06" "2013-11-18" "2013-11-18" "2013-08-06" "2012-01-26"
## [30301] "2012-01-26" "2012-01-26" "2012-01-26" "2012-04-22" "2012-04-22"
## [30306] "2012-04-22" "2012-08-31" "2012-08-31" "2012-08-31" "2013-10-13"
## [30311] "2012-05-24" "2013-10-13" "2013-05-04" "2013-10-13" "2012-05-20"
## [30316] "2012-05-24" "2012-05-20" "2012-07-21" "2012-10-17" "2012-10-17"
## [30321] "2013-05-04" "2012-07-21" "2012-07-21" "2012-11-13" "2013-06-01"
## [30326] "2012-11-13" "2012-11-13" "2012-10-23" "2013-06-01" "2013-06-01"
## [30331] "2012-10-23" "2012-10-23" "2011-07-06" "2011-09-09" "2011-03-06"
## [30336] "2011-06-26" "2011-07-06" "2011-03-06" "2013-02-05" "2011-03-06"
## [30341] "2012-07-17" "2012-07-17" "2011-03-10" "2011-03-10" "2011-09-09"
## [30346] "2011-06-26" "2011-09-09" "2011-06-26" "2011-09-09" "2011-03-10"
## [30351] "2011-07-06" "2012-07-17" "2011-09-09" "2012-07-17" "2011-09-09"
## [30356] "2013-02-05" "2013-09-18" "2013-09-18" "2013-09-18" "2011-05-17"
## [30361] "2013-09-11" "2011-08-21" "2011-08-14" "2011-05-17" "2011-08-21"
## [30366] "2011-05-17" "2011-05-17" "2011-05-17" "2013-09-11" "2011-08-14"
## [30371] "2012-04-11" "2012-04-11" "2013-05-05" "2012-05-10" "2012-04-11"
## [30376] "2013-05-05" "2012-05-10" "2012-05-08" "2013-05-05" "2012-05-10"
## [30381] "2012-05-08" "2012-05-08" "2012-05-10" "2012-05-10" "2013-02-20"
## [30386] "2014-01-25" "2013-02-20" "2013-02-20" "2013-02-20" "2011-09-01"
## [30391] "2012-04-22" "2014-01-25" "2012-04-22" "2011-09-01" "2013-02-20"
## [30396] "2012-04-22" "2014-01-25" "2011-09-01" "2012-04-22" "2011-09-01"
## [30401] "2011-09-01" "2011-09-01" "2011-04-22" "2011-04-22" "2011-04-22"
## [30406] "2012-06-19" "2014-02-18" "2014-02-18" "2012-06-19" "2011-04-18"
## [30411] "2011-04-18" "2011-04-18" "2012-08-01" "2012-08-01" "2012-02-09"
## [30416] "2012-02-09" "2011-07-24" "2012-08-01" "2012-08-01" "2011-07-24"
## [30421] "2012-08-01" "2011-07-24" "2013-10-15" "2011-03-04" "2013-10-15"
## [30426] "2013-10-15" "2013-10-15" "2013-10-15" "2013-01-04" "2013-10-15"
## [30431] "2013-01-04" "2011-03-04" "2012-07-25" "2012-07-25" "2012-07-25"
## [30436] "2011-06-13" "2011-06-13" "2011-06-13" "2013-05-24" "2013-05-24"
## [30441] "2011-06-13" "2013-05-24" "2013-05-24" "2011-06-13" "2013-09-18"
## [30446] "2013-09-25" "2013-09-25" "2013-09-25" "2013-06-13" "2013-06-13"
## [30451] "2013-09-25" "2013-02-28" "2013-06-13" "2013-09-18" "2013-09-18"
## [30456] "2013-09-18" "2013-02-24" "2013-02-24" "2013-02-28" "2013-06-13"
## [30461] "2013-06-13" "2013-09-18" "2013-09-25" "2011-07-16" "2011-07-16"
## [30466] "2011-07-12" "2011-07-16" "2013-07-28" "2011-07-12" "2013-07-28"
## [30471] "2013-07-28" "2013-07-28" "2013-07-28" "2011-07-12" "2013-09-03"
## [30476] "2013-07-21" "2013-09-03" "2013-07-21" "2011-03-23" "2011-03-23"
## [30481] "2013-07-21" "2013-09-03" "2013-07-21" "2011-07-06" "2011-07-06"
## [30486] "2012-09-22" "2011-07-17" "2011-07-17" "2013-06-18" "2013-06-18"
## [30491] "2013-06-18" "2011-07-17" "2011-07-17" "2013-06-18" "2013-06-18"
## [30496] "2012-09-22" "2011-07-17" "2012-08-22" "2013-07-25" "2012-08-22"
## [30501] "2011-05-20" "2011-04-28" "2012-08-22" "2011-04-28" "2012-08-22"
## [30506] "2011-05-20" "2012-08-22" "2011-05-20" "2013-07-25" "2011-05-22"
## [30511] "2011-05-22" "2011-05-22" "2012-12-01" "2012-12-01" "2012-12-01"
## [30516] "2012-12-01" "2012-12-01" "2011-04-28" "2011-04-28" "2011-08-03"
## [30521] "2011-07-19" "2011-08-03" "2011-05-31" "2011-03-11" "2011-06-30"
## [30526] "2011-05-31" "2011-07-19" "2011-07-19" "2014-01-23" "2011-05-31"
## [30531] "2011-07-19" "2011-09-30" "2011-09-30" "2011-07-19" "2011-06-30"
## [30536] "2011-06-30" "2011-09-30" "2011-07-19" "2011-09-30" "2011-09-30"
## [30541] "2011-03-11" "2014-01-23" "2014-01-23" "2011-03-11" "2012-10-05"
## [30546] "2012-10-05" "2012-10-05" "2011-12-23" "2011-10-02" "2011-10-02"
## [30551] "2011-10-02" "2011-10-02" "2011-10-02" "2011-10-02" "2011-12-23"
## [30556] "2011-12-31" "2011-12-31" "2011-12-23" "2011-12-31" "2011-12-23"
## [30561] "2011-12-23" "2011-09-28" "2011-03-21" "2011-03-21" "2011-09-28"
## [30566] "2011-03-21" "2011-09-28" "2013-05-12" "2013-05-12" "2013-11-21"
## [30571] "2011-05-10" "2011-05-10" "2012-10-03" "2013-11-21" "2011-09-10"
## [30576] "2011-05-10" "2013-11-21" "2011-09-10" "2012-10-03" "2013-11-21"
## [30581] "2011-05-10" "2012-10-03" "2013-11-21" "2012-10-03" "2011-05-10"
## [30586] "2014-02-09" "2013-10-09" "2013-01-12" "2014-01-31" "2013-01-12"
## [30591] "2013-01-12" "2013-01-11" "2014-02-09" "2013-09-29" "2011-11-24"
## [30596] "2011-03-09" "2011-11-24" "2011-11-24" "2013-09-29" "2013-10-09"
## [30601] "2011-03-09" "2011-11-24" "2014-02-09" "2013-10-09" "2013-09-29"
## [30606] "2013-09-29" "2013-01-11" "2013-09-29" "2011-11-24" "2013-10-09"
## [30611] "2011-03-09" "2011-11-24" "2014-01-31" "2014-01-31" "2013-10-09"
## [30616] "2013-01-11" "2012-05-16" "2012-05-16" "2012-05-16" "2012-05-21"
## [30621] "2012-05-21" "2012-05-16" "2012-05-16" "2012-01-22" "2012-01-22"
## [30626] "2013-03-19" "2013-03-19" "2013-03-14" "2013-03-19" "2013-09-26"
## [30631] "2013-09-26" "2013-04-24" "2013-04-24" "2013-03-14" "2011-06-06"
## [30636] "2011-08-03" "2013-04-24" "2011-08-03" "2013-04-24" "2011-05-14"
## [30641] "2011-05-14" "2011-08-03" "2013-06-25" "2011-10-18" "2011-05-14"
## [30646] "2011-06-06" "2013-04-24" "2011-06-06" "2011-10-18" "2011-10-18"
## [30651] "2011-05-14" "2011-05-14" "2013-06-25" "2013-06-25" "2013-01-26"
## [30656] "2013-01-26" "2011-09-26" "2013-01-26" "2011-09-26" "2011-09-26"
## [30661] "2013-01-26" "2013-01-26" "2012-07-03" "2011-09-19" "2012-07-03"
## [30666] "2011-09-19" "2011-09-19" "2011-09-19" "2012-07-03" "2012-07-03"
## [30671] "2011-09-19" "2012-07-03" "2013-01-23" "2012-02-24" "2013-01-23"
## [30676] "2012-02-24" "2013-01-23" "2012-02-24" "2013-01-23" "2012-02-24"
## [30681] "2012-04-28" "2011-08-28" "2011-08-28" "2012-04-28" "2012-04-28"
## [30686] "2011-08-28" "2012-04-28" "2012-12-19" "2012-03-12" "2011-12-18"
## [30691] "2012-12-19" "2011-11-16" "2012-12-19" "2012-03-12" "2011-12-18"
## [30696] "2012-12-19" "2011-11-16" "2012-12-19" "2011-11-16" "2011-11-16"
## [30701] "2012-12-19" "2012-03-12" "2011-12-18" "2011-12-18" "2011-11-16"
## [30706] "2011-09-20" "2013-07-26" "2011-09-20" "2011-09-20" "2011-09-20"
## [30711] "2013-07-26" "2011-09-20" "2013-07-26" "2014-01-30" "2013-04-29"
## [30716] "2014-01-30" "2014-02-15" "2014-02-15" "2013-04-29" "2014-01-30"
## [30721] "2014-01-30" "2012-06-17" "2011-12-15" "2013-12-22" "2012-06-17"
## [30726] "2012-06-17" "2012-06-17" "2013-12-22" "2011-12-15" "2011-12-15"
## [30731] "2011-12-15" "2013-12-22" "2012-05-23" "2012-06-17" "2012-05-23"
## [30736] "2013-01-14" "2013-01-14" "2013-09-05" "2013-01-14" "2013-01-14"
## [30741] "2013-01-14" "2013-09-05" "2012-04-05" "2014-01-27" "2012-04-05"
## [30746] "2014-01-27" "2012-08-09" "2012-08-07" "2012-08-07" "2012-08-07"
## [30751] "2012-08-07" "2012-08-09" "2012-05-01" "2012-08-09" "2012-05-01"
## [30756] "2012-08-09" "2012-01-08" "2011-06-07" "2013-04-16" "2011-06-07"
## [30761] "2012-01-08" "2011-06-07" "2011-06-07" "2013-04-16" "2011-06-07"
## [30766] "2013-08-12" "2011-06-30" "2013-08-12" "2011-06-30" "2013-09-11"
## [30771] "2013-08-12" "2013-01-18" "2013-01-18" "2013-09-11" "2012-09-27"
## [30776] "2011-06-30" "2012-09-27" "2012-09-27" "2012-10-09" "2012-10-09"
## [30781] "2012-10-09" "2011-04-26" "2011-04-26" "2012-07-13" "2013-05-28"
## [30786] "2013-05-28" "2013-05-28" "2011-04-28" "2013-05-28" "2013-05-28"
## [30791] "2013-05-28" "2012-07-13" "2012-02-24" "2012-07-13" "2012-02-24"
## [30796] "2011-04-28" "2013-05-03" "2012-11-18" "2012-09-05" "2013-05-03"
## [30801] "2012-09-05" "2012-09-05" "2012-09-05" "2012-09-05" "2012-11-18"
## [30806] "2013-05-03" "2012-11-18" "2012-11-18" "2012-09-05" "2013-05-03"
## [30811] "2011-07-31" "2013-08-21" "2011-07-31" "2011-07-10" "2011-07-31"
## [30816] "2013-02-21" "2013-02-21" "2011-07-10" "2013-08-21" "2013-02-21"
## [30821] "2013-08-31" "2013-08-31" "2013-02-21" "2013-02-21" "2013-02-21"
## [30826] "2012-05-30" "2013-11-07" "2012-05-30" "2013-11-11" "2012-05-30"
## [30831] "2013-11-07" "2013-11-07" "2013-11-11" "2013-11-11" "2012-05-30"
## [30836] "2012-06-14" "2012-05-30" "2013-11-11" "2012-06-14" "2012-06-14"
## [30841] "2013-11-11" "2012-06-14" "2013-11-11" "2012-06-14" "2012-03-06"
## [30846] "2012-07-10" "2011-07-09" "2012-07-10" "2011-07-09" "2012-07-10"
## [30851] "2011-07-09" "2012-03-06" "2013-02-21" "2013-02-21" "2013-02-21"
## [30856] "2013-02-21" "2013-02-21" "2013-02-10" "2013-02-10" "2011-10-22"
## [30861] "2013-06-28" "2013-06-28" "2011-10-22" "2011-10-22" "2013-06-30"
## [30866] "2013-06-30" "2013-06-30" "2014-01-28" "2014-01-28" "2012-03-26"
## [30871] "2013-06-28" "2012-03-26" "2014-01-28" "2014-01-28" "2013-01-22"
## [30876] "2011-06-18" "2011-06-18" "2011-06-18" "2013-01-22" "2013-01-22"
## [30881] "2011-11-13" "2011-11-13" "2013-09-25" "2011-05-22" "2013-09-25"
## [30886] "2011-05-22" "2013-12-21" "2012-08-20" "2012-08-20" "2011-05-22"
## [30891] "2012-08-20" "2013-12-21" "2013-09-25" "2013-09-25" "2013-12-21"
## [30896] "2014-02-11" "2014-02-11" "2014-02-11" "2014-02-11" "2014-02-11"
## [30901] "2013-04-05" "2013-04-05" "2011-11-06" "2012-12-30" "2012-12-30"
## [30906] "2011-11-06" "2012-12-30" "2013-08-30" "2012-10-14" "2013-08-30"
## [30911] "2012-10-14" "2013-03-15" "2013-03-15" "2013-03-15" "2011-07-28"
## [30916] "2011-07-28" "2013-03-15" "2011-07-28" "2013-03-15" "2013-03-15"
## [30921] "2012-03-25" "2012-05-10" "2012-03-25" "2012-03-25" "2012-04-30"
## [30926] "2011-01-31" "2011-01-31" "2012-12-07" "2012-12-07" "2012-04-30"
## [30931] "2011-09-26" "2012-04-30" "2011-01-31" "2012-03-25" "2011-09-26"
## [30936] "2012-05-10" "2012-03-25" "2012-05-10" "2011-01-31" "2011-01-31"
## [30941] "2011-01-31" "2012-07-14" "2013-04-23" "2013-04-23" "2013-04-23"
## [30946] "2012-07-14" "2012-07-14" "2012-01-19" "2012-01-19" "2012-03-30"
## [30951] "2012-03-30" "2012-03-30" "2012-03-30" "2012-03-30" "2012-03-30"
## [30956] "2011-12-10" "2011-12-10" "2011-11-17" "2013-07-22" "2013-12-01"
## [30961] "2011-12-10" "2013-07-22" "2013-12-01" "2013-11-28" "2011-12-10"
## [30966] "2013-11-28" "2011-12-10" "2013-11-28" "2013-12-01" "2011-12-10"
## [30971] "2011-11-17" "2012-11-30" "2012-11-30" "2012-10-27" "2012-10-27"
## [30976] "2011-07-04" "2011-07-04" "2012-10-27" "2012-11-04" "2012-11-04"
## [30981] "2011-07-04" "2012-11-04" "2011-07-04" "2012-11-04" "2012-11-04"
## [30986] "2011-07-04" "2012-11-04" "2013-12-08" "2013-12-08" "2013-12-08"
## [30991] "2013-12-08" "2011-10-06" "2011-10-06" "2011-10-09" "2011-03-12"
## [30996] "2011-10-09" "2011-10-06" "2011-10-26" "2011-03-07" "2011-10-06"
## [31001] "2011-10-26" "2011-03-12" "2011-10-26" "2011-03-07" "2011-03-12"
## [31006] "2011-10-26" "2011-10-26" "2011-10-09" "2011-10-09" "2011-10-06"
## [31011] "2011-03-07" "2011-10-09" "2011-09-10" "2011-09-19" "2011-09-19"
## [31016] "2012-07-11" "2012-07-11" "2011-09-10" "2012-07-11" "2012-07-11"
## [31021] "2012-07-11" "2011-09-10" "2011-09-19" "2011-03-06" "2011-03-06"
## [31026] "2011-03-06" "2012-12-22" "2012-12-22" "2012-12-22" "2012-03-02"
## [31031] "2012-03-02" "2012-03-02" "2011-05-28" "2013-05-27" "2011-05-28"
## [31036] "2013-05-27" "2011-05-17" "2011-05-17" "2011-05-17" "2011-05-28"
## [31041] "2011-05-17" "2011-05-17" "2011-03-22" "2012-12-21" "2012-12-21"
## [31046] "2012-12-21" "2011-03-22" "2011-10-27" "2011-10-27" "2011-10-27"
## [31051] "2014-02-03" "2012-05-01" "2014-02-03" "2012-05-01" "2012-05-01"
## [31056] "2013-06-07" "2013-06-07" "2013-06-07" "2011-03-01" "2011-03-06"
## [31061] "2011-03-01" "2013-06-07" "2013-06-07" "2011-03-06" "2011-08-21"
## [31066] "2013-05-25" "2013-05-25" "2013-05-25" "2013-05-25" "2012-07-25"
## [31071] "2011-08-21" "2011-08-21" "2013-05-25" "2013-05-25" "2011-08-21"
## [31076] "2012-07-25" "2011-08-21" "2012-09-07" "2011-09-17" "2011-09-17"
## [31081] "2011-08-16" "2011-03-08" "2012-09-07" "2011-08-16" "2011-03-08"
## [31086] "2011-03-08" "2011-09-17" "2012-09-07" "2012-09-07" "2011-10-03"
## [31091] "2012-09-07" "2011-10-03" "2011-09-17" "2011-10-03" "2011-09-28"
## [31096] "2011-03-08" "2011-09-28" "2012-09-07" "2011-09-17" "2011-03-08"
## [31101] "2011-10-19" "2011-10-19" "2011-04-14" "2011-04-14" "2013-09-22"
## [31106] "2013-09-22" "2013-08-24" "2012-09-05" "2013-08-24" "2013-03-15"
## [31111] "2013-08-24" "2013-03-15" "2012-09-05" "2013-03-15" "2013-03-15"
## [31116] "2013-03-15" "2011-06-16" "2011-06-16" "2012-05-18" "2012-07-20"
## [31121] "2012-07-20" "2012-07-20" "2012-07-20" "2012-05-18" "2012-05-18"
## [31126] "2012-07-20" "2012-07-20" "2012-05-18" "2012-05-18" "2013-08-15"
## [31131] "2013-08-15" "2013-10-16" "2011-09-01" "2013-10-16" "2012-06-30"
## [31136] "2012-06-21" "2013-10-17" "2011-09-01" "2013-10-17" "2012-06-21"
## [31141] "2012-06-21" "2011-09-11" "2012-06-21" "2011-09-11" "2012-06-21"
## [31146] "2012-06-21" "2012-06-30" "2013-12-09" "2012-09-01" "2012-09-01"
## [31151] "2012-09-01" "2012-09-01" "2013-12-09" "2013-12-09" "2013-01-24"
## [31156] "2013-01-24" "2013-04-02" "2013-01-24" "2013-04-02" "2013-04-02"
## [31161] "2013-01-24" "2013-04-02" "2013-04-02" "2013-07-07" "2013-07-07"
## [31166] "2013-07-07" "2013-05-05" "2013-07-07" "2013-07-07" "2013-05-05"
## [31171] "2013-11-10" "2013-11-30" "2012-04-27" "2013-11-30" "2012-04-27"
## [31176] "2013-11-30" "2013-11-30" "2013-11-10" "2013-11-30" "2011-02-17"
## [31181] "2011-02-17" "2011-02-17" "2011-02-17" "2011-02-17" "2011-08-22"
## [31186] "2011-08-22" "2011-08-22" "2011-07-04" "2012-09-26" "2011-06-28"
## [31191] "2012-09-26" "2011-07-04" "2011-07-04" "2012-09-26" "2011-06-28"
## [31196] "2011-06-28" "2011-07-22" "2011-07-04" "2012-09-26" "2011-07-04"
## [31201] "2011-06-28" "2011-07-22" "2011-07-22" "2011-07-22" "2011-06-28"
## [31206] "2011-03-23" "2013-11-16" "2013-11-16" "2013-11-16" "2011-03-23"
## [31211] "2011-12-15" "2011-03-23" "2011-03-23" "2011-12-15" "2011-03-23"
## [31216] "2011-12-15" "2011-12-15" "2011-12-15" "2011-02-18" "2011-02-18"
## [31221] "2011-02-18" "2011-02-18" "2013-01-02" "2011-02-18" "2013-01-02"
## [31226] "2011-12-19" "2012-06-07" "2012-06-07" "2011-09-21" "2011-12-19"
## [31231] "2011-09-21" "2012-06-07" "2011-12-19" "2011-09-21" "2012-07-29"
## [31236] "2013-02-21" "2011-07-24" "2013-02-21" "2011-07-24" "2013-02-21"
## [31241] "2012-07-29" "2011-07-16" "2013-02-21" "2012-07-29" "2011-07-16"
## [31246] "2012-07-29" "2012-07-29" "2013-01-22" "2011-04-14" "2011-07-05"
## [31251] "2011-07-05" "2013-01-22" "2011-04-14" "2011-04-14" "2012-05-20"
## [31256] "2012-05-20" "2013-03-23" "2013-03-23" "2011-10-12" "2013-03-23"
## [31261] "2013-11-14" "2013-03-23" "2011-10-12" "2013-03-23" "2011-10-12"
## [31266] "2013-03-23" "2013-11-14" "2011-10-12" "2011-10-12" "2013-04-28"
## [31271] "2013-04-28" "2013-11-14" "2013-11-14" "2013-11-14" "2011-10-12"
## [31276] "2011-07-05" "2013-03-26" "2013-03-26" "2011-07-05" "2011-07-05"
## [31281] "2013-02-17" "2013-02-17" "2013-02-17" "2011-07-13" "2013-08-12"
## [31286] "2011-07-13" "2013-08-12" "2011-07-13" "2011-07-13" "2013-08-12"
## [31291] "2013-08-12" "2013-08-12" "2013-06-27" "2013-06-27" "2012-09-26"
## [31296] "2012-09-26" "2013-06-27" "2013-06-27" "2012-09-26" "2012-10-23"
## [31301] "2012-07-02" "2012-10-23" "2012-07-02" "2011-09-03" "2011-09-03"
## [31306] "2012-09-26" "2012-09-26" "2011-09-03" "2013-06-27" "2012-10-23"
## [31311] "2013-03-06" "2011-02-04" "2011-02-20" "2011-02-04" "2011-02-28"
## [31316] "2012-03-16" "2012-03-16" "2011-02-20" "2011-02-20" "2011-02-28"
## [31321] "2012-06-25" "2011-02-28" "2011-02-20" "2011-02-04" "2011-02-28"
## [31326] "2012-06-25" "2013-03-06" "2012-06-25" "2012-08-06" "2012-02-16"
## [31331] "2012-02-16" "2013-08-20" "2013-08-20" "2012-02-16" "2013-08-20"
## [31336] "2012-02-16" "2012-02-16" "2012-08-06" "2013-08-20" "2011-05-24"
## [31341] "2011-11-20" "2011-11-20" "2011-11-20" "2011-05-24" "2011-05-24"
## [31346] "2013-04-16" "2013-10-31" "2013-04-16" "2013-04-16" "2013-04-16"
## [31351] "2013-04-16" "2013-10-31" "2012-05-07" "2012-08-10" "2012-05-07"
## [31356] "2012-08-10" "2012-08-10" "2012-05-07" "2012-08-10" "2012-08-10"
## [31361] "2012-08-10" "2011-12-03" "2011-12-03" "2012-12-25" "2012-08-08"
## [31366] "2012-12-25" "2012-12-25" "2012-08-16" "2012-12-25" "2012-08-08"
## [31371] "2012-12-25" "2012-08-08" "2012-08-16" "2012-08-16" "2012-08-08"
## [31376] "2012-08-16" "2012-08-08" "2012-08-08" "2012-08-16" "2012-08-16"
## [31381] "2014-01-26" "2014-01-26" "2014-01-26" "2011-07-07" "2011-07-07"
## [31386] "2011-07-07" "2014-01-26" "2011-07-07" "2011-07-07" "2011-07-07"
## [31391] "2014-01-26" "2014-01-26" "2013-11-07" "2013-11-07" "2013-11-07"
## [31396] "2013-11-07" "2013-11-07" "2011-09-24" "2011-09-24" "2011-09-24"
## [31401] "2011-09-24" "2013-08-06" "2012-10-28" "2013-08-06" "2011-11-10"
## [31406] "2011-11-10" "2012-10-28" "2011-11-10" "2012-10-28" "2011-11-10"
## [31411] "2011-11-10" "2011-11-10" "2012-11-21" "2013-09-03" "2012-11-21"
## [31416] "2013-09-03" "2013-09-03" "2013-12-09" "2012-11-21" "2012-11-21"
## [31421] "2013-12-09" "2013-09-03" "2013-12-09" "2013-12-09" "2012-11-21"
## [31426] "2014-01-12" "2014-01-12" "2014-01-12" "2013-12-09" "2014-01-12"
## [31431] "2013-12-09" "2012-02-15" "2013-01-16" "2013-01-16" "2012-02-15"
## [31436] "2012-02-15" "2013-01-16" "2013-01-16" "2013-01-16" "2012-02-15"
## [31441] "2013-01-16" "2011-05-15" "2012-10-01" "2013-07-19" "2013-07-19"
## [31446] "2013-07-19" "2012-10-01" "2011-05-15" "2011-06-23" "2011-06-23"
## [31451] "2013-08-20" "2013-08-20" "2011-06-23" "2011-06-23" "2011-06-23"
## [31456] "2011-06-23" "2012-04-12" "2013-08-06" "2013-05-01" "2013-08-06"
## [31461] "2013-05-01" "2013-05-01" "2011-08-19" "2013-08-06" "2011-08-19"
## [31466] "2011-08-19" "2013-05-01" "2013-08-06" "2013-05-01" "2013-09-22"
## [31471] "2013-08-06" "2013-09-22" "2011-08-19" "2012-04-12" "2011-08-19"
## [31476] "2013-11-25" "2013-01-28" "2013-01-28" "2013-11-25" "2011-04-19"
## [31481] "2011-04-19" "2013-12-22" "2011-04-19" "2013-10-25" "2013-10-25"
## [31486] "2011-04-19" "2013-12-22" "2014-02-05" "2011-07-01" "2013-02-25"
## [31491] "2011-07-01" "2011-07-01" "2014-02-05" "2011-06-06" "2013-02-25"
## [31496] "2012-10-16" "2013-02-25" "2012-10-16" "2011-06-06" "2011-07-01"
## [31501] "2011-07-01" "2014-02-05" "2011-07-24" "2012-02-23" "2011-07-24"
## [31506] "2011-07-24" "2012-02-23" "2012-02-23" "2011-07-24" "2011-07-24"
## [31511] "2012-09-19" "2012-11-04" "2014-02-01" "2012-11-04" "2012-09-19"
## [31516] "2012-11-04" "2012-09-19" "2014-02-01" "2012-09-19" "2012-11-04"
## [31521] "2012-09-19" "2012-11-04" "2014-02-01" "2013-03-07" "2013-03-07"
## [31526] "2013-03-07" "2011-08-08" "2011-08-08" "2011-08-08" "2012-04-05"
## [31531] "2012-02-29" "2012-02-29" "2012-02-29" "2012-02-29" "2012-02-29"
## [31536] "2011-11-14" "2012-04-05" "2011-11-14" "2011-11-14" "2013-12-23"
## [31541] "2013-12-23" "2012-01-10" "2012-01-10" "2011-03-30" "2012-01-10"
## [31546] "2011-03-30" "2011-03-30" "2011-03-30" "2013-12-23" "2012-01-17"
## [31551] "2012-01-10" "2012-01-10" "2012-01-17" "2013-12-23" "2011-03-30"
## [31556] "2013-12-23" "2012-01-17" "2012-01-17" "2012-01-17" "2011-03-30"
## [31561] "2011-04-29" "2011-05-30" "2011-04-29" "2012-11-22" "2011-06-07"
## [31566] "2011-04-29" "2012-11-22" "2011-06-07" "2011-04-29" "2012-11-22"
## [31571] "2011-05-30" "2011-04-29" "2013-01-01" "2011-04-07" "2013-01-01"
## [31576] "2011-04-07" "2011-06-15" "2011-06-15" "2011-06-15" "2011-02-09"
## [31581] "2011-02-09" "2011-07-30" "2012-02-10" "2012-02-10" "2011-04-18"
## [31586] "2011-05-12" "2011-05-12" "2011-07-30" "2011-04-18" "2011-07-30"
## [31591] "2011-05-12" "2011-07-30" "2011-07-30" "2011-10-21" "2011-10-21"
## [31596] "2012-03-01" "2011-08-18" "2011-10-21" "2011-10-21" "2011-08-18"
## [31601] "2011-10-21" "2012-03-01" "2012-03-01" "2011-08-18" "2013-06-18"
## [31606] "2011-10-16" "2013-06-18" "2013-06-18" "2011-10-16" "2011-06-27"
## [31611] "2011-06-17" "2011-06-27" "2011-06-27" "2011-06-17" "2013-06-30"
## [31616] "2013-06-23" "2011-06-17" "2011-06-27" "2011-06-17" "2013-06-23"
## [31621] "2011-06-17" "2013-06-30" "2013-06-30" "2013-06-30" "2011-06-17"
## [31626] "2011-06-27" "2013-06-30" "2013-06-23" "2013-06-23" "2013-06-23"
## [31631] "2012-10-06" "2012-11-18" "2012-10-06" "2011-11-15" "2012-10-06"
## [31636] "2012-11-18" "2011-11-15" "2012-10-06" "2011-11-15" "2012-10-06"
## [31641] "2013-08-13" "2013-08-13" "2013-08-13" "2013-08-13" "2012-01-03"
## [31646] "2012-01-03" "2011-09-30" "2013-02-20" "2011-09-30" "2013-02-20"
## [31651] "2011-09-30" "2013-02-20" "2013-04-17" "2013-02-20" "2013-04-17"
## [31656] "2013-04-17" "2011-09-30" "2013-02-20" "2011-09-30" "2013-04-17"
## [31661] "2013-04-17" "2013-04-17" "2011-06-21" "2011-06-21" "2011-03-13"
## [31666] "2011-03-13" "2011-04-01" "2013-05-18" "2012-10-20" "2013-05-18"
## [31671] "2013-05-18" "2012-10-20" "2013-05-18" "2011-04-01" "2011-04-01"
## [31676] "2013-05-18" "2011-04-01" "2012-10-20" "2011-04-01" "2013-11-10"
## [31681] "2013-11-10" "2011-12-10" "2013-11-10" "2013-11-10" "2011-12-10"
## [31686] "2011-12-10" "2013-11-10" "2014-01-10" "2014-01-10" "2014-01-10"
## [31691] "2013-12-22" "2013-12-22" "2014-01-10" "2014-01-10" "2013-09-10"
## [31696] "2013-09-10" "2012-08-29" "2012-08-29" "2013-01-31" "2013-01-31"
## [31701] "2013-01-31" "2012-08-29" "2012-09-28" "2012-09-28" "2012-07-07"
## [31706] "2011-09-25" "2011-09-25" "2012-09-28" "2012-09-28" "2011-09-22"
## [31711] "2013-09-13" "2012-07-07" "2011-09-25" "2013-06-03" "2013-06-03"
## [31716] "2013-09-13" "2012-09-28" "2011-09-22" "2013-09-13" "2011-01-31"
## [31721] "2011-01-31" "2011-01-31" "2012-02-09" "2012-02-09" "2012-02-09"
## [31726] "2012-02-09" "2012-02-09" "2011-11-05" "2011-11-05" "2013-01-28"
## [31731] "2011-11-05" "2011-09-14" "2013-01-28" "2013-01-28" "2013-01-28"
## [31736] "2011-09-14" "2013-01-28" "2013-01-28" "2013-09-03" "2013-08-28"
## [31741] "2013-08-28" "2013-09-03" "2013-09-03" "2013-08-28" "2011-12-16"
## [31746] "2011-12-16" "2013-09-16" "2013-12-30" "2013-12-30" "2013-09-23"
## [31751] "2011-02-12" "2013-12-30" "2011-02-12" "2013-09-16" "2011-02-12"
## [31756] "2011-02-12" "2013-09-23" "2011-02-12" "2013-09-16" "2012-10-31"
## [31761] "2012-10-31" "2013-01-19" "2013-01-19" "2011-09-16" "2011-09-16"
## [31766] "2012-01-21" "2012-01-21" "2011-09-16" "2011-11-24" "2011-09-16"
## [31771] "2011-08-13" "2012-01-21" "2011-08-13" "2011-03-25" "2011-03-15"
## [31776] "2011-09-13" "2011-03-25" "2011-11-24" "2011-09-13" "2011-08-13"
## [31781] "2012-01-21" "2011-11-24" "2011-09-13" "2012-01-21" "2011-03-15"
## [31786] "2011-09-13" "2012-12-13" "2011-11-12" "2013-12-22" "2011-11-12"
## [31791] "2012-12-13" "2012-12-13" "2011-11-12" "2013-03-01" "2012-01-12"
## [31796] "2013-12-22" "2013-03-01" "2012-01-12" "2013-03-01" "2012-01-12"
## [31801] "2013-12-22" "2013-11-10" "2013-11-10" "2013-11-10" "2013-11-15"
## [31806] "2013-11-15" "2013-09-26" "2013-09-19" "2013-09-26" "2013-11-15"
## [31811] "2013-09-26" "2013-09-24" "2013-09-24" "2013-11-15" "2013-09-24"
## [31816] "2013-07-10" "2013-07-10" "2013-11-10" "2013-09-19" "2013-07-10"
## [31821] "2013-07-10" "2013-09-19" "2013-07-10" "2013-11-10" "2013-11-15"
## [31826] "2011-06-17" "2011-06-17" "2011-06-17" "2012-06-01" "2012-06-01"
## [31831] "2012-06-01" "2012-06-01" "2012-06-01" "2013-11-07" "2013-11-07"
## [31836] "2013-11-07" "2013-11-07" "2012-02-09" "2013-02-09" "2013-02-09"
## [31841] "2012-02-09" "2011-08-24" "2011-05-17" "2011-08-24" "2011-05-17"
## [31846] "2011-05-17" "2011-09-17" "2011-09-17" "2011-09-17" "2011-09-17"
## [31851] "2011-09-17" "2013-07-03" "2012-08-27" "2012-08-27" "2011-05-04"
## [31856] "2012-08-17" "2013-07-03" "2012-08-17" "2011-05-04" "2013-07-03"
## [31861] "2011-04-20" "2011-04-20" "2013-10-15" "2013-08-27" "2013-08-27"
## [31866] "2013-10-15" "2013-10-15" "2013-08-27" "2013-10-15" "2013-10-15"
## [31871] "2012-10-11" "2012-10-11" "2012-10-11" "2011-02-24" "2011-02-24"
## [31876] "2011-02-24" "2011-06-18" "2011-06-18" "2011-02-24" "2011-02-24"
## [31881] "2011-06-18" "2013-03-28" "2013-03-29" "2013-03-28" "2013-03-29"
## [31886] "2013-03-29" "2013-03-28" "2011-11-04" "2011-11-04" "2013-01-17"
## [31891] "2011-06-12" "2011-06-12" "2011-06-12" "2013-01-17" "2011-06-12"
## [31896] "2013-01-17" "2013-01-17" "2011-11-04" "2013-01-17" "2011-06-12"
## [31901] "2012-05-17" "2012-05-17" "2013-04-11" "2012-05-17" "2011-07-16"
## [31906] "2013-04-11" "2013-02-06" "2012-05-17" "2011-07-16" "2013-02-06"
## [31911] "2011-07-15" "2012-05-17" "2011-07-15" "2011-07-15" "2011-07-16"
## [31916] "2011-04-13" "2011-04-22" "2011-04-22" "2012-10-09" "2013-03-04"
## [31921] "2012-05-08" "2011-04-13" "2011-04-22" "2011-04-22" "2011-04-13"
## [31926] "2011-04-13" "2013-03-04" "2012-10-09" "2013-11-28" "2012-05-08"
## [31931] "2012-05-08" "2012-10-09" "2011-04-13" "2012-05-08" "2013-04-30"
## [31936] "2012-10-09" "2013-04-30" "2013-11-28" "2013-11-28" "2012-10-09"
## [31941] "2012-10-09" "2011-04-22" "2013-11-28" "2013-04-30" "2011-09-22"
## [31946] "2012-04-21" "2011-07-30" "2012-04-21" "2011-09-22" "2013-12-30"
## [31951] "2012-08-16" "2012-08-16" "2013-12-30" "2011-07-30" "2011-09-22"
## [31956] "2011-09-22" "2011-09-22" "2011-09-22" "2014-01-04" "2011-06-18"
## [31961] "2011-06-18" "2014-01-04" "2011-06-18" "2013-06-05" "2013-06-05"
## [31966] "2013-03-20" "2013-03-18" "2013-03-20" "2013-03-20" "2013-03-18"
## [31971] "2012-12-30" "2011-03-05" "2011-05-27" "2012-12-30" "2011-05-27"
## [31976] "2011-05-27" "2011-03-05" "2011-03-05" "2011-02-01" "2011-02-01"
## [31981] "2011-02-01" "2011-05-27" "2011-02-01" "2011-02-01" "2011-05-27"
## [31986] "2012-12-30" "2011-03-05" "2011-02-01" "2012-12-30" "2012-12-30"
## [31991] "2011-03-05" "2011-08-16" "2013-09-23" "2011-08-16" "2013-09-23"
## [31996] "2011-08-16" "2011-08-16" "2013-03-03" "2013-09-22" "2013-09-22"
## [32001] "2012-06-25" "2011-08-16" "2012-06-25" "2013-03-03" "2012-11-30"
## [32006] "2012-11-30" "2013-07-24" "2013-07-24" "2013-07-31" "2013-07-31"
## [32011] "2013-07-31" "2013-07-29" "2013-07-29" "2013-07-31" "2013-07-29"
## [32016] "2013-07-31" "2013-07-24" "2013-07-29" "2013-07-24" "2013-07-24"
## [32021] "2013-07-29" "2011-02-05" "2011-02-05" "2012-04-29" "2011-02-05"
## [32026] "2013-12-04" "2012-04-29" "2012-04-29" "2013-12-19" "2013-12-19"
## [32031] "2013-12-04" "2013-12-04" "2012-04-29" "2012-09-11" "2012-05-06"
## [32036] "2012-05-06" "2012-09-11" "2012-09-11" "2012-09-11" "2012-05-06"
## [32041] "2012-09-11" "2012-07-29" "2012-03-18" "2012-03-18" "2012-07-29"
## [32046] "2011-07-10" "2013-07-16" "2011-07-10" "2013-07-16" "2013-07-16"
## [32051] "2013-07-16" "2011-07-10" "2013-11-04" "2013-01-31" "2013-01-31"
## [32056] "2013-11-04" "2013-01-31" "2013-11-04" "2013-01-31" "2013-01-31"
## [32061] "2013-01-31" "2012-09-17" "2012-09-17" "2012-09-17" "2012-09-17"
## [32066] "2011-11-21" "2011-11-21" "2012-09-17" "2013-07-20" "2012-11-20"
## [32071] "2012-11-20" "2012-02-09" "2012-01-17" "2012-01-17" "2012-01-17"
## [32076] "2012-11-20" "2012-01-17" "2012-01-17" "2012-01-17" "2013-07-20"
## [32081] "2012-02-09" "2012-02-09" "2012-02-09" "2012-02-09" "2012-02-09"
## [32086] "2013-11-13" "2011-06-01" "2011-06-01" "2013-11-13" "2011-10-27"
## [32091] "2012-06-06" "2012-09-30" "2012-09-30" "2011-10-27" "2012-09-30"
## [32096] "2012-09-30" "2011-10-27" "2012-06-06" "2012-06-06" "2012-09-30"
## [32101] "2012-06-06" "2011-10-27" "2011-10-27" "2012-10-07" "2012-02-21"
## [32106] "2011-08-09" "2011-08-09" "2011-08-09" "2012-10-07" "2011-08-09"
## [32111] "2012-02-21" "2011-08-09" "2012-08-05" "2012-08-05" "2012-08-05"
## [32116] "2012-10-16" "2012-11-24" "2012-10-16" "2012-11-24" "2012-11-24"
## [32121] "2012-11-24" "2011-05-06" "2011-05-10" "2011-05-06" "2012-10-23"
## [32126] "2012-10-23" "2012-07-13" "2012-07-13" "2012-07-13" "2011-05-10"
## [32131] "2012-07-13" "2014-01-20" "2014-01-20" "2014-01-20" "2013-07-18"
## [32136] "2013-07-18" "2013-07-18" "2011-07-18" "2011-02-26" "2011-02-26"
## [32141] "2011-02-26" "2012-08-26" "2011-09-20" "2012-08-26" "2011-09-20"
## [32146] "2011-09-20" "2011-09-20" "2011-09-20" "2011-02-26" "2011-02-26"
## [32151] "2013-01-27" "2013-01-27" "2011-07-18" "2011-04-19" "2011-07-18"
## [32156] "2011-04-19" "2013-01-27" "2011-04-19" "2013-11-30" "2013-12-30"
## [32161] "2013-11-30" "2013-12-30" "2013-07-13" "2013-07-13" "2011-12-28"
## [32166] "2013-07-13" "2011-12-30" "2013-07-13" "2011-10-27" "2011-10-27"
## [32171] "2013-07-13" "2011-12-30" "2011-12-28" "2013-06-26" "2013-06-26"
## [32176] "2012-01-14" "2013-06-26" "2012-01-14" "2013-06-26" "2013-06-26"
## [32181] "2012-01-14" "2011-04-30" "2011-04-30" "2013-02-10" "2013-02-26"
## [32186] "2013-02-10" "2013-02-28" "2012-08-02" "2013-02-28" "2013-02-28"
## [32191] "2013-02-10" "2013-03-28" "2012-08-02" "2012-08-02" "2013-03-28"
## [32196] "2012-05-19" "2013-02-26" "2013-02-26" "2012-05-19" "2013-02-26"
## [32201] "2012-05-19" "2012-05-19" "2013-02-28" "2013-02-28" "2013-02-26"
## [32206] "2011-04-28" "2011-04-28" "2011-04-28" "2011-04-28" "2011-04-28"
## [32211] "2013-11-30" "2011-01-28" "2013-11-30" "2013-11-30" "2013-11-30"
## [32216] "2011-01-28" "2013-11-30" "2013-11-30" "2012-01-23" "2012-06-26"
## [32221] "2012-06-26" "2012-01-23" "2012-01-23" "2013-06-13" "2011-05-28"
## [32226] "2011-05-28" "2013-11-23" "2013-01-31" "2012-07-20" "2012-07-20"
## [32231] "2013-01-31" "2012-07-20" "2013-11-23" "2012-07-20" "2012-07-20"
## [32236] "2013-11-23" "2013-06-13" "2012-07-20" "2013-01-31" "2012-08-11"
## [32241] "2012-08-11" "2013-08-07" "2012-06-27" "2012-06-27" "2012-06-27"
## [32246] "2012-08-11" "2012-08-11" "2012-08-11" "2012-06-27" "2012-06-27"
## [32251] "2012-08-11" "2013-08-07" "2013-12-08" "2013-12-08" "2011-11-13"
## [32256] "2011-11-13" "2011-11-13" "2011-11-13" "2011-11-13" "2011-10-09"
## [32261] "2011-06-17" "2012-09-23" "2012-09-23" "2011-10-09" "2012-09-23"
## [32266] "2012-09-23" "2012-09-23" "2012-09-03" "2011-05-15" "2012-09-03"
## [32271] "2011-05-15" "2011-05-15" "2011-06-17" "2012-09-23" "2011-07-20"
## [32276] "2011-10-23" "2011-07-20" "2011-10-13" "2011-09-11" "2011-10-13"
## [32281] "2011-07-20" "2011-09-11" "2013-02-15" "2011-10-13" "2011-10-23"
## [32286] "2011-07-20" "2011-10-23" "2013-02-15" "2013-11-26" "2013-11-26"
## [32291] "2013-11-26" "2013-11-26" "2013-11-26" "2013-11-26" "2013-03-03"
## [32296] "2013-03-03" "2011-08-08" "2011-08-08" "2011-02-28" "2011-03-15"
## [32301] "2011-08-08" "2011-02-28" "2011-08-08" "2011-02-28" "2011-03-07"
## [32306] "2011-02-28" "2011-08-08" "2011-02-28" "2011-08-08" "2011-03-07"
## [32311] "2011-03-15" "2012-02-14" "2012-02-14" "2012-02-14" "2011-04-22"
## [32316] "2013-03-13" "2013-03-13" "2011-04-22" "2013-03-13" "2011-02-10"
## [32321] "2011-02-10" "2013-03-13" "2013-03-13" "2011-02-10" "2011-03-29"
## [32326] "2013-06-14" "2011-03-29" "2011-03-29" "2013-06-14" "2013-06-14"
## [32331] "2011-02-02" "2012-05-18" "2012-03-28" "2012-05-18" "2012-10-10"
## [32336] "2012-05-18" "2012-10-10" "2012-10-10" "2012-10-10" "2012-03-28"
## [32341] "2012-05-18" "2012-05-18" "2011-02-02" "2012-10-10" "2012-02-09"
## [32346] "2012-02-09" "2012-02-17" "2013-10-27" "2013-10-27" "2012-02-17"
## [32351] "2013-03-21" "2013-03-21" "2012-02-17" "2013-02-05" "2013-02-01"
## [32356] "2013-02-01" "2013-02-05" "2013-02-05" "2013-02-01" "2013-11-12"
## [32361] "2012-06-19" "2012-12-20" "2013-11-12" "2012-12-20" "2012-06-19"
## [32366] "2012-12-20" "2012-12-20" "2013-11-12" "2012-06-19" "2013-11-12"
## [32371] "2013-11-12" "2012-12-20" "2012-12-20" "2011-07-13" "2013-04-22"
## [32376] "2011-07-13" "2013-04-22" "2013-04-22" "2013-04-22" "2011-07-13"
## [32381] "2012-10-28" "2013-12-11" "2012-10-28" "2013-12-11" "2012-10-28"
## [32386] "2013-12-11" "2013-04-05" "2013-04-05" "2013-04-05" "2013-04-05"
## [32391] "2013-07-15" "2013-07-06" "2013-07-06" "2013-07-15" "2012-02-23"
## [32396] "2012-02-23" "2012-02-23" "2011-07-01" "2011-07-01" "2013-01-22"
## [32401] "2013-01-30" "2013-01-30" "2013-01-22" "2011-07-01" "2012-11-20"
## [32406] "2013-01-22" "2011-07-01" "2013-01-30" "2013-01-30" "2012-11-20"
## [32411] "2012-11-20" "2013-01-30" "2012-11-17" "2013-12-19" "2013-12-19"
## [32416] "2013-12-19" "2012-11-17" "2013-12-19" "2013-12-19" "2011-03-18"
## [32421] "2011-05-20" "2011-03-18" "2011-05-21" "2011-03-18" "2011-05-20"
## [32426] "2012-02-23" "2011-05-21" "2011-05-20" "2012-02-23" "2011-03-18"
## [32431] "2011-05-21" "2013-08-09" "2013-08-09" "2013-03-09" "2013-03-09"
## [32436] "2012-03-29" "2013-03-09" "2013-03-09" "2012-03-29" "2013-03-09"
## [32441] "2011-06-14" "2011-06-06" "2013-10-05" "2013-10-05" "2011-06-06"
## [32446] "2011-06-14" "2013-09-27" "2013-09-27" "2013-10-05" "2013-09-27"
## [32451] "2012-04-18" "2011-11-30" "2011-07-03" "2012-04-18" "2011-11-30"
## [32456] "2011-11-30" "2011-07-03" "2011-11-30" "2011-11-30" "2012-04-18"
## [32461] "2011-11-30" "2012-09-14" "2012-09-14" "2012-09-14" "2012-09-14"
## [32466] "2012-09-14" "2012-09-14" "2013-11-06" "2013-11-06" "2013-06-15"
## [32471] "2013-06-15" "2013-06-15" "2013-05-09" "2013-05-09" "2012-03-30"
## [32476] "2013-12-25" "2013-12-25" "2012-03-30" "2012-04-08" "2012-04-08"
## [32481] "2012-04-08" "2012-03-30" "2011-11-26" "2011-11-26" "2011-11-26"
## [32486] "2011-11-26" "2011-11-26" "2011-11-26" "2011-10-27" "2013-08-25"
## [32491] "2013-08-25" "2011-10-27" "2011-11-22" "2011-10-27" "2011-10-27"
## [32496] "2014-01-09" "2014-01-09" "2011-11-22" "2011-11-22" "2014-01-09"
## [32501] "2011-11-22" "2011-11-22" "2011-10-27" "2014-01-09" "2014-01-09"
## [32506] "2012-12-30" "2012-02-04" "2012-02-04" "2012-02-04" "2012-02-04"
## [32511] "2012-03-31" "2012-02-04" "2012-12-30" "2012-12-30" "2012-12-30"
## [32516] "2012-02-04" "2012-04-30" "2012-03-31" "2012-12-30" "2012-04-30"
## [32521] "2012-03-31" "2013-01-22" "2012-11-18" "2013-01-16" "2013-01-22"
## [32526] "2012-11-18" "2013-01-16" "2012-12-08" "2013-01-16" "2011-07-27"
## [32531] "2012-11-18" "2012-12-08" "2012-12-08" "2011-07-27" "2013-01-22"
## [32536] "2011-06-20" "2011-06-20" "2011-06-20" "2013-11-05" "2011-05-08"
## [32541] "2013-11-05" "2011-05-08" "2012-12-21" "2012-12-21" "2011-07-27"
## [32546] "2011-07-27" "2011-07-27" "2011-07-27" "2011-07-27" "2013-11-06"
## [32551] "2013-11-06" "2012-07-08" "2011-10-02" "2012-07-08" "2011-10-02"
## [32556] "2011-09-16" "2011-09-16" "2011-09-16" "2011-11-27" "2011-11-27"
## [32561] "2011-11-27" "2011-11-27" "2011-11-27" "2012-12-23" "2012-12-23"
## [32566] "2012-10-08" "2012-10-08" "2012-10-08" "2012-12-23" "2012-12-23"
## [32571] "2012-12-23" "2012-12-23" "2013-07-10" "2013-09-19" "2013-07-10"
## [32576] "2013-07-10" "2013-07-10" "2013-09-19" "2011-04-25" "2011-04-25"
## [32581] "2013-07-10" "2011-04-25" "2011-04-25" "2011-04-25" "2013-09-19"
## [32586] "2013-07-10" "2011-03-15" "2011-03-15" "2011-03-15" "2013-10-30"
## [32591] "2011-03-15" "2013-10-30" "2011-03-15" "2014-01-06" "2011-03-15"
## [32596] "2014-01-06" "2014-01-06" "2013-10-30" "2014-01-06" "2014-01-06"
## [32601] "2013-10-30" "2013-10-30" "2011-08-19" "2011-08-19" "2012-07-08"
## [32606] "2012-07-08" "2013-09-25" "2011-09-07" "2013-10-04" "2013-09-24"
## [32611] "2013-09-25" "2011-09-07" "2013-09-24" "2013-10-04" "2012-09-29"
## [32616] "2012-10-03" "2012-09-29" "2012-08-27" "2012-09-29" "2012-10-03"
## [32621] "2013-06-24" "2013-10-01" "2012-10-03" "2013-10-01" "2012-10-03"
## [32626] "2012-09-29" "2013-06-24" "2012-08-29" "2013-10-01" "2013-06-24"
## [32631] "2012-08-27" "2013-10-01" "2012-08-29" "2012-08-29" "2013-10-01"
## [32636] "2012-08-27" "2013-07-20" "2013-07-20" "2012-08-29" "2012-08-29"
## [32641] "2012-04-12" "2012-10-21" "2011-09-17" "2011-09-17" "2012-10-21"
## [32646] "2011-09-17" "2012-10-21" "2011-08-28" "2011-08-28" "2012-04-12"
## [32651] "2011-09-17" "2011-09-17" "2011-11-21" "2012-09-22" "2011-10-03"
## [32656] "2011-10-03" "2011-11-21" "2012-09-22" "2013-12-05" "2013-12-05"
## [32661] "2013-12-05" "2013-12-05" "2012-11-22" "2012-11-17" "2012-11-22"
## [32666] "2012-11-17" "2012-11-22" "2012-11-22" "2012-11-22" "2011-11-11"
## [32671] "2012-11-22" "2011-10-15" "2014-01-11" "2011-10-15" "2011-10-15"
## [32676] "2014-01-11" "2012-11-17" "2011-11-11" "2012-11-17" "2014-01-11"
## [32681] "2012-06-08" "2014-01-11" "2011-11-11" "2012-11-17" "2012-06-08"
## [32686] "2011-11-11" "2011-11-11" "2014-01-11" "2012-11-17" "2012-01-12"
## [32691] "2011-03-21" "2011-03-21" "2011-03-29" "2011-03-29" "2012-01-12"
## [32696] "2012-02-10" "2012-02-10" "2012-02-10" "2012-02-10" "2012-02-10"
## [32701] "2013-02-14" "2013-02-14" "2013-06-13" "2013-06-08" "2013-02-14"
## [32706] "2013-02-14" "2013-02-14" "2013-06-08" "2013-06-13" "2012-11-17"
## [32711] "2012-11-17" "2012-11-17" "2012-11-17" "2012-01-04" "2012-01-04"
## [32716] "2011-04-24" "2011-04-24" "2013-10-19" "2012-01-04" "2011-04-24"
## [32721] "2013-10-19" "2011-12-17" "2011-12-17" "2011-12-17" "2012-01-14"
## [32726] "2012-01-07" "2012-01-14" "2012-01-14" "2012-01-07" "2012-01-07"
## [32731] "2012-01-14" "2012-01-07" "2012-10-13" "2011-09-11" "2012-10-13"
## [32736] "2012-10-13" "2012-10-13" "2011-09-11" "2012-10-13" "2011-09-11"
## [32741] "2012-10-13" "2013-04-04" "2013-04-04" "2012-07-04" "2012-10-16"
## [32746] "2012-07-04" "2012-07-04" "2012-07-04" "2012-10-16" "2013-04-04"
## [32751] "2012-07-31" "2012-07-31" "2012-07-28" "2012-07-28" "2012-09-22"
## [32756] "2012-07-31" "2012-07-28" "2012-09-22" "2012-09-22" "2012-09-22"
## [32761] "2012-09-22" "2011-07-06" "2012-11-12" "2012-11-12" "2012-11-12"
## [32766] "2011-07-06" "2012-11-12" "2012-01-04" "2012-01-04" "2013-05-12"
## [32771] "2012-01-04" "2012-01-04" "2012-01-04" "2013-05-12" "2012-03-24"
## [32776] "2012-03-24" "2012-03-24" "2012-03-24" "2012-03-24" "2012-03-24"
## [32781] "2013-01-28" "2011-10-17" "2013-01-28" "2011-10-25" "2011-10-25"
## [32786] "2011-10-17" "2013-01-28" "2011-10-17" "2011-10-17" "2013-01-28"
## [32791] "2011-10-25" "2013-01-28" "2011-10-25" "2013-02-08" "2013-02-01"
## [32796] "2013-02-08" "2013-02-08" "2013-02-08" "2013-02-08" "2013-02-01"
## [32801] "2013-02-01" "2013-02-01" "2013-02-01" "2012-09-06" "2013-09-09"
## [32806] "2014-01-07" "2012-08-08" "2012-09-06" "2014-01-07" "2012-08-08"
## [32811] "2012-08-08" "2013-09-09" "2014-01-07" "2011-08-17" "2011-08-17"
## [32816] "2012-03-02" "2012-03-02" "2011-08-17" "2012-03-02" "2012-03-02"
## [32821] "2013-12-28" "2012-06-09" "2012-06-09" "2013-12-28" "2012-06-09"
## [32826] "2013-12-28" "2012-06-09" "2013-12-28" "2012-06-09" "2013-12-28"
## [32831] "2013-03-15" "2013-03-15" "2013-03-15" "2013-03-15" "2011-12-13"
## [32836] "2011-12-13" "2013-06-01" "2012-12-27" "2012-12-23" "2012-12-27"
## [32841] "2012-12-23" "2013-06-01" "2011-07-01" "2012-07-03" "2011-07-01"
## [32846] "2011-07-01" "2011-07-01" "2013-09-17" "2013-09-17" "2012-07-03"
## [32851] "2011-07-01" "2013-09-17" "2012-07-03" "2012-07-03" "2011-10-13"
## [32856] "2011-10-13" "2011-10-13" "2013-09-28" "2011-10-13" "2011-10-13"
## [32861] "2013-09-28" "2012-10-14" "2013-08-02" "2011-10-13" "2012-10-14"
## [32866] "2013-08-02" "2013-09-28" "2012-10-14" "2012-10-14" "2012-10-14"
## [32871] "2012-04-07" "2012-04-07" "2013-09-15" "2012-11-14" "2013-07-14"
## [32876] "2013-09-04" "2013-07-14" "2013-09-04" "2013-09-04" "2013-07-14"
## [32881] "2013-09-04" "2013-09-15" "2012-11-14" "2013-07-14" "2013-07-14"
## [32886] "2013-07-14" "2013-09-04" "2012-01-10" "2012-01-04" "2011-08-20"
## [32891] "2012-01-10" "2012-01-04" "2011-08-20" "2011-11-26" "2011-11-26"
## [32896] "2011-11-26" "2013-04-21" "2013-04-21" "2011-11-26" "2011-11-26"
## [32901] "2013-04-21" "2011-11-26" "2012-12-29" "2011-02-26" "2012-12-29"
## [32906] "2011-02-26" "2011-02-16" "2012-12-29" "2011-02-16" "2011-02-16"
## [32911] "2011-02-26" "2011-02-26" "2011-02-16" "2011-02-26" "2011-02-16"
## [32916] "2012-12-29" "2011-08-29" "2011-09-05" "2011-05-05" "2011-08-31"
## [32921] "2011-05-05" "2011-08-29" "2011-08-31" "2011-09-05" "2011-05-05"
## [32926] "2013-12-05" "2013-12-05" "2013-12-05" "2014-01-16" "2014-01-16"
## [32931] "2013-01-22" "2013-01-12" "2013-01-12" "2012-06-14" "2013-01-12"
## [32936] "2012-06-14" "2013-01-12" "2012-06-14" "2013-01-12" "2013-01-22"
## [32941] "2013-01-22" "2013-01-22" "2013-01-22" "2012-03-29" "2012-05-26"
## [32946] "2012-03-29" "2013-10-09" "2012-03-29" "2012-05-26" "2013-10-09"
## [32951] "2012-03-29" "2012-03-29" "2012-03-29" "2013-10-09" "2012-05-26"
## [32956] "2013-08-02" "2013-08-02" "2013-08-02" "2013-05-19" "2013-05-02"
## [32961] "2013-05-02" "2013-05-19" "2012-02-20" "2013-05-19" "2012-02-20"
## [32966] "2011-03-25" "2013-05-19" "2013-05-02" "2013-05-02" "2013-05-02"
## [32971] "2013-05-19" "2011-03-25" "2011-03-25" "2011-03-25" "2012-12-22"
## [32976] "2012-12-22" "2012-12-20" "2012-04-23" "2012-04-15" "2012-04-23"
## [32981] "2012-12-22" "2012-04-23" "2012-04-15" "2012-12-22" "2012-12-20"
## [32986] "2012-12-22" "2012-12-20" "2012-04-15" "2012-12-20" "2012-12-20"
## [32991] "2011-02-09" "2011-02-03" "2011-02-03" "2011-02-09" "2012-06-13"
## [32996] "2012-06-13" "2012-06-13" "2012-06-13" "2011-10-26" "2011-10-26"
## [33001] "2012-11-18" "2013-12-07" "2012-05-18" "2011-03-12" "2013-12-07"
## [33006] "2012-05-18" "2012-05-18" "2013-12-07" "2011-03-12" "2012-05-18"
## [33011] "2012-11-18" "2012-05-18" "2012-11-18" "2013-06-15" "2014-01-22"
## [33016] "2013-06-05" "2013-06-05" "2014-01-22" "2013-06-15" "2013-06-05"
## [33021] "2013-06-15" "2011-04-17" "2012-06-10" "2011-04-17" "2011-04-17"
## [33026] "2013-01-09" "2013-01-09" "2012-06-10" "2012-06-10" "2011-07-24"
## [33031] "2012-06-10" "2012-06-10" "2011-07-24" "2013-01-09" "2011-07-24"
## [33036] "2014-01-04" "2011-08-28" "2014-01-04" "2011-08-28" "2011-02-05"
## [33041] "2012-03-02" "2012-02-22" "2011-02-05" "2011-02-05" "2012-03-02"
## [33046] "2012-02-22" "2011-02-05" "2011-07-22" "2011-07-22" "2011-07-22"
## [33051] "2011-02-05" "2011-02-05" "2012-04-13" "2012-04-13" "2012-04-13"
## [33056] "2012-04-13" "2012-04-13" "2013-05-24" "2013-05-24" "2012-04-12"
## [33061] "2012-04-12" "2012-04-12" "2013-04-03" "2013-04-10" "2013-04-10"
## [33066] "2013-04-03" "2014-02-07" "2013-11-05" "2013-11-05" "2013-11-05"
## [33071] "2013-11-05" "2014-02-07" "2011-10-28" "2011-10-28" "2011-10-28"
## [33076] "2011-10-28" "2011-10-28" "2012-10-31" "2012-10-22" "2012-10-22"
## [33081] "2012-10-22" "2012-10-22" "2012-10-31" "2012-04-27" "2012-10-22"
## [33086] "2012-10-31" "2012-04-27" "2011-10-24" "2011-10-24" "2011-10-24"
## [33091] "2011-10-24" "2011-10-24" "2011-08-19" "2011-12-12" "2011-08-19"
## [33096] "2011-12-12" "2011-08-19" "2014-01-16" "2014-01-16" "2014-01-16"
## [33101] "2014-01-16" "2014-01-16" "2011-07-25" "2012-03-15" "2011-09-29"
## [33106] "2011-09-29" "2012-03-15" "2011-09-29" "2012-03-15" "2011-07-25"
## [33111] "2012-03-15" "2011-04-30" "2012-03-15" "2011-04-30" "2011-07-25"
## [33116] "2012-03-15" "2011-07-25" "2011-10-10" "2013-01-01" "2013-01-01"
## [33121] "2013-03-23" "2013-03-23" "2013-01-01" "2011-10-10" "2013-03-23"
## [33126] "2011-10-10" "2013-01-01" "2013-01-01" "2013-03-23" "2013-03-23"
## [33131] "2011-10-10" "2011-11-07" "2011-11-07" "2011-11-07" "2013-02-09"
## [33136] "2013-02-09" "2012-03-06" "2012-02-03" "2013-08-02" "2012-02-03"
## [33141] "2013-08-02" "2012-03-06" "2012-03-06" "2012-03-06" "2013-08-02"
## [33146] "2013-08-02" "2013-08-02" "2011-05-05" "2011-05-05" "2011-02-18"
## [33151] "2011-02-18" "2011-01-25" "2011-01-25" "2012-08-20" "2012-08-20"
## [33156] "2013-08-22" "2013-08-22" "2011-01-25" "2012-08-20" "2012-08-20"
## [33161] "2012-08-20" "2013-08-22" "2011-01-25" "2012-08-20" "2011-01-25"
## [33166] "2013-08-22" "2013-08-22" "2011-01-25" "2012-10-29" "2012-10-29"
## [33171] "2012-10-29" "2012-08-29" "2012-08-29" "2012-02-16" "2012-08-29"
## [33176] "2012-02-16" "2012-08-29" "2012-02-16" "2012-08-29" "2012-08-29"
## [33181] "2011-05-12" "2013-11-18" "2011-12-16" "2011-06-05" "2013-03-21"
## [33186] "2011-06-05" "2013-12-15" "2011-12-16" "2011-05-12" "2013-07-23"
## [33191] "2013-12-15" "2013-11-18" "2013-12-15" "2013-03-27" "2013-03-21"
## [33196] "2013-03-21" "2012-09-03" "2011-06-05" "2013-07-23" "2013-11-18"
## [33201] "2013-07-23" "2013-11-18" "2013-03-27" "2013-07-23" "2013-07-23"
## [33206] "2013-03-27" "2012-09-03" "2012-09-03" "2012-09-03" "2012-09-03"
## [33211] "2012-09-03" "2014-01-13" "2014-01-13" "2014-01-13" "2014-01-13"
## [33216] "2014-01-13" "2011-07-09" "2011-07-09" "2013-12-21" "2012-02-27"
## [33221] "2011-07-09" "2013-12-21" "2012-02-27" "2013-12-21" "2013-12-21"
## [33226] "2011-07-09" "2013-10-24" "2013-11-01" "2013-11-01" "2013-11-01"
## [33231] "2013-10-24" "2013-10-24" "2012-03-04" "2012-03-04" "2013-07-24"
## [33236] "2013-07-29" "2013-07-29" "2013-07-24" "2014-02-03" "2013-07-24"
## [33241] "2014-02-03" "2014-02-03" "2013-07-29" "2011-03-05" "2013-04-14"
## [33246] "2011-03-05" "2013-04-14" "2013-04-14" "2011-03-05" "2013-04-14"
## [33251] "2011-03-05" "2013-04-14" "2012-02-20" "2012-02-20" "2011-03-05"
## [33256] "2013-04-14" "2011-05-21" "2013-11-07" "2013-11-07" "2011-05-21"
## [33261] "2013-11-07" "2012-02-08" "2012-02-08" "2011-08-30" "2011-08-30"
## [33266] "2011-08-30" "2013-02-06" "2011-08-30" "2011-08-30" "2013-02-06"
## [33271] "2011-12-22" "2011-12-22" "2011-12-22" "2012-03-19" "2012-03-19"
## [33276] "2012-03-19" "2011-01-25" "2013-01-12" "2011-01-25" "2011-01-25"
## [33281] "2013-01-12" "2013-01-18" "2011-01-25" "2013-01-12" "2013-01-18"
## [33286] "2013-01-18" "2013-05-02" "2013-05-02" "2011-08-07" "2011-08-07"
## [33291] "2013-05-02" "2012-09-18" "2011-08-07" "2011-03-12" "2011-03-12"
## [33296] "2011-03-12" "2011-08-07" "2012-09-18" "2011-03-12" "2011-08-07"
## [33301] "2011-03-12" "2011-05-26" "2011-05-26" "2011-05-20" "2011-05-26"
## [33306] "2011-05-20" "2011-05-20" "2011-05-20" "2011-05-26" "2011-05-26"
## [33311] "2011-05-26" "2011-05-20" "2011-05-20" "2011-04-11" "2011-04-11"
## [33316] "2011-04-11" "2011-04-11" "2011-04-11" "2012-03-16" "2012-03-13"
## [33321] "2012-03-13" "2012-03-16" "2012-03-13" "2012-03-16" "2012-08-14"
## [33326] "2012-08-14" "2011-04-13" "2011-04-13" "2012-07-12" "2011-04-13"
## [33331] "2012-07-12" "2011-03-06" "2011-03-06" "2012-09-14" "2011-12-26"
## [33336] "2011-03-06" "2011-12-14" "2012-09-14" "2012-09-14" "2011-03-06"
## [33341] "2012-09-14" "2011-12-14" "2011-12-14" "2011-12-26" "2012-09-14"
## [33346] "2011-12-14" "2011-03-06" "2011-03-06" "2011-12-14" "2013-05-06"
## [33351] "2014-01-21" "2012-05-23" "2012-05-23" "2014-01-21" "2013-05-06"
## [33356] "2012-05-23" "2014-01-21" "2011-03-01" "2011-02-25" "2011-05-18"
## [33361] "2011-05-18" "2011-03-01" "2011-05-18" "2011-05-18" "2011-05-18"
## [33366] "2011-02-25" "2011-02-10" "2011-03-03" "2011-02-10" "2011-01-31"
## [33371] "2011-02-10" "2011-01-31" "2011-02-10" "2011-01-31" "2011-01-31"
## [33376] "2011-03-03" "2011-03-03" "2013-05-22" "2013-02-14" "2011-12-07"
## [33381] "2013-02-14" "2013-02-14" "2011-12-07" "2013-05-22" "2011-12-06"
## [33386] "2011-12-06" "2013-05-22" "2013-05-22" "2013-05-22" "2011-12-06"
## [33391] "2011-12-07" "2011-06-28" "2012-09-20" "2012-09-20" "2012-09-20"
## [33396] "2012-09-20" "2011-06-28" "2012-09-20" "2011-06-28" "2012-09-20"
## [33401] "2011-06-25" "2011-06-25" "2011-06-25" "2014-01-03" "2014-01-02"
## [33406] "2014-01-03" "2014-01-02" "2012-03-26" "2014-01-02" "2014-01-03"
## [33411] "2012-03-26" "2013-11-07" "2013-11-07" "2012-08-30" "2012-05-14"
## [33416] "2012-05-14" "2012-05-14" "2012-08-30" "2012-05-14" "2012-05-14"
## [33421] "2012-08-30" "2013-01-08" "2012-04-08" "2013-01-08" "2013-01-08"
## [33426] "2012-04-16" "2012-04-08" "2011-04-29" "2011-04-29" "2012-04-16"
## [33431] "2012-11-04" "2012-11-04" "2012-11-04" "2012-11-04" "2012-11-04"
## [33436] "2012-06-06" "2011-10-07" "2011-10-07" "2012-06-06" "2011-10-07"
## [33441] "2011-10-07" "2011-10-07" "2012-08-27" "2012-07-28" "2012-08-27"
## [33446] "2012-09-04" "2012-08-27" "2012-07-28" "2012-09-04" "2012-08-27"
## [33451] "2012-07-28" "2012-09-04" "2012-08-27" "2012-07-28" "2012-09-04"
## [33456] "2012-07-28" "2012-09-04" "2012-03-02" "2013-10-22" "2013-10-22"
## [33461] "2013-10-22" "2013-10-22" "2012-03-02" "2012-03-02" "2014-02-15"
## [33466] "2012-09-26" "2014-02-15" "2012-10-06" "2014-02-15" "2012-09-26"
## [33471] "2012-09-26" "2012-10-06" "2012-10-06" "2012-09-20" "2012-09-23"
## [33476] "2012-09-20" "2012-09-23" "2012-04-03" "2012-09-20" "2012-09-20"
## [33481] "2012-09-23" "2012-10-22" "2012-09-23" "2012-09-23" "2012-04-03"
## [33486] "2012-10-22" "2012-09-20" "2012-04-03" "2012-04-03" "2012-04-03"
## [33491] "2012-04-03" "2011-12-29" "2011-12-29" "2011-12-29" "2011-12-28"
## [33496] "2011-12-28" "2011-12-28" "2011-12-28" "2012-10-05" "2012-10-11"
## [33501] "2011-12-28" "2012-10-05" "2012-10-11" "2014-02-07" "2014-02-07"
## [33506] "2012-09-08" "2014-02-07" "2013-01-26" "2014-02-07" "2014-02-07"
## [33511] "2013-01-26" "2013-01-26" "2012-09-08" "2013-03-21" "2013-03-21"
## [33516] "2013-03-21" "2013-03-21" "2011-03-27" "2011-03-27" "2011-03-27"
## [33521] "2011-03-27" "2013-08-06" "2013-07-27" "2013-07-27" "2011-03-27"
## [33526] "2013-08-06" "2012-03-17" "2012-03-17" "2012-03-17" "2012-03-17"
## [33531] "2012-03-17" "2012-11-13" "2013-11-28" "2013-11-28" "2012-11-13"
## [33536] "2013-11-28" "2013-11-28" "2013-11-28" "2012-12-24" "2012-12-24"
## [33541] "2012-12-24" "2012-12-24" "2013-01-14" "2013-01-14" "2012-12-24"
## [33546] "2012-05-30" "2012-05-30" "2013-10-06" "2013-10-06" "2013-10-06"
## [33551] "2012-01-23" "2012-01-23" "2014-01-20" "2014-01-20" "2011-03-12"
## [33556] "2011-03-12" "2011-08-16" "2012-01-23" "2014-01-20" "2014-01-20"
## [33561] "2011-08-16" "2014-01-20" "2011-10-30" "2012-04-16" "2012-04-16"
## [33566] "2011-10-30" "2011-10-30" "2011-07-04" "2012-03-05" "2012-04-16"
## [33571] "2011-07-04" "2011-07-04" "2012-04-16" "2012-03-05" "2011-10-30"
## [33576] "2011-10-30" "2012-03-05" "2011-07-04" "2013-08-20" "2013-08-10"
## [33581] "2013-08-10" "2014-02-05" "2014-02-05" "2014-02-05" "2013-08-20"
## [33586] "2013-05-13" "2013-05-13" "2013-05-13" "2013-05-13" "2013-05-13"
## [33591] "2012-10-20" "2012-10-20" "2012-10-20" "2012-05-23" "2012-01-22"
## [33596] "2013-08-19" "2012-05-23" "2012-05-23" "2013-04-07" "2013-08-19"
## [33601] "2012-01-22" "2013-08-19" "2013-08-19" "2013-04-07" "2013-08-19"
## [33606] "2011-09-15" "2011-09-15" "2013-10-03" "2011-09-15" "2013-10-03"
## [33611] "2013-10-03" "2013-10-03" "2013-10-03" "2013-10-03" "2013-12-28"
## [33616] "2012-05-19" "2012-05-28" "2012-05-19" "2013-12-28" "2013-12-28"
## [33621] "2012-05-28" "2012-05-18" "2012-05-19" "2012-05-28" "2012-05-18"
## [33626] "2013-12-28" "2012-05-28" "2012-05-28" "2012-05-28" "2012-05-18"
## [33631] "2011-02-28" "2011-10-05" "2011-02-28" "2011-10-05" "2012-08-16"
## [33636] "2012-08-16" "2012-08-31" "2012-08-16" "2012-08-31" "2013-03-18"
## [33641] "2013-03-18" "2013-11-06" "2012-05-28" "2013-11-06" "2013-11-06"
## [33646] "2013-03-18" "2013-11-06" "2013-11-06" "2012-05-28" "2012-08-16"
## [33651] "2012-08-16" "2012-08-16" "2012-11-17" "2012-09-09" "2012-10-28"
## [33656] "2012-09-09" "2012-11-17" "2012-10-28" "2012-10-28" "2012-10-28"
## [33661] "2011-12-27" "2011-12-27" "2012-12-04" "2011-11-20" "2012-12-04"
## [33666] "2011-12-27" "2011-11-20" "2011-08-24" "2013-10-08" "2013-10-08"
## [33671] "2011-08-24" "2013-10-08" "2011-08-24" "2011-04-12" "2013-10-08"
## [33676] "2011-04-12" "2011-08-26" "2011-08-26" "2011-08-26" "2011-12-24"
## [33681] "2013-11-07" "2012-12-30" "2013-11-07" "2012-11-26" "2013-11-07"
## [33686] "2013-11-07" "2013-12-22" "2013-12-22" "2012-02-25" "2012-02-27"
## [33691] "2011-12-24" "2012-02-27" "2013-11-07" "2012-11-26" "2012-12-30"
## [33696] "2012-02-25" "2012-11-26" "2012-02-25" "2012-02-27" "2013-07-04"
## [33701] "2013-07-04" "2012-04-17" "2012-04-17" "2013-07-04" "2013-08-15"
## [33706] "2013-08-15" "2013-07-25" "2013-07-25" "2013-07-25" "2011-08-14"
## [33711] "2011-08-14" "2014-01-13" "2013-11-12" "2014-01-13" "2011-06-21"
## [33716] "2011-05-21" "2013-11-12" "2011-11-22" "2011-08-14" "2011-08-14"
## [33721] "2011-06-21" "2014-01-13" "2011-11-22" "2014-01-13" "2014-01-13"
## [33726] "2011-05-21" "2011-05-21" "2011-08-14" "2013-11-12" "2011-05-23"
## [33731] "2011-05-24" "2013-01-08" "2011-05-23" "2011-05-24" "2013-01-08"
## [33736] "2011-05-24" "2013-01-08" "2011-05-23" "2013-05-21" "2013-05-29"
## [33741] "2013-05-21" "2011-02-24" "2013-05-29" "2013-05-29" "2011-02-24"
## [33746] "2013-05-21" "2013-05-29" "2013-05-21" "2013-08-05" "2013-12-29"
## [33751] "2011-10-28" "2013-12-29" "2012-07-20" "2011-10-28" "2013-08-05"
## [33756] "2011-10-28" "2012-07-20" "2013-08-05" "2013-08-05" "2011-10-28"
## [33761] "2013-08-05" "2011-10-30" "2011-10-30" "2011-08-14" "2011-08-14"
## [33766] "2011-08-14" "2011-08-14" "2011-10-30" "2011-08-14" "2011-10-30"
## [33771] "2011-10-30" "2012-02-08" "2012-02-08" "2013-05-02" "2011-06-01"
## [33776] "2011-06-01" "2011-06-01" "2012-02-08" "2013-05-02" "2013-05-02"
## [33781] "2013-05-02" "2013-05-02" "2013-06-20" "2013-06-20" "2011-04-06"
## [33786] "2011-04-06" "2011-04-13" "2011-04-13" "2011-04-06" "2011-04-13"
## [33791] "2013-08-16" "2013-08-16" "2012-01-24" "2012-01-25" "2012-01-24"
## [33796] "2012-01-25" "2012-01-24" "2012-01-25" "2011-07-11" "2011-07-11"
## [33801] "2014-02-08" "2011-10-11" "2011-10-11" "2012-03-16" "2014-02-08"
## [33806] "2013-11-22" "2011-10-11" "2013-11-22" "2011-07-11" "2011-10-11"
## [33811] "2011-07-10" "2011-10-11" "2013-11-22" "2012-03-16" "2012-05-29"
## [33816] "2012-05-29" "2011-10-11" "2011-07-10" "2012-05-29" "2012-03-16"
## [33821] "2012-03-16" "2011-07-10" "2012-03-16" "2011-03-30" "2013-05-29"
## [33826] "2011-03-30" "2012-01-03" "2011-03-30" "2012-01-03" "2013-05-29"
## [33831] "2011-10-19" "2012-10-05" "2012-10-05" "2012-10-05" "2011-10-19"
## [33836] "2012-10-05" "2011-11-13" "2012-10-05" "2011-11-13" "2011-11-13"
## [33841] "2011-10-19" "2013-05-16" "2013-05-16" "2012-10-30" "2012-10-30"
## [33846] "2013-03-17" "2013-03-17" "2013-03-17" "2012-03-13" "2011-05-07"
## [33851] "2011-05-12" "2011-05-07" "2012-03-13" "2011-05-12" "2011-05-07"
## [33856] "2011-05-07" "2011-05-12" "2013-09-12" "2012-03-13" "2011-05-07"
## [33861] "2013-09-12" "2011-05-12" "2013-09-12" "2013-09-12" "2011-05-12"
## [33866] "2013-09-12" "2013-03-31" "2011-12-14" "2011-12-14" "2013-05-17"
## [33871] "2013-05-17" "2013-05-17" "2013-05-17" "2013-05-17" "2013-03-31"
## [33876] "2011-02-06" "2011-02-06" "2011-02-06" "2012-04-17" "2012-02-28"
## [33881] "2012-02-28" "2012-04-15" "2012-04-15" "2013-11-14" "2012-04-17"
## [33886] "2012-04-17" "2012-02-28" "2012-02-19" "2012-02-19" "2012-04-15"
## [33891] "2012-04-15" "2012-04-17" "2012-04-17" "2012-02-19" "2012-02-19"
## [33896] "2012-04-15" "2012-02-19" "2012-02-28" "2012-02-28" "2012-04-15"
## [33901] "2012-04-17" "2013-11-14" "2014-01-08" "2013-11-16" "2013-01-27"
## [33906] "2012-02-01" "2013-11-16" "2012-02-01" "2012-02-01" "2014-01-08"
## [33911] "2012-02-01" "2014-01-08" "2012-02-01" "2013-01-27" "2013-01-31"
## [33916] "2011-11-26" "2013-01-31" "2011-11-26" "2011-11-26" "2013-01-31"
## [33921] "2013-01-31" "2013-12-27" "2013-12-27" "2013-12-27" "2012-01-14"
## [33926] "2012-01-14" "2012-01-14" "2013-11-11" "2013-11-11" "2012-01-14"
## [33931] "2012-01-14" "2011-04-29" "2011-08-18" "2013-12-18" "2011-04-29"
## [33936] "2013-12-24" "2011-08-18" "2013-12-24" "2011-08-18" "2013-02-12"
## [33941] "2013-02-12" "2011-04-29" "2013-02-12" "2013-12-24" "2013-12-18"
## [33946] "2011-04-29" "2013-02-12" "2013-02-12" "2013-12-18" "2011-04-29"
## [33951] "2013-05-09" "2012-10-19" "2012-10-19" "2012-10-19" "2013-05-09"
## [33956] "2013-05-09" "2014-01-31" "2014-01-31" "2012-10-06" "2011-03-02"
## [33961] "2012-10-06" "2011-03-02" "2012-03-23" "2012-03-23" "2012-03-23"
## [33966] "2013-01-21" "2013-01-21" "2013-01-21" "2013-01-21" "2013-01-21"
## [33971] "2013-01-21" "2011-10-31" "2011-10-31" "2011-08-21" "2011-10-31"
## [33976] "2011-10-31" "2011-08-21" "2011-08-21" "2011-10-31" "2013-12-05"
## [33981] "2013-12-05" "2011-08-21" "2011-08-21" "2011-10-31" "2013-12-05"
## [33986] "2013-03-20" "2013-03-20" "2013-03-20" "2013-07-11" "2013-03-20"
## [33991] "2013-02-07" "2013-03-20" "2013-03-20" "2013-07-11" "2013-07-11"
## [33996] "2013-07-11" "2013-02-07" "2013-07-11" "2013-02-07" "2012-04-14"
## [34001] "2012-04-14" "2011-10-16" "2011-10-16" "2012-02-04" "2011-02-15"
## [34006] "2011-02-15" "2012-02-04" "2012-02-04" "2011-02-15" "2011-02-15"
## [34011] "2011-02-15" "2011-11-10" "2014-02-13" "2011-11-10" "2011-11-10"
## [34016] "2014-02-13" "2011-09-06" "2013-09-26" "2013-09-26" "2012-08-19"
## [34021] "2011-09-06" "2012-08-19" "2011-09-06" "2011-04-19" "2012-08-19"
## [34026] "2012-08-19" "2011-09-06" "2011-04-19" "2011-04-19" "2011-09-06"
## [34031] "2012-08-19" "2013-09-26" "2011-07-31" "2011-07-31" "2013-04-13"
## [34036] "2013-04-13" "2012-02-01" "2012-01-25" "2012-02-01" "2012-02-01"
## [34041] "2013-10-09" "2012-02-02" "2012-01-25" "2012-01-25" "2013-10-09"
## [34046] "2012-11-18" "2012-11-18" "2012-02-02" "2012-11-18" "2012-02-02"
## [34051] "2012-11-18" "2012-01-25" "2012-01-25" "2012-02-01" "2012-11-18"
## [34056] "2012-02-02" "2012-02-01" "2012-02-02" "2013-09-15" "2013-09-15"
## [34061] "2013-09-15" "2013-09-15" "2013-08-26" "2014-02-03" "2014-02-03"
## [34066] "2013-09-15" "2013-08-27" "2013-08-27" "2014-02-03" "2014-02-03"
## [34071] "2014-02-03" "2013-08-26" "2011-11-27" "2011-11-27" "2011-11-27"
## [34076] "2011-11-27" "2013-02-09" "2013-02-09" "2013-02-09" "2012-04-05"
## [34081] "2012-04-05" "2012-03-08" "2011-11-20" "2011-09-19" "2012-04-05"
## [34086] "2013-05-31" "2012-03-08" "2012-03-08" "2013-05-31" "2011-09-23"
## [34091] "2011-11-20" "2011-09-19" "2011-09-23" "2011-11-20" "2011-08-07"
## [34096] "2012-12-25" "2011-08-07" "2011-08-07" "2011-08-07" "2011-08-07"
## [34101] "2012-12-25" "2011-05-08" "2011-05-08" "2011-05-08" "2012-01-12"
## [34106] "2011-05-08" "2011-02-21" "2011-05-08" "2012-01-12" "2011-02-21"
## [34111] "2012-06-17" "2011-07-01" "2012-06-17" "2012-01-02" "2012-01-02"
## [34116] "2012-01-02" "2011-07-01" "2012-01-02" "2013-11-16" "2013-11-16"
## [34121] "2013-10-10" "2013-11-16" "2011-10-22" "2013-10-10" "2013-11-16"
## [34126] "2013-10-10" "2013-11-16" "2011-10-22" "2011-05-08" "2011-05-08"
## [34131] "2012-09-22" "2012-09-15" "2011-05-08" "2012-09-22" "2012-09-15"
## [34136] "2011-05-08" "2011-10-23" "2011-10-23" "2013-08-15" "2013-07-20"
## [34141] "2013-10-21" "2013-02-03" "2013-07-20" "2013-02-03" "2013-07-20"
## [34146] "2013-08-15" "2013-02-04" "2013-07-20" "2013-08-15" "2013-07-20"
## [34151] "2013-02-04" "2013-02-03" "2013-08-15" "2013-08-15" "2013-10-21"
## [34156] "2013-02-04" "2012-03-29" "2012-03-29" "2012-03-29" "2012-10-21"
## [34161] "2013-12-04" "2012-10-21" "2012-10-21" "2013-12-04" "2013-12-04"
## [34166] "2012-10-19" "2012-10-19" "2012-10-19" "2012-06-16" "2012-06-16"
## [34171] "2013-08-01" "2012-06-16" "2013-08-01" "2013-11-25" "2013-11-25"
## [34176] "2013-12-05" "2013-11-25" "2013-12-05" "2013-11-25" "2013-12-05"
## [34181] "2013-11-25" "2013-12-05" "2013-11-25" "2013-12-05" "2013-12-05"
## [34186] "2012-02-19" "2013-03-05" "2012-02-19" "2013-05-31" "2013-05-31"
## [34191] "2013-08-06" "2013-03-05" "2012-02-19" "2013-05-31" "2013-03-05"
## [34196] "2013-08-06" "2013-05-31" "2013-03-05" "2013-05-31" "2013-10-25"
## [34201] "2013-10-25" "2013-10-25" "2013-10-25" "2012-01-14" "2012-01-14"
## [34206] "2013-10-25" "2012-01-14" "2013-10-25" "2012-01-14" "2012-01-02"
## [34211] "2012-01-02" "2012-01-02" "2013-06-26" "2013-06-16" "2013-06-26"
## [34216] "2012-05-07" "2012-05-07" "2013-06-26" "2013-06-16" "2013-06-16"
## [34221] "2012-12-13" "2012-12-23" "2012-10-24" "2012-11-03" "2012-11-03"
## [34226] "2012-12-23" "2012-11-03" "2012-12-13" "2012-10-24" "2012-11-03"
## [34231] "2012-11-03" "2012-12-13" "2011-10-31" "2011-10-31" "2013-11-14"
## [34236] "2012-01-09" "2011-10-31" "2013-11-14" "2013-11-14" "2011-10-31"
## [34241] "2012-01-09" "2012-01-11" "2012-01-11" "2011-10-31" "2012-01-11"
## [34246] "2013-11-14" "2013-11-14" "2012-01-09" "2013-04-02" "2013-12-15"
## [34251] "2013-04-02" "2013-04-02" "2013-12-15" "2013-03-14" "2013-03-14"
## [34256] "2013-12-03" "2013-03-14" "2013-03-14" "2013-12-03" "2013-12-03"
## [34261] "2013-08-02" "2013-07-24" "2013-04-19" "2014-01-08" "2013-04-19"
## [34266] "2014-01-08" "2013-07-24" "2014-01-08" "2013-04-19" "2013-07-24"
## [34271] "2013-07-24" "2011-09-06" "2013-08-02" "2013-08-02" "2011-09-06"
## [34276] "2013-08-02" "2013-07-24" "2013-08-02" "2012-10-08" "2014-02-06"
## [34281] "2011-07-31" "2011-07-31" "2011-07-31" "2011-07-31" "2014-02-06"
## [34286] "2014-02-06" "2012-10-08" "2014-02-06" "2011-07-31" "2011-09-25"
## [34291] "2011-09-25" "2013-02-03" "2013-02-03" "2011-09-25" "2013-02-03"
## [34296] "2013-12-11" "2013-12-11" "2013-02-23" "2013-02-23" "2012-11-11"
## [34301] "2012-11-11" "2012-11-11" "2013-06-01" "2013-06-01" "2013-06-01"
## [34306] "2012-04-04" "2013-06-01" "2013-06-01" "2012-04-04" "2012-06-04"
## [34311] "2012-06-04" "2011-09-25" "2011-09-25" "2011-09-25" "2013-03-16"
## [34316] "2013-03-16" "2013-05-20" "2012-07-18" "2012-05-11" "2011-03-13"
## [34321] "2012-05-16" "2013-05-20" "2013-05-20" "2012-05-11" "2012-07-18"
## [34326] "2011-03-13" "2013-05-20" "2012-05-16" "2013-05-20" "2011-09-24"
## [34331] "2014-01-01" "2014-01-01" "2013-12-29" "2014-01-01" "2011-09-24"
## [34336] "2013-12-29" "2013-12-29" "2012-05-23" "2013-03-15" "2012-05-23"
## [34341] "2012-05-23" "2013-03-15" "2013-03-15" "2012-05-23" "2012-05-23"
## [34346] "2013-03-15" "2012-06-27" "2013-03-15" "2012-06-27" "2013-03-15"
## [34351] "2011-11-05" "2011-11-05" "2012-06-27" "2011-11-05" "2013-10-01"
## [34356] "2013-10-01" "2013-07-10" "2012-05-10" "2012-05-10" "2011-08-03"
## [34361] "2014-01-11" "2012-05-10" "2011-08-03" "2012-01-10" "2013-07-10"
## [34366] "2014-01-11" "2011-08-03" "2011-08-03" "2014-01-11" "2012-01-10"
## [34371] "2011-08-03" "2014-01-11" "2013-07-30" "2013-07-30" "2011-11-03"
## [34376] "2011-11-03" "2012-04-17" "2013-07-30" "2012-04-17" "2011-11-03"
## [34381] "2014-01-07" "2014-01-07" "2014-01-07" "2011-11-24" "2011-06-29"
## [34386] "2011-06-29" "2011-06-29" "2014-01-07" "2011-11-24" "2014-01-07"
## [34391] "2011-06-29" "2014-01-07" "2011-11-24" "2011-09-07" "2011-04-26"
## [34396] "2011-09-07" "2011-09-07" "2011-09-07" "2011-04-26" "2011-09-07"
## [34401] "2011-04-26" "2011-03-31" "2011-03-24" "2011-03-31" "2011-03-24"
## [34406] "2012-09-04" "2011-10-23" "2011-08-18" "2011-08-18" "2012-09-04"
## [34411] "2011-08-18" "2011-10-23" "2011-10-23" "2012-09-04" "2011-08-04"
## [34416] "2011-08-04" "2011-08-04" "2011-08-04" "2011-08-04" "2013-12-07"
## [34421] "2013-12-07" "2012-09-16" "2012-05-11" "2012-05-11" "2012-09-16"
## [34426] "2012-09-16" "2012-05-11" "2012-05-11" "2011-08-02" "2012-09-16"
## [34431] "2012-05-11" "2012-05-11" "2011-08-02" "2012-09-16" "2011-08-02"
## [34436] "2011-08-02" "2011-08-02" "2012-10-20" "2014-01-23" "2012-10-20"
## [34441] "2014-01-23" "2014-01-23" "2012-10-20" "2012-10-20" "2014-01-23"
## [34446] "2012-10-20" "2013-12-28" "2011-03-19" "2011-03-19" "2013-12-28"
## [34451] "2013-12-28" "2011-03-19" "2012-11-08" "2012-11-08" "2012-11-08"
## [34456] "2012-11-08" "2011-09-04" "2012-06-13" "2012-06-13" "2011-05-14"
## [34461] "2011-09-04" "2013-03-21" "2011-09-04" "2011-09-04" "2012-06-13"
## [34466] "2011-09-04" "2012-06-13" "2012-06-13" "2013-03-21" "2012-06-13"
## [34471] "2011-05-14" "2013-03-21" "2011-05-14" "2011-05-14" "2012-04-26"
## [34476] "2013-07-11" "2013-07-11" "2013-07-11" "2012-04-26" "2012-04-26"
## [34481] "2012-10-06" "2013-10-24" "2012-04-18" "2012-04-18" "2012-04-26"
## [34486] "2013-10-24" "2013-10-22" "2013-07-11" "2012-10-06" "2012-04-26"
## [34491] "2012-04-18" "2013-10-22" "2013-10-22" "2013-10-24" "2012-04-18"
## [34496] "2012-04-18" "2013-07-11" "2011-12-12" "2012-04-22" "2011-12-12"
## [34501] "2012-04-22" "2013-06-21" "2013-03-07" "2012-04-25" "2012-04-25"
## [34506] "2013-03-31" "2013-06-21" "2013-03-31" "2013-03-07" "2013-03-07"
## [34511] "2012-04-25" "2013-03-31" "2012-01-11" "2012-01-21" "2012-01-21"
## [34516] "2012-01-11" "2011-05-03" "2014-02-08" "2011-05-03" "2014-02-08"
## [34521] "2011-03-01" "2011-03-01" "2013-04-28" "2013-04-28" "2011-03-01"
## [34526] "2012-02-12" "2011-08-17" "2011-08-17" "2012-02-06" "2011-08-17"
## [34531] "2011-08-17" "2013-11-13" "2013-11-13" "2013-11-13" "2011-08-17"
## [34536] "2012-02-12" "2013-11-13" "2013-11-13" "2012-02-06" "2014-01-31"
## [34541] "2012-08-23" "2012-08-23" "2014-01-31" "2014-01-31" "2012-08-23"
## [34546] "2012-08-23" "2012-08-23" "2014-01-31" "2014-01-31" "2011-01-26"
## [34551] "2011-09-06" "2011-01-26" "2011-01-26" "2011-01-26" "2011-01-26"
## [34556] "2011-09-08" "2011-01-26" "2011-09-08" "2011-09-08" "2011-09-06"
## [34561] "2011-09-06" "2011-03-27" "2011-03-27" "2013-12-27" "2013-12-26"
## [34566] "2013-12-27" "2013-12-26" "2013-12-26" "2013-09-03" "2011-08-14"
## [34571] "2013-09-03" "2011-08-14" "2013-09-03" "2013-09-03" "2011-08-14"
## [34576] "2013-09-03" "2013-12-27" "2011-08-14" "2012-11-01" "2012-11-01"
## [34581] "2012-11-01" "2012-11-01" "2012-11-01" "2012-11-01" "2011-02-18"
## [34586] "2011-02-18" "2011-12-17" "2011-12-17" "2011-12-17" "2011-12-17"
## [34591] "2011-12-17" "2012-06-15" "2012-03-06" "2011-12-22" "2012-06-15"
## [34596] "2012-06-15" "2012-06-15" "2012-03-06" "2011-12-22" "2011-03-01"
## [34601] "2012-06-15" "2011-03-01" "2011-02-19" "2012-03-06" "2011-12-22"
## [34606] "2011-02-19" "2013-09-18" "2013-08-10" "2013-09-18" "2013-08-10"
## [34611] "2013-08-10" "2013-09-18" "2012-09-03" "2013-08-09" "2012-05-20"
## [34616] "2012-05-20" "2012-04-27" "2012-04-27" "2013-08-09" "2012-09-03"
## [34621] "2012-05-20" "2012-04-27" "2012-05-20" "2012-05-20" "2012-05-20"
## [34626] "2013-08-09" "2013-07-28" "2013-07-28" "2013-07-28" "2011-11-10"
## [34631] "2011-11-10" "2011-11-10" "2011-11-10" "2014-01-20" "2011-11-10"
## [34636] "2011-11-10" "2014-01-20" "2013-04-13" "2013-04-13" "2013-11-28"
## [34641] "2013-04-13" "2013-04-13" "2011-11-13" "2011-11-13" "2013-04-13"
## [34646] "2011-11-13" "2013-11-28" "2013-11-10" "2013-11-10" "2013-08-26"
## [34651] "2012-08-17" "2014-01-11" "2014-01-11" "2013-08-26" "2011-02-26"
## [34656] "2011-02-26" "2011-03-18" "2012-08-17" "2011-03-18" "2011-03-18"
## [34661] "2012-06-17" "2012-06-17" "2012-02-04" "2012-02-04" "2012-06-17"
## [34666] "2012-06-17" "2012-06-17" "2012-02-04" "2012-02-04" "2013-11-26"
## [34671] "2011-02-10" "2011-02-10" "2012-11-05" "2013-11-26" "2013-11-26"
## [34676] "2012-11-05" "2012-09-28" "2012-09-28" "2012-09-28" "2012-09-28"
## [34681] "2012-09-28" "2012-11-03" "2012-11-03" "2012-11-03" "2012-09-28"
## [34686] "2011-11-19" "2011-11-19" "2011-04-15" "2012-04-17" "2012-08-12"
## [34691] "2012-08-12" "2012-07-28" "2012-07-28" "2012-08-12" "2011-04-15"
## [34696] "2012-04-17" "2012-04-17" "2012-04-17" "2012-04-17" "2013-09-14"
## [34701] "2013-12-12" "2013-12-12" "2013-09-14" "2013-06-21" "2013-06-21"
## [34706] "2013-06-21" "2011-11-30" "2013-06-21" "2013-06-21" "2013-06-21"
## [34711] "2011-11-30" "2011-11-30" "2013-04-15" "2013-04-15" "2012-12-25"
## [34716] "2012-12-25" "2013-11-23" "2013-11-23" "2012-01-18" "2012-01-18"
## [34721] "2011-04-03" "2011-04-03" "2011-04-03" "2012-06-23" "2012-06-15"
## [34726] "2013-01-25" "2012-06-15" "2012-06-15" "2012-06-15" "2012-06-23"
## [34731] "2012-06-23" "2012-06-23" "2013-01-25" "2013-01-25" "2012-12-10"
## [34736] "2012-06-28" "2012-03-12" "2012-06-28" "2012-06-28" "2012-12-10"
## [34741] "2012-03-12" "2012-05-07" "2013-01-07" "2013-01-07" "2012-05-07"
## [34746] "2013-01-07" "2013-01-07" "2013-01-07" "2011-08-18" "2011-08-18"
## [34751] "2011-08-18" "2012-01-31" "2011-08-26" "2011-08-18" "2011-08-18"
## [34756] "2012-01-31" "2011-08-26" "2011-08-26" "2011-08-26" "2011-08-26"
## [34761] "2012-05-17" "2012-10-10" "2011-11-05" "2012-05-17" "2012-05-17"
## [34766] "2012-05-17" "2011-11-06" "2011-11-06" "2011-11-05" "2012-05-17"
## [34771] "2011-11-05" "2011-11-05" "2012-10-10" "2012-05-17" "2011-11-05"
## [34776] "2011-11-05" "2011-11-06" "2012-10-10" "2012-03-30" "2012-03-30"
## [34781] "2011-03-21" "2013-09-25" "2011-03-21" "2011-03-21" "2011-03-21"
## [34786] "2011-07-27" "2013-09-25" "2011-03-21" "2013-09-25" "2012-03-30"
## [34791] "2012-03-30" "2011-07-27" "2011-10-05" "2011-10-05" "2011-10-05"
## [34796] "2011-10-05" "2011-10-05" "2013-11-10" "2013-11-10" "2013-11-10"
## [34801] "2012-05-09" "2012-05-09" "2013-11-10" "2013-06-13" "2011-02-16"
## [34806] "2013-08-02" "2013-08-02" "2013-06-13" "2013-11-10" "2011-02-16"
## [34811] "2012-05-09" "2013-08-02" "2011-02-16" "2013-06-13" "2011-02-16"
## [34816] "2011-02-16" "2012-10-13" "2012-10-13" "2012-10-13" "2013-03-02"
## [34821] "2012-10-13" "2013-03-02" "2012-10-13" "2012-05-03" "2013-02-18"
## [34826] "2013-02-18" "2013-02-18" "2013-02-18" "2013-02-18" "2012-05-03"
## [34831] "2011-12-11" "2012-01-23" "2013-03-06" "2013-03-06" "2012-11-11"
## [34836] "2012-11-11" "2011-12-11" "2011-12-11" "2012-11-11" "2013-08-24"
## [34841] "2012-01-23" "2011-12-11" "2011-12-11" "2013-08-24" "2013-08-24"
## [34846] "2013-08-24" "2012-01-23" "2013-03-06" "2013-03-06" "2013-08-24"
## [34851] "2011-10-06" "2014-01-14" "2014-01-14" "2011-07-19" "2014-01-14"
## [34856] "2011-07-19" "2011-10-06" "2011-10-06" "2011-10-06" "2011-10-06"
## [34861] "2012-09-09" "2012-09-09" "2012-09-09" "2011-07-27" "2011-07-27"
## [34866] "2013-01-30" "2012-10-17" "2012-10-17" "2013-07-19" "2013-01-30"
## [34871] "2013-01-30" "2013-07-19" "2012-10-17" "2012-10-17" "2012-10-17"
## [34876] "2013-07-19" "2013-07-19" "2013-08-17" "2013-01-11" "2013-08-17"
## [34881] "2013-08-17" "2013-01-11" "2013-01-11" "2013-01-11" "2013-01-11"
## [34886] "2012-01-19" "2012-01-19" "2012-01-19" "2012-01-19" "2012-01-19"
## [34891] "2013-09-09" "2011-04-22" "2012-09-04" "2013-09-09" "2011-04-22"
## [34896] "2012-09-04" "2011-12-21" "2011-02-08" "2012-12-28" "2011-12-21"
## [34901] "2012-12-28" "2011-12-21" "2011-02-08" "2012-09-12" "2012-09-12"
## [34906] "2012-09-12" "2012-09-12" "2012-01-21" "2012-04-10" "2012-08-30"
## [34911] "2013-07-02" "2013-07-02" "2012-04-10" "2013-07-02" "2012-08-30"
## [34916] "2012-04-10" "2012-04-10" "2012-09-03" "2012-09-03" "2012-08-30"
## [34921] "2012-01-21" "2012-04-10" "2012-09-03" "2012-09-06" "2013-09-08"
## [34926] "2012-09-06" "2012-09-06" "2012-09-06" "2012-09-06" "2013-09-08"
## [34931] "2014-01-02" "2014-01-02" "2014-01-02" "2014-01-02" "2013-11-20"
## [34936] "2013-11-20" "2014-01-02" "2012-01-23" "2012-12-29" "2012-12-29"
## [34941] "2012-01-23" "2012-12-29" "2012-12-29" "2012-12-29" "2011-06-23"
## [34946] "2011-06-23" "2011-06-23" "2011-06-23" "2011-06-23" "2012-12-05"
## [34951] "2012-12-05" "2014-01-07" "2014-01-07" "2011-03-22" "2011-03-22"
## [34956] "2014-01-07" "2012-04-27" "2011-12-06" "2012-04-10" "2012-04-10"
## [34961] "2012-04-27" "2011-12-06" "2012-12-12" "2012-04-27" "2012-04-10"
## [34966] "2012-12-12" "2011-12-06" "2011-12-06" "2011-12-06" "2012-04-27"
## [34971] "2012-12-12" "2011-12-06" "2012-04-27" "2012-12-21" "2012-12-21"
## [34976] "2012-12-21" "2012-12-21" "2011-03-08" "2012-08-04" "2013-05-10"
## [34981] "2012-08-04" "2012-08-04" "2011-03-08" "2013-05-10" "2013-05-10"
## [34986] "2011-09-12" "2013-04-17" "2012-01-30" "2011-09-12" "2013-04-17"
## [34991] "2012-01-30" "2014-02-18" "2011-11-22" "2014-02-18" "2011-11-22"
## [34996] "2013-10-29" "2013-10-29" "2013-10-29" "2012-08-06" "2012-08-06"
## [35001] "2012-08-06" "2013-03-23" "2014-02-06" "2013-03-23" "2013-03-23"
## [35006] "2014-02-06" "2014-02-06" "2014-02-06" "2014-02-06" "2011-11-29"
## [35011] "2013-01-21" "2013-01-21" "2011-11-29" "2013-10-30" "2013-10-30"
## [35016] "2013-01-21" "2013-10-30" "2013-09-21" "2013-09-21" "2013-09-21"
## [35021] "2012-06-13" "2013-09-21" "2013-09-21" "2012-06-13" "2012-06-13"
## [35026] "2012-11-20" "2013-07-25" "2012-11-20" "2013-08-31" "2013-07-25"
## [35031] "2013-08-31" "2013-07-25" "2011-03-15" "2011-03-15" "2013-01-04"
## [35036] "2013-01-04" "2013-01-04" "2011-03-15" "2012-08-31" "2012-08-31"
## [35041] "2012-08-24" "2012-03-24" "2012-08-24" "2012-03-24" "2012-08-24"
## [35046] "2012-03-24" "2012-11-25" "2012-11-25" "2012-11-25" "2012-04-30"
## [35051] "2012-04-30" "2012-11-25" "2012-11-25" "2012-04-30" "2012-04-30"
## [35056] "2012-04-30" "2011-06-19" "2011-06-19" "2012-06-23" "2013-02-28"
## [35061] "2011-06-19" "2011-06-19" "2012-06-23" "2011-06-19" "2012-06-23"
## [35066] "2013-02-28" "2012-06-23" "2013-08-31" "2013-08-31" "2013-08-31"
## [35071] "2012-09-10" "2012-09-10" "2012-09-10" "2012-09-10" "2012-09-10"
## [35076] "2011-09-08" "2011-09-08" "2011-12-28" "2013-10-15" "2013-10-15"
## [35081] "2011-12-28" "2013-10-15" "2013-10-15" "2013-10-15" "2011-04-09"
## [35086] "2011-04-09" "2012-03-24" "2011-04-09" "2012-09-11" "2012-09-11"
## [35091] "2011-04-09" "2012-03-24" "2012-03-24" "2011-04-09" "2013-08-04"
## [35096] "2013-08-04" "2011-07-17" "2011-03-28" "2012-08-18" "2011-07-17"
## [35101] "2012-08-18" "2011-03-28" "2011-03-28" "2011-03-28" "2012-06-18"
## [35106] "2013-01-14" "2013-01-14" "2012-06-18" "2013-01-14" "2012-11-08"
## [35111] "2012-10-11" "2012-11-11" "2013-01-14" "2012-11-08" "2012-11-11"
## [35116] "2012-11-14" "2012-11-14" "2012-10-11" "2013-03-10" "2013-03-10"
## [35121] "2013-03-10" "2012-01-03" "2012-01-03" "2012-01-03" "2013-08-03"
## [35126] "2013-08-03" "2012-12-24" "2013-12-20" "2014-01-29" "2012-12-24"
## [35131] "2014-01-29" "2014-01-29" "2013-12-20" "2014-01-29" "2011-04-19"
## [35136] "2012-12-24" "2011-04-19" "2013-10-07" "2013-10-07" "2013-10-07"
## [35141] "2013-10-07" "2013-10-07" "2012-01-13" "2012-01-13" "2012-08-27"
## [35146] "2012-01-13" "2012-08-27" "2012-01-13" "2011-08-15" "2012-08-27"
## [35151] "2011-08-15" "2012-01-07" "2012-01-07" "2012-01-07" "2012-01-13"
## [35156] "2011-08-15" "2012-01-07" "2012-01-07" "2013-03-22" "2012-11-09"
## [35161] "2012-01-16" "2011-11-14" "2012-01-16" "2013-03-22" "2012-11-09"
## [35166] "2013-09-28" "2013-03-22" "2013-09-28" "2012-11-09" "2013-03-22"
## [35171] "2011-11-22" "2011-10-31" "2011-11-14" "2011-11-22" "2013-03-22"
## [35176] "2012-01-21" "2011-10-31" "2011-10-31" "2011-10-31" "2011-10-31"
## [35181] "2012-01-21" "2012-04-22" "2012-04-22" "2014-01-18" "2012-01-31"
## [35186] "2014-01-18" "2012-01-31" "2014-01-18" "2012-04-22" "2014-01-18"
## [35191] "2013-12-30" "2013-04-17" "2012-01-31" "2013-04-17" "2013-04-17"
## [35196] "2012-04-22" "2014-01-18" "2013-04-17" "2013-04-17" "2013-12-30"
## [35201] "2012-01-31" "2013-12-30" "2012-10-31" "2012-12-12" "2012-09-21"
## [35206] "2012-09-21" "2012-12-12" "2012-09-21" "2012-12-12" "2013-10-08"
## [35211] "2012-10-31" "2013-10-08" "2012-12-12" "2012-10-31" "2012-10-31"
## [35216] "2012-12-12" "2012-10-31" "2012-12-12" "2012-01-12" "2012-01-12"
## [35221] "2011-05-18" "2011-05-18" "2012-01-12" "2012-01-12" "2011-05-18"
## [35226] "2012-01-12" "2011-05-18" "2011-05-18" "2013-09-09" "2011-10-08"
## [35231] "2011-10-08" "2013-09-09" "2013-12-13" "2013-12-13" "2012-11-16"
## [35236] "2012-11-16" "2012-11-16" "2012-11-16" "2012-11-16" "2012-01-11"
## [35241] "2012-01-07" "2012-01-07" "2012-01-11" "2013-08-14" "2013-08-14"
## [35246] "2013-08-14" "2013-08-14" "2011-03-23" "2013-08-14" "2011-03-23"
## [35251] "2013-08-14" "2012-02-24" "2012-06-08" "2012-11-08" "2012-06-08"
## [35256] "2012-11-08" "2012-06-08" "2012-06-08" "2012-02-24" "2012-02-24"
## [35261] "2012-06-08" "2013-12-09" "2014-02-16" "2012-09-23" "2012-09-23"
## [35266] "2014-02-16" "2013-12-09" "2014-02-24" "2012-09-23" "2012-10-02"
## [35271] "2014-02-16" "2012-10-02" "2014-02-23" "2014-02-23" "2012-09-23"
## [35276] "2012-10-02" "2014-02-16" "2012-09-23" "2014-02-23" "2014-02-24"
## [35281] "2014-02-24" "2013-12-09" "2012-09-23" "2014-02-23" "2012-10-02"
## [35286] "2012-10-02" "2012-10-02" "2013-12-09" "2014-02-24" "2013-12-09"
## [35291] "2011-08-04" "2011-08-04" "2011-08-04" "2011-08-04" "2011-10-13"
## [35296] "2013-05-18" "2012-04-21" "2011-10-13" "2012-04-21" "2012-04-21"
## [35301] "2012-04-21" "2011-10-13" "2013-05-18" "2011-10-13" "2011-10-13"
## [35306] "2012-04-21" "2013-05-18" "2013-05-18" "2013-05-18" "2013-05-18"
## [35311] "2012-04-21" "2012-07-17" "2013-05-06" "2011-09-13" "2012-07-17"
## [35316] "2011-09-13" "2013-05-06" "2011-09-13" "2011-09-13" "2013-05-06"
## [35321] "2011-09-13" "2012-07-17" "2014-01-15" "2012-03-20" "2012-03-20"
## [35326] "2011-02-01" "2014-01-15" "2012-03-20" "2012-04-23" "2014-01-15"
## [35331] "2012-03-20" "2011-03-22" "2012-04-23" "2011-02-01" "2011-03-22"
## [35336] "2014-01-15" "2012-03-20" "2012-04-23" "2014-01-15" "2012-04-23"
## [35341] "2011-02-01" "2012-02-15" "2013-09-11" "2012-02-15" "2012-02-15"
## [35346] "2012-02-15" "2013-08-04" "2013-08-04" "2013-08-04" "2013-08-04"
## [35351] "2013-09-11" "2012-02-15" "2013-08-04" "2013-08-04" "2012-02-15"
## [35356] "2013-09-11" "2011-08-15" "2011-08-15" "2011-07-30" "2011-11-30"
## [35361] "2011-07-30" "2011-03-24" "2011-11-30" "2014-01-01" "2014-01-01"
## [35366] "2011-12-02" "2011-03-24" "2011-12-02" "2011-08-15" "2011-08-15"
## [35371] "2011-03-24" "2011-08-15" "2011-07-30" "2011-07-30" "2011-07-30"
## [35376] "2014-01-01" "2011-07-30" "2013-05-20" "2013-05-20" "2013-05-20"
## [35381] "2013-05-20" "2012-02-11" "2012-02-11" "2012-02-11" "2013-05-20"
## [35386] "2011-04-27" "2013-11-18" "2011-04-27" "2012-06-17" "2013-11-18"
## [35391] "2013-10-01" "2012-06-17" "2013-10-01" "2011-04-27" "2012-06-23"
## [35396] "2013-11-18" "2012-06-17" "2012-06-23" "2013-11-22" "2013-11-22"
## [35401] "2013-11-22" "2013-11-22" "2011-03-31" "2013-11-18" "2013-10-01"
## [35406] "2013-10-01" "2011-09-29" "2011-04-27" "2011-03-31" "2013-11-22"
## [35411] "2011-04-27" "2013-10-01" "2011-09-29" "2011-09-29" "2013-11-18"
## [35416] "2012-05-02" "2012-05-02" "2012-05-02" "2012-05-02" "2012-05-02"
## [35421] "2011-03-13" "2011-03-13" "2011-03-13" "2011-03-13" "2011-03-13"
## [35426] "2011-04-11" "2011-04-11" "2011-04-11" "2012-01-02" "2012-01-02"
## [35431] "2011-07-10" "2011-07-10" "2012-01-02" "2011-07-10" "2011-07-20"
## [35436] "2011-07-20" "2011-07-20" "2011-07-20" "2011-07-20" "2012-06-03"
## [35441] "2012-06-03" "2013-07-29" "2013-07-29" "2012-06-03" "2013-07-29"
## [35446] "2013-07-29" "2013-07-29" "2013-07-29" "2013-06-03" "2013-06-03"
## [35451] "2013-06-03" "2013-06-03" "2011-08-28" "2011-08-28" "2011-08-28"
## [35456] "2013-01-05" "2013-10-26" "2011-07-10" "2011-07-10" "2013-10-26"
## [35461] "2013-01-05" "2011-07-10" "2013-01-05" "2011-07-10" "2013-01-05"
## [35466] "2011-07-10" "2013-01-05" "2012-01-24" "2012-01-24" "2012-01-24"
## [35471] "2012-01-24" "2012-01-24" "2012-01-24" "2013-06-25" "2013-06-25"
## [35476] "2013-06-25" "2013-06-25" "2011-04-26" "2011-06-23" "2011-06-23"
## [35481] "2011-06-23" "2011-06-23" "2011-04-26" "2011-11-14" "2013-11-29"
## [35486] "2011-11-14" "2011-11-14" "2011-11-14" "2011-11-14" "2013-11-29"
## [35491] "2012-08-03" "2012-08-03" "2012-08-03" "2012-08-03" "2012-08-03"
## [35496] "2012-08-25" "2012-08-25" "2012-08-25" "2012-08-25" "2013-03-20"
## [35501] "2012-09-06" "2013-03-20" "2013-03-20" "2012-09-06" "2012-09-06"
## [35506] "2012-09-06" "2011-02-04" "2011-10-24" "2011-02-04" "2011-02-04"
## [35511] "2011-10-24" "2011-10-24" "2012-04-22" "2012-05-24" "2012-05-24"
## [35516] "2012-03-05" "2012-05-24" "2012-03-05" "2012-03-05" "2012-07-03"
## [35521] "2012-07-03" "2012-03-05" "2012-03-05" "2012-07-03" "2012-05-24"
## [35526] "2012-04-22" "2011-08-18" "2011-08-18" "2011-08-18" "2011-02-07"
## [35531] "2011-02-07" "2011-02-09" "2011-02-09" "2011-02-07" "2011-02-09"
## [35536] "2013-01-16" "2012-08-04" "2011-12-28" "2011-12-28" "2012-08-04"
## [35541] "2011-12-28" "2013-01-16" "2012-08-04" "2013-01-16" "2014-01-01"
## [35546] "2014-01-01" "2012-07-25" "2013-01-16" "2013-01-16" "2012-08-04"
## [35551] "2012-08-04" "2012-08-04" "2011-12-28" "2014-01-01" "2012-07-25"
## [35556] "2013-06-27" "2013-06-27" "2012-02-25" "2013-06-27" "2012-02-25"
## [35561] "2013-09-06" "2012-05-29" "2013-09-06" "2012-05-29" "2012-03-05"
## [35566] "2012-03-05" "2011-07-31" "2011-07-31" "2013-05-05" "2011-07-31"
## [35571] "2013-05-05" "2012-09-08" "2012-09-08" "2013-01-31" "2013-04-21"
## [35576] "2012-09-07" "2013-04-19" "2013-04-19" "2012-09-07" "2013-04-19"
## [35581] "2013-04-21" "2013-04-21" "2013-01-31" "2011-06-02" "2011-06-02"
## [35586] "2011-06-02" "2012-10-16" "2013-03-11" "2013-08-04" "2013-05-05"
## [35591] "2011-12-25" "2013-05-05" "2013-05-05" "2013-03-11" "2013-03-11"
## [35596] "2013-09-05" "2013-08-04" "2013-03-11" "2011-12-25" "2012-10-16"
## [35601] "2013-08-04" "2013-03-11" "2013-03-09" "2013-09-05" "2013-03-09"
## [35606] "2013-05-05" "2013-03-09" "2012-10-16" "2013-03-09" "2013-09-05"
## [35611] "2013-03-11" "2011-06-02" "2013-06-12" "2013-03-09" "2013-06-12"
## [35616] "2013-03-09" "2011-06-02" "2013-08-04" "2013-05-05" "2012-06-13"
## [35621] "2012-06-11" "2012-06-13" "2012-06-11" "2012-06-13" "2012-06-11"
## [35626] "2012-06-13" "2012-06-11" "2012-06-13" "2011-05-05" "2012-06-13"
## [35631] "2012-06-11" "2011-05-05" "2011-04-25" "2013-08-03" "2013-08-03"
## [35636] "2011-04-25" "2012-06-11" "2012-08-17" "2012-08-17" "2012-08-17"
## [35641] "2012-08-17" "2012-08-17" "2012-08-17" "2014-01-05" "2014-01-05"
## [35646] "2011-08-14" "2014-01-05" "2014-01-05" "2011-08-14" "2014-01-05"
## [35651] "2014-01-05" "2011-08-14" "2013-02-06" "2013-02-16" "2012-09-26"
## [35656] "2012-09-26" "2013-02-16" "2013-02-06" "2011-09-19" "2011-09-19"
## [35661] "2011-01-30" "2011-01-30" "2011-01-30" "2012-12-10" "2013-02-24"
## [35666] "2011-09-25" "2013-02-24" "2011-02-26" "2012-12-10" "2011-09-25"
## [35671] "2012-12-10" "2011-02-26" "2011-02-26" "2012-12-10" "2012-12-10"
## [35676] "2011-11-16" "2011-11-16" "2011-11-16" "2013-03-28" "2013-03-28"
## [35681] "2013-04-30" "2013-04-30" "2012-06-20" "2012-06-20" "2013-04-30"
## [35686] "2011-03-17" "2011-03-08" "2011-03-17" "2011-03-08" "2011-03-17"
## [35691] "2011-03-17" "2011-03-17" "2011-07-15" "2011-07-15" "2011-07-09"
## [35696] "2011-07-12" "2011-07-09" "2011-07-12" "2011-10-17" "2011-07-09"
## [35701] "2011-07-12" "2011-07-12" "2011-07-15" "2011-07-12" "2011-07-15"
## [35706] "2011-07-15" "2011-07-09" "2011-10-17" "2011-07-09" "2011-02-13"
## [35711] "2011-02-13" "2011-11-29" "2011-02-13" "2013-02-18" "2012-06-17"
## [35716] "2012-06-17" "2011-11-29" "2012-06-17" "2012-06-17" "2011-11-29"
## [35721] "2012-06-17" "2013-02-18" "2012-12-10" "2014-01-12" "2014-01-12"
## [35726] "2014-01-12" "2014-01-12" "2014-01-12" "2012-12-10" "2012-11-24"
## [35731] "2012-02-29" "2012-11-24" "2012-02-29" "2012-02-29" "2012-07-24"
## [35736] "2012-02-29" "2012-03-02" "2012-02-29" "2012-07-24" "2012-03-02"
## [35741] "2012-03-02" "2013-03-24" "2013-09-25" "2013-09-25" "2013-03-24"
## [35746] "2013-03-24" "2012-03-02" "2013-03-24" "2012-03-02" "2013-03-24"
## [35751] "2011-07-06" "2011-07-06" "2011-07-06" "2011-07-06" "2011-07-06"
## [35756] "2012-01-14" "2012-01-14" "2012-01-14" "2011-09-14" "2012-09-14"
## [35761] "2011-09-14" "2011-09-14" "2012-09-14" "2011-09-14" "2012-09-14"
## [35766] "2011-09-14" "2013-06-14" "2013-09-28" "2011-05-31" "2013-06-14"
## [35771] "2013-06-14" "2013-09-20" "2013-09-28" "2013-09-20" "2011-05-31"
## [35776] "2013-06-14" "2013-06-14" "2011-05-31" "2013-06-14" "2011-06-09"
## [35781] "2011-06-09" "2012-05-23" "2012-05-23" "2012-05-24" "2012-05-23"
## [35786] "2011-06-09" "2014-01-29" "2012-05-23" "2011-06-09" "2012-05-23"
## [35791] "2012-05-24" "2014-01-29" "2011-06-09" "2012-05-24" "2012-05-24"
## [35796] "2012-05-24" "2013-09-17" "2011-03-07" "2011-03-12" "2011-03-07"
## [35801] "2011-03-12" "2011-03-07" "2011-03-12" "2013-09-17" "2011-03-07"
## [35806] "2011-03-12" "2011-03-07" "2013-09-17" "2011-03-12" "2014-01-23"
## [35811] "2012-06-10" "2014-01-23" "2012-06-10" "2011-06-10" "2011-06-10"
## [35816] "2013-01-09" "2011-11-13" "2011-06-10" "2011-11-13" "2011-06-13"
## [35821] "2011-12-29" "2011-06-10" "2011-06-13" "2011-11-13" "2011-06-13"
## [35826] "2013-01-09" "2013-01-09" "2013-09-01" "2011-11-13" "2011-06-13"
## [35831] "2011-06-10" "2013-09-01" "2013-01-09" "2013-09-01" "2013-08-23"
## [35836] "2013-09-01" "2013-03-25" "2011-06-13" "2011-12-29" "2011-05-22"
## [35841] "2013-08-23" "2011-03-13" "2013-09-01" "2013-08-23" "2011-05-22"
## [35846] "2013-08-23" "2011-03-13" "2013-01-09" "2011-05-22" "2013-08-23"
## [35851] "2013-03-25" "2011-03-13" "2011-11-13" "2012-01-22" "2012-01-22"
## [35856] "2012-01-22" "2012-01-22" "2012-01-22" "2013-01-02" "2013-01-02"
## [35861] "2013-01-02" "2012-07-17" "2012-07-17" "2013-10-23" "2013-10-23"
## [35866] "2011-09-05" "2011-09-05" "2011-09-05" "2011-09-05" "2011-09-05"
## [35871] "2011-09-05" "2012-09-27" "2012-09-27" "2012-09-27" "2012-05-27"
## [35876] "2012-05-30" "2012-05-27" "2012-05-30" "2012-05-30" "2012-05-27"
## [35881] "2012-05-30" "2012-05-27" "2012-05-27" "2012-05-30" "2012-02-23"
## [35886] "2012-02-23" "2012-02-23" "2012-02-23" "2012-02-23" "2012-12-27"
## [35891] "2012-12-27" "2011-07-04" "2012-12-27" "2011-07-04" "2014-01-14"
## [35896] "2011-07-04" "2011-07-04" "2014-01-14" "2011-02-23" "2012-04-28"
## [35901] "2011-02-23" "2011-03-19" "2012-04-28" "2011-11-28" "2012-04-28"
## [35906] "2011-03-19" "2011-11-28" "2011-02-20" "2012-04-28" "2011-02-20"
## [35911] "2011-11-28" "2012-04-28" "2011-03-19" "2013-05-27" "2013-05-27"
## [35916] "2012-11-11" "2012-11-11" "2012-11-11" "2012-11-11" "2012-11-11"
## [35921] "2012-05-30" "2012-05-30" "2012-05-30" "2012-05-30" "2013-07-26"
## [35926] "2012-05-30" "2012-05-30" "2013-07-26" "2013-07-26" "2012-02-13"
## [35931] "2012-02-13" "2012-02-09" "2012-02-09" "2012-02-09" "2012-02-13"
## [35936] "2013-02-16" "2013-02-16" "2011-11-22" "2011-11-12" "2011-11-22"
## [35941] "2012-06-18" "2011-11-12" "2011-11-22" "2013-02-16" "2011-11-12"
## [35946] "2011-11-12" "2012-06-18" "2011-11-22" "2012-06-18" "2011-11-22"
## [35951] "2011-11-12" "2013-02-16" "2011-11-12" "2011-11-22" "2013-02-16"
## [35956] "2012-10-20" "2012-10-20" "2012-10-20" "2012-10-20" "2012-10-20"
## [35961] "2012-04-14" "2012-04-14" "2012-04-14" "2012-04-14" "2013-11-28"
## [35966] "2013-11-28" "2013-12-31" "2012-05-16" "2013-12-31" "2012-05-16"
## [35971] "2013-12-31" "2012-05-16" "2013-12-23" "2012-05-16" "2013-12-23"
## [35976] "2013-12-23" "2013-12-23" "2013-12-31" "2013-12-23" "2012-05-16"
## [35981] "2013-12-31" "2012-07-12" "2013-04-05" "2012-07-12" "2012-07-12"
## [35986] "2013-04-05" "2011-08-14" "2011-08-14" "2012-07-12" "2011-08-14"
## [35991] "2011-05-14" "2013-06-03" "2011-08-14" "2012-07-12" "2011-05-14"
## [35996] "2011-08-14" "2013-04-05" "2013-06-03" "2013-06-03" "2013-06-03"
## [36001] "2011-05-14" "2013-06-03" "2011-09-09" "2012-01-25" "2011-12-07"
## [36006] "2011-12-07" "2011-09-09" "2011-09-09" "2012-01-25" "2011-12-07"
## [36011] "2011-09-09" "2011-09-09" "2012-04-21" "2012-04-21" "2012-04-21"
## [36016] "2012-04-21" "2012-04-21" "2013-10-24" "2013-10-24" "2012-02-28"
## [36021] "2013-04-20" "2012-02-28" "2012-02-28" "2013-10-24" "2013-04-20"
## [36026] "2013-04-20" "2012-02-28" "2013-10-24" "2013-10-24" "2012-02-28"
## [36031] "2011-04-15" "2012-03-26" "2011-04-15" "2011-04-15" "2012-03-26"
## [36036] "2012-03-26" "2012-03-26" "2011-04-15" "2011-04-15" "2012-03-26"
## [36041] "2013-05-07" "2013-05-07" "2013-05-07" "2013-05-02" "2013-05-02"
## [36046] "2013-05-02" "2012-12-07" "2011-07-17" "2012-12-07" "2012-11-29"
## [36051] "2012-12-07" "2011-07-17" "2012-11-29" "2011-07-17" "2012-12-07"
## [36056] "2012-12-07" "2011-02-19" "2013-06-28" "2013-06-28" "2013-09-24"
## [36061] "2013-09-24" "2011-02-19" "2013-06-28" "2013-06-28" "2013-06-28"
## [36066] "2013-06-28" "2013-09-24" "2012-06-08" "2013-02-25" "2013-02-25"
## [36071] "2012-06-08" "2012-06-08" "2013-11-06" "2012-04-27" "2011-04-24"
## [36076] "2012-04-27" "2013-11-06" "2013-10-20" "2013-11-06" "2013-11-06"
## [36081] "2011-04-24" "2012-04-27" "2011-04-24" "2013-11-06" "2013-10-20"
## [36086] "2013-04-06" "2013-04-06" "2013-04-06" "2012-08-10" "2012-08-31"
## [36091] "2012-08-10" "2012-08-31" "2012-08-10" "2012-08-10" "2012-08-31"
## [36096] "2012-08-31" "2012-06-12" "2012-06-12" "2012-08-31" "2012-06-12"
## [36101] "2012-08-10" "2012-06-12" "2012-08-31" "2012-06-12" "2011-12-01"
## [36106] "2011-12-01" "2012-07-10" "2012-07-04" "2013-06-20" "2012-07-04"
## [36111] "2012-07-04" "2012-07-10" "2012-07-10" "2013-06-20" "2012-07-28"
## [36116] "2012-07-28" "2011-10-21" "2012-05-23" "2012-07-28" "2012-07-28"
## [36121] "2011-10-21" "2012-05-23" "2012-07-28" "2012-07-28" "2011-10-21"
## [36126] "2013-04-18" "2014-01-03" "2014-01-03" "2014-01-03" "2014-01-03"
## [36131] "2013-04-18" "2013-04-18" "2014-01-03" "2013-04-18" "2013-04-18"
## [36136] "2011-11-10" "2011-11-10" "2011-11-10" "2014-01-05" "2013-12-31"
## [36141] "2013-12-31" "2014-01-07" "2014-01-05" "2014-01-07" "2013-12-31"
## [36146] "2014-01-07" "2014-01-05" "2012-09-25" "2012-03-18" "2012-09-25"
## [36151] "2012-09-25" "2012-03-18" "2012-03-18" "2012-03-18" "2012-09-25"
## [36156] "2011-03-23" "2013-05-31" "2011-03-23" "2013-05-31" "2013-05-31"
## [36161] "2011-03-23" "2013-05-31" "2013-05-31" "2012-10-27" "2012-10-27"
## [36166] "2012-10-17" "2013-10-24" "2012-10-27" "2012-10-27" "2012-10-17"
## [36171] "2012-10-17" "2013-10-24" "2011-03-17" "2012-10-27" "2012-10-27"
## [36176] "2012-10-27" "2012-10-17" "2012-10-27" "2011-03-17" "2012-10-17"
## [36181] "2012-10-27" "2013-02-12" "2013-10-24" "2013-02-12" "2013-01-22"
## [36186] "2013-01-22" "2012-09-13" "2013-01-22" "2012-09-13" "2013-01-22"
## [36191] "2013-01-22" "2012-09-13" "2012-09-13" "2012-09-13" "2012-09-13"
## [36196] "2013-07-31" "2013-07-31" "2013-07-31" "2013-07-31" "2013-07-31"
## [36201] "2013-05-18" "2013-05-26" "2013-05-18" "2013-05-26" "2012-07-18"
## [36206] "2013-01-21" "2013-01-21" "2012-07-18" "2012-07-18" "2013-06-21"
## [36211] "2013-01-13" "2013-01-13" "2013-06-21" "2013-06-21" "2011-09-21"
## [36216] "2011-09-02" "2011-09-21" "2011-06-06" "2011-09-02" "2011-07-27"
## [36221] "2011-06-06" "2013-09-07" "2011-06-06" "2011-06-06" "2011-06-06"
## [36226] "2011-07-27" "2011-09-21" "2011-09-02" "2011-07-27" "2013-09-07"
## [36231] "2013-09-07" "2013-12-13" "2013-12-13" "2011-11-25" "2013-12-15"
## [36236] "2013-12-15" "2011-11-25" "2013-05-01" "2013-05-01" "2013-05-01"
## [36241] "2013-05-01" "2013-05-01" "2014-01-30" "2014-01-30" "2014-01-30"
## [36246] "2014-01-30" "2014-01-30" "2013-11-23" "2013-11-23" "2012-11-13"
## [36251] "2012-11-13" "2012-11-13" "2013-06-30" "2012-02-22" "2013-06-30"
## [36256] "2012-02-22" "2012-10-19" "2013-06-30" "2012-10-19" "2012-02-22"
## [36261] "2012-10-19" "2012-10-19" "2012-10-19" "2013-10-04" "2011-06-27"
## [36266] "2013-10-04" "2013-10-04" "2011-06-27" "2013-08-01" "2013-08-01"
## [36271] "2013-08-01" "2011-06-27" "2011-06-27" "2013-10-04" "2013-10-04"
## [36276] "2011-03-22" "2013-08-07" "2011-03-22" "2011-03-22" "2011-03-22"
## [36281] "2013-08-07" "2013-08-07" "2013-10-27" "2011-10-08" "2013-01-30"
## [36286] "2013-12-11" "2013-12-11" "2013-10-27" "2013-01-30" "2013-01-30"
## [36291] "2013-12-11" "2013-12-11" "2013-10-27" "2013-10-27" "2013-12-11"
## [36296] "2011-10-08" "2013-01-30" "2013-01-30" "2011-11-26" "2013-09-02"
## [36301] "2011-11-26" "2013-09-02" "2011-09-06" "2011-09-06" "2011-09-06"
## [36306] "2011-11-26" "2011-11-26" "2011-09-06" "2011-04-11" "2011-09-06"
## [36311] "2011-09-06" "2011-11-26" "2013-09-08" "2011-04-11" "2013-09-08"
## [36316] "2012-04-23" "2012-04-23" "2012-04-23" "2012-04-23" "2012-04-23"
## [36321] "2013-08-23" "2013-08-23" "2013-08-23" "2012-06-30" "2012-06-30"
## [36326] "2012-06-30" "2012-06-30" "2012-06-30" "2013-04-17" "2012-10-06"
## [36331] "2012-10-06" "2013-04-17" "2013-04-17" "2013-04-17" "2013-04-17"
## [36336] "2012-05-05" "2012-05-05" "2013-04-17" "2013-12-09" "2011-08-12"
## [36341] "2011-08-04" "2013-12-09" "2011-08-04" "2011-08-12" "2011-08-12"
## [36346] "2011-08-04" "2011-08-04" "2011-08-12" "2011-08-04" "2011-08-12"
## [36351] "2012-08-06" "2012-08-06" "2014-01-10" "2013-07-08" "2013-07-08"
## [36356] "2013-05-13" "2014-01-17" "2014-01-17" "2013-07-08" "2014-01-10"
## [36361] "2013-05-13" "2014-01-07" "2014-01-07" "2012-02-07" "2012-02-07"
## [36366] "2012-02-07" "2013-04-22" "2013-04-14" "2013-04-19" "2013-04-22"
## [36371] "2011-09-08" "2013-04-14" "2013-04-19" "2011-09-08" "2013-04-14"
## [36376] "2011-09-08" "2013-04-19" "2013-04-14" "2013-04-22" "2011-09-08"
## [36381] "2013-04-19" "2013-04-19" "2011-09-08" "2013-04-22" "2013-04-14"
## [36386] "2013-04-22" "2011-04-08" "2012-07-05" "2012-07-05" "2011-04-08"
## [36391] "2011-04-08" "2011-03-11" "2012-07-05" "2011-03-11" "2011-03-11"
## [36396] "2012-07-05" "2011-03-11" "2011-03-14" "2012-07-05" "2011-03-14"
## [36401] "2011-03-14" "2011-03-14" "2011-03-11" "2011-04-08" "2011-03-14"
## [36406] "2012-07-05" "2012-04-13" "2013-12-29" "2012-04-13" "2013-12-29"
## [36411] "2012-04-13" "2011-11-14" "2011-11-14" "2011-11-14" "2011-02-09"
## [36416] "2012-01-21" "2011-02-09" "2012-01-21" "2012-01-21" "2011-01-30"
## [36421] "2011-02-09" "2011-01-30" "2012-01-21" "2011-01-30" "2011-02-09"
## [36426] "2011-01-30" "2012-01-21" "2011-07-08" "2013-01-15" "2012-01-15"
## [36431] "2012-01-15" "2013-01-15" "2011-07-08" "2011-07-08" "2013-01-15"
## [36436] "2013-01-15" "2013-01-15" "2012-05-22" "2012-05-22" "2012-05-20"
## [36441] "2012-05-20" "2012-09-19" "2011-05-12" "2011-05-12" "2012-09-19"
## [36446] "2011-02-28" "2011-02-28" "2012-05-20" "2011-02-28" "2012-05-22"
## [36451] "2011-02-28" "2012-05-20" "2012-09-19" "2012-05-22" "2011-07-16"
## [36456] "2011-07-16" "2011-05-18" "2011-05-18" "2011-05-18" "2011-05-18"
## [36461] "2011-05-18" "2011-08-18" "2011-08-18" "2011-08-18" "2012-11-13"
## [36466] "2012-11-13" "2013-10-06" "2012-11-13" "2013-10-06" "2011-06-19"
## [36471] "2011-06-19" "2012-05-02" "2011-06-19" "2012-05-02" "2012-05-02"
## [36476] "2014-02-10" "2014-02-10" "2013-01-05" "2011-03-31" "2014-02-10"
## [36481] "2014-02-10" "2011-03-31" "2013-01-05" "2013-01-05" "2014-02-10"
## [36486] "2013-01-05" "2011-03-31" "2013-01-05" "2014-02-10" "2011-08-01"
## [36491] "2013-02-12" "2013-04-08" "2013-04-08" "2011-08-01" "2013-04-07"
## [36496] "2013-04-07" "2013-05-16" "2013-04-08" "2012-10-28" "2012-10-28"
## [36501] "2013-04-08" "2013-04-08" "2013-02-12" "2013-04-07" "2013-04-07"
## [36506] "2013-04-07" "2013-05-16" "2011-02-20" "2011-02-20" "2011-02-20"
## [36511] "2012-10-26" "2011-02-20" "2012-10-26" "2011-02-20" "2012-10-26"
## [36516] "2011-06-30" "2011-06-30" "2011-06-30" "2011-06-30" "2011-11-28"
## [36521] "2011-11-28" "2011-11-28" "2011-06-30" "2012-03-03" "2011-11-28"
## [36526] "2011-11-28" "2012-03-03" "2012-03-03" "2012-03-03" "2013-10-05"
## [36531] "2012-03-30" "2013-10-05" "2013-10-05" "2013-02-13" "2013-10-05"
## [36536] "2013-10-05" "2013-02-13" "2012-03-30" "2012-03-30" "2013-02-13"
## [36541] "2013-08-25" "2013-08-25" "2012-07-26" "2013-08-25" "2012-07-26"
## [36546] "2013-05-14" "2012-02-19" "2012-02-19" "2013-05-14" "2012-02-19"
## [36551] "2013-05-14" "2012-02-19" "2012-10-03" "2013-04-01" "2012-10-03"
## [36556] "2014-01-01" "2012-10-03" "2012-10-03" "2012-10-03" "2014-01-01"
## [36561] "2012-10-03" "2013-04-01" "2013-04-01" "2014-02-08" "2011-11-27"
## [36566] "2014-02-08" "2011-11-27" "2012-07-09" "2012-07-09" "2012-07-09"
## [36571] "2012-10-08" "2012-10-13" "2012-10-13" "2012-10-08" "2012-01-10"
## [36576] "2012-01-10" "2012-01-26" "2012-10-13" "2012-01-26" "2012-10-08"
## [36581] "2012-01-10" "2012-09-07" "2012-09-07" "2012-09-07" "2012-09-07"
## [36586] "2012-09-07" "2011-08-01" "2011-08-01" "2013-04-24" "2013-07-01"
## [36591] "2013-07-01" "2013-04-24" "2013-07-01" "2013-07-01" "2013-04-24"
## [36596] "2013-07-01" "2013-07-01" "2013-04-24" "2013-04-24" "2012-09-01"
## [36601] "2012-09-01" "2012-09-01" "2012-09-01" "2012-09-01" "2011-04-17"
## [36606] "2011-04-17" "2012-07-27" "2012-07-27" "2013-08-27" "2012-06-11"
## [36611] "2013-08-27" "2012-06-11" "2012-06-11" "2013-08-27" "2013-08-27"
## [36616] "2013-08-07" "2012-04-02" "2013-08-12" "2012-04-02" "2013-08-12"
## [36621] "2012-04-02" "2013-08-12" "2013-08-07" "2013-08-07" "2011-02-27"
## [36626] "2012-06-07" "2011-02-27" "2012-06-07" "2012-06-07" "2012-06-07"
## [36631] "2012-06-07" "2012-06-07" "2011-01-26" "2011-01-26" "2011-01-26"
## [36636] "2011-01-26" "2011-01-26" "2011-08-20" "2011-08-20" "2011-10-21"
## [36641] "2011-08-20" "2011-10-21" "2011-10-21" "2011-08-20" "2012-02-10"
## [36646] "2012-02-26" "2012-02-10" "2013-07-28" "2013-07-28" "2012-02-26"
## [36651] "2012-02-26" "2013-07-28" "2013-07-28" "2013-07-28" "2012-03-06"
## [36656] "2011-08-23" "2011-08-23" "2011-08-23" "2012-03-06" "2013-11-20"
## [36661] "2011-10-11" "2013-11-20" "2013-11-11" "2013-11-11" "2011-10-11"
## [36666] "2013-11-20" "2011-10-11" "2013-11-11" "2011-10-11" "2012-08-17"
## [36671] "2013-09-17" "2012-08-17" "2011-11-10" "2013-09-17" "2013-09-17"
## [36676] "2013-09-17" "2013-09-17" "2011-11-10" "2014-01-14" "2011-08-05"
## [36681] "2012-12-09" "2014-01-14" "2012-04-30" "2011-08-05" "2014-01-14"
## [36686] "2012-04-30" "2012-04-30" "2012-12-09" "2011-04-16" "2011-04-16"
## [36691] "2013-08-16" "2011-03-20" "2013-08-16" "2011-03-20" "2013-08-16"
## [36696] "2013-08-16" "2013-04-09" "2013-04-09" "2013-04-09" "2013-04-09"
## [36701] "2013-04-09" "2013-04-09" "2011-06-10" "2011-04-27" "2011-04-27"
## [36706] "2011-04-27" "2011-04-27" "2011-06-10" "2011-01-30" "2011-01-30"
## [36711] "2011-02-05" "2013-01-03" "2013-01-03" "2011-02-05" "2011-02-05"
## [36716] "2011-02-05" "2011-01-30" "2011-02-05" "2013-02-25" "2013-02-25"
## [36721] "2013-02-26" "2013-02-26" "2013-02-25" "2013-02-26" "2013-02-26"
## [36726] "2013-02-25" "2013-02-26" "2013-02-25" "2013-02-25" "2013-02-26"
## [36731] "2013-10-01" "2013-04-25" "2013-04-30" "2013-04-25" "2013-04-25"
## [36736] "2013-10-01" "2012-03-19" "2013-04-25" "2013-04-21" "2012-03-19"
## [36741] "2012-03-19" "2012-06-14" "2013-10-07" "2013-10-01" "2012-03-19"
## [36746] "2013-04-21" "2013-01-25" "2013-10-07" "2013-04-30" "2013-10-07"
## [36751] "2013-04-30" "2012-06-14" "2013-04-25" "2013-04-21" "2013-04-30"
## [36756] "2013-04-21" "2013-04-30" "2013-04-21" "2013-01-25" "2014-01-24"
## [36761] "2014-01-24" "2014-01-14" "2013-03-21" "2013-12-01" "2014-01-24"
## [36766] "2014-01-24" "2014-01-14" "2014-01-14" "2014-01-24" "2014-01-14"
## [36771] "2013-03-21" "2013-12-01" "2014-01-14" "2013-03-23" "2013-03-23"
## [36776] "2013-03-23" "2013-03-23" "2013-03-23" "2013-09-12" "2012-02-08"
## [36781] "2012-02-08" "2013-09-12" "2012-04-10" "2012-02-08" "2012-02-01"
## [36786] "2012-02-01" "2013-09-12" "2012-04-10" "2013-09-12" "2012-02-01"
## [36791] "2012-04-10" "2011-08-27" "2013-04-07" "2011-08-27" "2013-11-22"
## [36796] "2011-08-27" "2013-04-04" "2012-11-04" "2013-11-22" "2013-04-04"
## [36801] "2013-04-07" "2013-11-22" "2012-11-04" "2013-04-08" "2013-04-07"
## [36806] "2012-11-04" "2013-04-08" "2013-04-08" "2013-04-07" "2013-11-22"
## [36811] "2012-11-04" "2012-11-04" "2013-04-08" "2013-04-08" "2013-11-22"
## [36816] "2013-04-07" "2011-05-03" "2011-05-03" "2013-04-25" "2013-07-12"
## [36821] "2013-04-25" "2011-05-03" "2011-05-03" "2013-07-12" "2013-07-12"
## [36826] "2011-09-19" "2011-09-13" "2011-09-19" "2011-02-03" "2013-07-05"
## [36831] "2011-09-13" "2013-07-06" "2011-09-13" "2013-07-06" "2013-07-05"
## [36836] "2013-07-05" "2013-07-06" "2011-09-19" "2011-02-03" "2011-04-01"
## [36841] "2011-04-01" "2011-04-01" "2011-04-01" "2011-10-26" "2011-04-01"
## [36846] "2011-10-26" "2011-04-01" "2012-04-09" "2012-04-26" "2013-03-23"
## [36851] "2013-03-23" "2013-03-23" "2012-04-09" "2013-03-23" "2013-03-23"
## [36856] "2012-04-09" "2013-03-23" "2012-04-26" "2012-04-09" "2013-07-21"
## [36861] "2012-03-15" "2012-01-22" "2014-01-14" "2013-07-21" "2012-01-22"
## [36866] "2012-01-22" "2012-12-24" "2013-07-21" "2012-12-24" "2014-01-14"
## [36871] "2014-01-14" "2012-03-15" "2013-07-21" "2012-12-24" "2012-03-15"
## [36876] "2012-01-22" "2012-12-24" "2014-01-14" "2013-07-21" "2012-12-24"
## [36881] "2014-01-14" "2012-01-22" "2013-10-24" "2013-10-24" "2013-10-24"
## [36886] "2012-02-23" "2012-02-23" "2012-07-23" "2012-12-23" "2012-07-23"
## [36891] "2012-07-23" "2012-12-23" "2011-01-26" "2011-01-26" "2013-05-01"
## [36896] "2013-02-03" "2013-09-29" "2013-02-03" "2013-09-29" "2013-02-02"
## [36901] "2013-02-03" "2013-02-02" "2013-01-16" "2013-05-01" "2013-02-03"
## [36906] "2013-02-02" "2013-02-03" "2013-02-02" "2013-09-29" "2013-09-29"
## [36911] "2013-09-29" "2013-05-01" "2013-01-16" "2013-09-23" "2011-11-06"
## [36916] "2013-09-23" "2013-03-01" "2011-11-06" "2013-09-23" "2011-11-06"
## [36921] "2012-01-05" "2013-03-01" "2013-03-01" "2012-01-05" "2013-05-12"
## [36926] "2011-09-26" "2011-09-26" "2013-05-12" "2011-09-28" "2011-09-28"
## [36931] "2013-07-03" "2011-09-28" "2011-09-26" "2011-09-26" "2013-07-03"
## [36936] "2013-05-12" "2011-09-26" "2011-09-20" "2011-09-20" "2011-09-20"
## [36941] "2013-01-24" "2013-01-24" "2013-01-24" "2012-09-18" "2012-09-18"
## [36946] "2012-06-29" "2012-06-29" "2012-09-18" "2013-09-19" "2011-07-11"
## [36951] "2013-09-19" "2011-07-11" "2013-09-19" "2011-07-11" "2011-07-11"
## [36956] "2013-09-19" "2011-07-11" "2013-09-19" "2011-05-27" "2013-05-19"
## [36961] "2011-08-16" "2011-08-16" "2013-04-25" "2011-08-16" "2011-05-27"
## [36966] "2013-05-19" "2013-04-25" "2013-05-19" "2013-06-28" "2011-05-26"
## [36971] "2011-05-26" "2011-09-05" "2011-05-26" "2011-09-05" "2013-06-28"
## [36976] "2014-02-16" "2011-05-26" "2011-05-23" "2014-02-16" "2011-09-05"
## [36981] "2011-05-26" "2013-06-28" "2014-02-16" "2011-05-23" "2014-02-16"
## [36986] "2014-02-16" "2011-05-23" "2011-05-23" "2011-05-23" "2011-04-23"
## [36991] "2013-11-22" "2013-11-22" "2013-11-22" "2011-04-23" "2012-10-13"
## [36996] "2012-10-13" "2012-10-13" "2012-10-13" "2012-10-13" "2013-04-28"
## [37001] "2013-10-25" "2013-10-25" "2013-10-25" "2013-04-28" "2013-07-25"
## [37006] "2012-09-28" "2012-09-28" "2013-07-25" "2012-09-28" "2012-09-28"
## [37011] "2012-09-28" "2013-07-02" "2011-06-15" "2013-07-02" "2011-06-15"
## [37016] "2011-04-14" "2011-04-14" "2011-03-30" "2011-03-30" "2012-11-20"
## [37021] "2012-11-20" "2011-04-14" "2011-04-14" "2011-03-30" "2011-04-14"
## [37026] "2011-02-12" "2011-02-12" "2011-02-12" "2011-02-12" "2011-02-12"
## [37031] "2011-06-03" "2011-06-03" "2013-10-03" "2013-10-03" "2013-10-03"
## [37036] "2013-10-03" "2013-10-03" "2011-05-14" "2011-05-14" "2011-05-14"
## [37041] "2012-11-14" "2012-12-04" "2012-09-03" "2012-12-04" "2012-11-14"
## [37046] "2012-12-04" "2012-12-04" "2012-09-03" "2012-11-08" "2012-11-16"
## [37051] "2011-04-09" "2012-11-16" "2011-04-09" "2012-11-08" "2012-05-12"
## [37056] "2012-05-12" "2012-05-12" "2011-04-07" "2011-04-07" "2012-02-06"
## [37061] "2012-02-06" "2011-12-05" "2011-12-05" "2011-12-05" "2013-09-21"
## [37066] "2013-09-21" "2012-03-31" "2012-03-27" "2013-07-14" "2012-03-31"
## [37071] "2013-07-14" "2012-03-27" "2012-03-27" "2012-03-31" "2012-03-27"
## [37076] "2012-03-31" "2013-07-14" "2013-07-14" "2013-07-14" "2013-07-14"
## [37081] "2012-10-09" "2013-06-25" "2012-10-09" "2012-10-09" "2013-12-15"
## [37086] "2013-12-15" "2012-10-09" "2014-02-14" "2013-09-26" "2013-09-26"
## [37091] "2014-02-14" "2013-06-25" "2013-09-26" "2012-10-09" "2012-03-12"
## [37096] "2011-09-30" "2011-09-30" "2012-03-12" "2012-01-20" "2011-09-30"
## [37101] "2011-09-30" "2012-03-12" "2012-01-20" "2011-09-30" "2012-01-20"
## [37106] "2013-10-17" "2013-05-27" "2013-05-27" "2013-10-17" "2013-08-25"
## [37111] "2012-08-17" "2013-10-17" "2013-05-27" "2013-05-27" "2012-08-17"
## [37116] "2013-05-27" "2013-08-25" "2012-08-17" "2013-08-25" "2013-11-21"
## [37121] "2013-11-21" "2013-11-21" "2013-11-21" "2013-11-21" "2013-11-21"
## [37126] "2011-06-24" "2011-06-24" "2011-10-31" "2011-06-24" "2011-10-31"
## [37131] "2011-10-15" "2011-10-31" "2011-07-03" "2011-07-03" "2011-10-31"
## [37136] "2011-10-31" "2011-03-16" "2011-03-16" "2011-10-31" "2011-10-15"
## [37141] "2011-10-15" "2011-07-03" "2011-03-16" "2011-03-16" "2011-03-16"
## [37146] "2011-05-11" "2011-12-04" "2011-12-04" "2011-05-11" "2012-10-09"
## [37151] "2013-12-30" "2013-12-30" "2012-09-15" "2012-09-20" "2012-09-15"
## [37156] "2012-09-20" "2012-09-15" "2012-09-20" "2012-10-09" "2012-10-09"
## [37161] "2011-07-07" "2011-07-07" "2011-07-07" "2011-11-30" "2011-11-30"
## [37166] "2011-11-30" "2011-11-30" "2011-11-30" "2013-09-19" "2013-09-19"
## [37171] "2013-09-19" "2011-08-31" "2011-08-31" "2013-12-17" "2013-11-12"
## [37176] "2011-04-12" "2013-12-17" "2011-08-31" "2013-11-12" "2011-12-10"
## [37181] "2011-09-08" "2013-01-24" "2011-04-12" "2013-11-12" "2011-09-08"
## [37186] "2013-11-12" "2011-08-31" "2011-08-31" "2011-09-08" "2011-04-12"
## [37191] "2013-11-12" "2013-11-12" "2012-05-26" "2013-01-24" "2011-08-31"
## [37196] "2011-12-10" "2011-09-08" "2011-09-08" "2012-05-26" "2012-05-26"
## [37201] "2011-04-12" "2011-09-08" "2011-04-12" "2013-05-29" "2013-05-29"
## [37206] "2013-05-29" "2013-06-14" "2013-06-19" "2013-06-19" "2013-06-14"
## [37211] "2013-06-19" "2013-06-19" "2013-05-29" "2013-06-14" "2013-05-29"
## [37216] "2013-06-19" "2013-05-29" "2013-06-14" "2013-06-14" "2011-07-12"
## [37221] "2011-07-12" "2013-07-07" "2014-01-18" "2014-01-18" "2013-10-10"
## [37226] "2014-01-17" "2014-01-18" "2014-01-17" "2014-01-17" "2014-01-17"
## [37231] "2013-07-07" "2011-11-18" "2013-10-10" "2014-01-18" "2013-07-07"
## [37236] "2014-01-17" "2013-07-07" "2011-11-18" "2014-01-17" "2014-01-18"
## [37241] "2011-11-18" "2014-01-18" "2013-08-24" "2011-03-08" "2013-08-24"
## [37246] "2013-07-14" "2013-07-14" "2011-03-08" "2011-03-11" "2011-03-08"
## [37251] "2011-03-08" "2011-03-11" "2013-07-14" "2011-03-08" "2011-03-11"
## [37256] "2011-03-11" "2011-03-11" "2013-03-28" "2013-03-28" "2013-03-28"
## [37261] "2014-01-19" "2014-01-19" "2014-01-19" "2013-03-28" "2014-01-19"
## [37266] "2014-01-19" "2013-03-28" "2014-01-19" "2013-03-01" "2013-03-01"
## [37271] "2013-06-27" "2013-03-01" "2013-06-27" "2013-03-01" "2013-06-27"
## [37276] "2013-03-01" "2013-03-01" "2011-07-18" "2013-07-23" "2011-07-17"
## [37281] "2013-07-18" "2013-06-03" "2013-06-03" "2013-06-03" "2013-07-23"
## [37286] "2011-07-17" "2011-07-17" "2011-07-17" "2013-06-03" "2013-06-03"
## [37291] "2013-07-18" "2011-10-28" "2011-07-18" "2011-10-28" "2013-06-03"
## [37296] "2011-07-17" "2012-07-21" "2012-07-21" "2011-08-18" "2011-06-26"
## [37301] "2014-01-25" "2011-06-26" "2011-06-26" "2011-06-26" "2011-08-11"
## [37306] "2011-07-02" "2011-06-26" "2011-07-02" "2011-07-02" "2013-01-21"
## [37311] "2011-05-01" "2011-06-26" "2011-08-11" "2011-05-01" "2011-08-11"
## [37316] "2012-03-12" "2011-04-23" "2014-01-25" "2011-08-18" "2011-07-02"
## [37321] "2013-01-21" "2011-04-23" "2012-03-12" "2011-07-02" "2011-07-02"
## [37326] "2012-12-08" "2012-12-08" "2012-06-14" "2012-06-14" "2012-06-16"
## [37331] "2012-06-16" "2011-06-09" "2011-06-09" "2014-01-13" "2014-01-13"
## [37336] "2014-01-13" "2013-10-26" "2014-01-13" "2013-10-26" "2013-10-26"
## [37341] "2014-01-13" "2013-02-28" "2013-02-28" "2013-05-09" "2013-02-28"
## [37346] "2013-05-09" "2011-06-08" "2013-05-09" "2013-05-09" "2013-02-28"
## [37351] "2011-06-08" "2013-02-28" "2013-05-09" "2011-06-08" "2013-10-23"
## [37356] "2013-10-23" "2013-10-23" "2013-06-18" "2013-06-18" "2013-10-17"
## [37361] "2013-10-17" "2013-05-20" "2013-05-20" "2013-05-11" "2013-05-11"
## [37366] "2012-09-10" "2012-09-10" "2013-05-20" "2012-09-10" "2012-09-10"
## [37371] "2012-09-10" "2013-05-11" "2011-12-27" "2011-12-27" "2012-06-12"
## [37376] "2011-12-27" "2011-09-14" "2011-09-14" "2012-06-12" "2011-09-14"
## [37381] "2012-10-16" "2012-10-16" "2013-02-23" "2013-02-23" "2012-10-16"
## [37386] "2012-10-16" "2013-02-23" "2012-10-16" "2013-09-06" "2013-09-02"
## [37391] "2013-09-06" "2013-09-06" "2013-09-06" "2013-09-06" "2012-07-14"
## [37396] "2013-09-02" "2012-07-14" "2013-09-06" "2013-09-02" "2013-09-02"
## [37401] "2013-09-02" "2013-09-02" "2013-09-24" "2013-08-14" "2012-09-24"
## [37406] "2013-09-24" "2012-09-24" "2012-09-24" "2012-09-24" "2013-08-14"
## [37411] "2012-09-24" "2013-09-24" "2013-08-14" "2011-10-16" "2011-04-10"
## [37416] "2011-03-04" "2011-04-10" "2011-03-04" "2011-04-10" "2011-03-04"
## [37421] "2011-10-16" "2011-10-16" "2011-10-16" "2011-03-04" "2011-03-04"
## [37426] "2012-09-24" "2012-09-24" "2012-09-24" "2012-09-24" "2012-09-24"
## [37431] "2012-05-22" "2011-10-09" "2011-10-09" "2012-04-30" "2012-04-30"
## [37436] "2011-10-21" "2011-10-21" "2011-10-21" "2011-10-21" "2011-10-09"
## [37441] "2011-10-09" "2012-05-22" "2011-02-18" "2011-10-09" "2011-02-18"
## [37446] "2012-05-22" "2011-10-21" "2011-02-18" "2011-10-21" "2012-05-22"
## [37451] "2012-08-15" "2012-05-17" "2012-08-15" "2012-08-15" "2012-05-17"
## [37456] "2012-05-17" "2012-05-17" "2011-10-31" "2011-10-31" "2011-10-31"
## [37461] "2011-10-31" "2012-05-17" "2011-10-31" "2013-08-29" "2012-02-08"
## [37466] "2013-09-01" "2013-08-29" "2013-09-01" "2014-01-28" "2012-02-08"
## [37471] "2013-08-29" "2013-09-01" "2013-09-01" "2012-02-08" "2012-02-08"
## [37476] "2014-01-28" "2013-08-04" "2012-02-08" "2013-08-04" "2013-08-29"
## [37481] "2013-09-01" "2014-01-28" "2013-08-29" "2014-01-28" "2013-01-05"
## [37486] "2013-01-05" "2013-01-05" "2013-02-11" "2013-02-11" "2013-02-11"
## [37491] "2014-02-04" "2014-02-04" "2013-01-06" "2013-01-06" "2012-02-16"
## [37496] "2012-02-16" "2013-01-06" "2012-02-16" "2012-07-15" "2013-01-06"
## [37501] "2012-07-15" "2012-07-15" "2013-01-06" "2012-07-15" "2013-08-16"
## [37506] "2013-08-16" "2012-11-06" "2013-08-02" "2013-08-16" "2012-11-06"
## [37511] "2012-11-06" "2013-08-02" "2013-08-14" "2012-04-15" "2013-08-02"
## [37516] "2013-08-14" "2013-08-14" "2012-04-15" "2013-08-02" "2013-08-02"
## [37521] "2011-03-15" "2011-03-15" "2011-03-15" "2011-09-13" "2011-03-15"
## [37526] "2011-09-13" "2011-03-15" "2011-03-15" "2011-09-13" "2011-06-13"
## [37531] "2011-06-13" "2011-06-13" "2011-06-13" "2011-06-13" "2012-03-25"
## [37536] "2012-03-25" "2012-07-03" "2012-07-03" "2012-07-03" "2012-07-03"
## [37541] "2012-07-03" "2012-03-25" "2013-07-09" "2012-11-16" "2013-07-09"
## [37546] "2013-07-09" "2012-02-03" "2012-02-03" "2013-07-09" "2012-11-16"
## [37551] "2012-02-03" "2013-07-09" "2012-11-16" "2014-02-13" "2014-02-13"
## [37556] "2014-02-13" "2014-02-13" "2013-08-25" "2013-08-25" "2012-01-18"
## [37561] "2012-01-18" "2012-01-18" "2012-10-20" "2012-10-20" "2011-09-03"
## [37566] "2012-08-19" "2011-09-03" "2012-01-28" "2012-08-19" "2012-01-28"
## [37571] "2011-09-03" "2012-08-19" "2012-08-19" "2012-08-19" "2011-07-01"
## [37576] "2011-07-01" "2011-07-01" "2011-07-01" "2011-07-01" "2013-05-14"
## [37581] "2013-05-14" "2013-05-14" "2013-05-14" "2013-05-14" "2012-04-01"
## [37586] "2013-12-31" "2013-12-31" "2012-04-01" "2013-12-31" "2011-02-24"
## [37591] "2011-02-24" "2012-01-08" "2012-01-08" "2012-01-08" "2014-01-03"
## [37596] "2011-02-07" "2014-01-03" "2014-01-03" "2013-04-08" "2013-04-08"
## [37601] "2011-02-07" "2014-01-03" "2013-04-08" "2013-04-08" "2013-04-08"
## [37606] "2014-01-03" "2013-10-21" "2013-10-21" "2013-10-23" "2012-05-25"
## [37611] "2013-10-21" "2012-05-25" "2011-09-22" "2013-10-23" "2011-09-22"
## [37616] "2013-10-21" "2013-10-23" "2013-10-23" "2011-09-22" "2012-08-31"
## [37621] "2012-08-31" "2014-02-06" "2014-02-06" "2014-02-06" "2013-02-20"
## [37626] "2011-03-25" "2011-03-25" "2011-10-03" "2011-04-02" "2011-03-25"
## [37631] "2011-10-03" "2011-03-25" "2013-02-20" "2011-04-02" "2013-02-20"
## [37636] "2011-10-03" "2011-04-02" "2011-10-03" "2011-10-03" "2011-04-02"
## [37641] "2011-04-02" "2012-11-17" "2012-12-10" "2011-12-07" "2012-11-17"
## [37646] "2011-12-07" "2011-12-07" "2012-12-10" "2012-12-10" "2012-06-06"
## [37651] "2012-10-24" "2011-04-09" "2012-06-06" "2012-06-06" "2012-06-06"
## [37656] "2011-04-09" "2012-10-24" "2012-10-24" "2011-04-09" "2012-10-24"
## [37661] "2012-06-06" "2012-06-06" "2011-04-09" "2012-10-24" "2013-12-24"
## [37666] "2013-12-24" "2013-12-24" "2014-01-16" "2014-01-16" "2013-05-22"
## [37671] "2012-10-12" "2012-10-12" "2011-10-14" "2011-07-18" "2012-10-12"
## [37676] "2012-10-12" "2013-05-22" "2013-05-22" "2012-10-12" "2013-05-22"
## [37681] "2013-09-11" "2011-10-14" "2013-05-22" "2013-09-11" "2011-10-14"
## [37686] "2011-10-14" "2011-07-18" "2013-05-22" "2011-10-14" "2011-10-14"
## [37691] "2012-10-12" "2011-07-10" "2011-07-10" "2012-09-06" "2011-07-10"
## [37696] "2011-07-10" "2011-02-15" "2011-07-10" "2012-09-06" "2011-07-10"
## [37701] "2011-02-15" "2013-10-10" "2011-10-21" "2013-10-06" "2011-10-21"
## [37706] "2011-10-21" "2013-10-10" "2013-10-06" "2011-08-28" "2011-08-28"
## [37711] "2011-08-28" "2011-07-26" "2011-07-26" "2011-07-16" "2011-07-16"
## [37716] "2013-02-03" "2013-03-01" "2013-03-01" "2013-02-03" "2013-03-01"
## [37721] "2013-02-03" "2013-03-01" "2013-02-03" "2013-02-03" "2013-02-03"
## [37726] "2011-09-13" "2012-03-01" "2012-05-06" "2012-05-06" "2012-05-06"
## [37731] "2011-09-18" "2012-03-01" "2014-02-16" "2011-09-13" "2012-05-06"
## [37736] "2014-02-16" "2011-09-18" "2013-06-27" "2012-03-01" "2013-06-27"
## [37741] "2011-09-18" "2012-05-06" "2013-06-27" "2011-09-13" "2012-03-01"
## [37746] "2011-11-22" "2012-03-01" "2012-03-01" "2012-03-01" "2011-11-15"
## [37751] "2012-03-01" "2011-11-22" "2011-11-15" "2011-11-15" "2011-11-22"
## [37756] "2012-02-11" "2012-02-11" "2012-02-11" "2011-12-31" "2011-12-31"
## [37761] "2011-12-31" "2011-12-31" "2013-04-06" "2013-04-06" "2013-04-06"
## [37766] "2011-12-31" "2012-02-22" "2013-04-06" "2011-12-31" "2012-02-06"
## [37771] "2012-02-06" "2012-02-22" "2012-02-22" "2012-10-08" "2012-10-08"
## [37776] "2012-02-06" "2012-10-08" "2011-12-21" "2011-03-12" "2011-03-12"
## [37781] "2011-12-21" "2011-03-12" "2011-03-12" "2011-12-21" "2011-12-21"
## [37786] "2011-03-12" "2011-12-21" "2012-11-20" "2012-11-20" "2012-11-20"
## [37791] "2012-11-20" "2012-11-20" "2012-11-20" "2013-05-17" "2011-12-18"
## [37796] "2012-03-05" "2013-05-17" "2012-03-05" "2012-03-05" "2011-12-18"
## [37801] "2013-01-26" "2013-01-26" "2013-01-26" "2012-08-09" "2012-08-09"
## [37806] "2013-10-25" "2013-10-25" "2012-08-09" "2013-10-25" "2012-08-09"
## [37811] "2013-10-25" "2012-08-09" "2013-10-25" "2012-05-27" "2013-11-29"
## [37816] "2013-11-19" "2013-11-29" "2013-11-19" "2012-05-27" "2012-05-27"
## [37821] "2013-11-29" "2013-11-19" "2011-07-03" "2013-08-03" "2013-08-03"
## [37826] "2011-07-03" "2013-08-03" "2011-07-03" "2012-01-07" "2012-01-07"
## [37831] "2012-01-07" "2012-07-29" "2012-10-25" "2012-07-29" "2012-10-15"
## [37836] "2012-01-07" "2012-01-07" "2012-10-15" "2012-01-07" "2012-10-25"
## [37841] "2013-02-25" "2013-01-05" "2013-02-25" "2013-02-25" "2013-01-05"
## [37846] "2013-02-25" "2013-02-25" "2012-09-28" "2012-09-28" "2012-09-28"
## [37851] "2013-03-12" "2012-05-24" "2013-03-12" "2013-03-12" "2012-09-28"
## [37856] "2013-03-12" "2013-03-12" "2012-05-24" "2013-03-12" "2012-09-28"
## [37861] "2012-11-21" "2011-07-01" "2011-03-07" "2012-11-21" "2011-07-01"
## [37866] "2011-03-07" "2012-11-21" "2011-08-30" "2014-01-24" "2011-08-30"
## [37871] "2011-08-30" "2013-10-07" "2014-01-24" "2011-08-30" "2012-07-30"
## [37876] "2012-08-22" "2014-01-24" "2012-07-30" "2012-07-30" "2013-10-07"
## [37881] "2011-06-26" "2012-08-22" "2011-08-30" "2012-08-22" "2012-07-30"
## [37886] "2012-08-22" "2012-07-30" "2012-10-04" "2011-06-26" "2012-08-22"
## [37891] "2012-10-04" "2013-03-18" "2013-03-18" "2013-03-18" "2013-03-18"
## [37896] "2013-03-18" "2011-05-18" "2013-10-18" "2011-05-18" "2013-10-18"
## [37901] "2013-10-18" "2013-10-18" "2013-04-09" "2013-10-18" "2011-05-18"
## [37906] "2011-05-18" "2013-04-09" "2013-04-09" "2013-04-09" "2013-08-08"
## [37911] "2013-02-09" "2013-02-09" "2013-05-27" "2013-02-09" "2013-05-27"
## [37916] "2013-05-27" "2013-02-09" "2014-01-10" "2013-02-09" "2014-01-10"
## [37921] "2014-01-10" "2013-08-08" "2013-02-09" "2013-11-30" "2012-06-02"
## [37926] "2013-05-03" "2012-06-02" "2012-06-02" "2013-05-03" "2013-11-30"
## [37931] "2012-09-06" "2013-11-01" "2012-09-06" "2012-09-06" "2012-09-06"
## [37936] "2013-02-15" "2012-03-31" "2013-02-06" "2013-11-01" "2012-09-06"
## [37941] "2013-11-01" "2013-02-06" "2012-09-16" "2013-11-01" "2012-09-16"
## [37946] "2013-11-01" "2011-06-27" "2012-03-31" "2011-06-27" "2012-09-16"
## [37951] "2011-06-27" "2011-06-27" "2011-06-27" "2013-02-15" "2012-09-16"
## [37956] "2012-09-16" "2011-01-30" "2011-01-30" "2011-01-30" "2011-01-30"
## [37961] "2011-01-30" "2011-01-30" "2013-11-21" "2014-01-08" "2013-11-21"
## [37966] "2014-01-08" "2011-03-08" "2014-01-08" "2013-11-21" "2011-03-08"
## [37971] "2011-03-08" "2011-03-08" "2013-11-21" "2012-09-07" "2014-01-08"
## [37976] "2014-01-08" "2013-11-21" "2011-03-08" "2012-09-07" "2011-06-11"
## [37981] "2012-05-11" "2012-05-11" "2011-06-11" "2011-06-11" "2012-05-11"
## [37986] "2011-06-11" "2012-05-11" "2012-05-11" "2013-11-28" "2013-11-28"
## [37991] "2013-11-28" "2013-11-28" "2013-11-28" "2013-10-30" "2013-10-30"
## [37996] "2013-09-28" "2013-10-30" "2013-12-16" "2013-10-21" "2013-10-21"
## [38001] "2013-10-30" "2013-10-30" "2013-09-28" "2013-10-21" "2013-12-16"
## [38006] "2013-10-21" "2013-10-21" "2013-09-28" "2013-11-20" "2013-06-28"
## [38011] "2013-06-28" "2013-06-28" "2013-06-28" "2013-11-20" "2013-06-28"
## [38016] "2013-06-28" "2012-03-26" "2012-05-14" "2012-03-26" "2012-05-14"
## [38021] "2012-05-14" "2012-05-14" "2012-05-14" "2013-08-10" "2013-08-10"
## [38026] "2013-05-29" "2013-05-29" "2013-08-10" "2013-08-10" "2012-12-02"
## [38031] "2013-05-29" "2012-09-17" "2012-12-02" "2013-08-10" "2013-05-29"
## [38036] "2011-07-19" "2013-05-29" "2012-12-02" "2012-09-17" "2012-09-17"
## [38041] "2011-07-19" "2013-05-29" "2011-04-28" "2011-04-28" "2011-04-28"
## [38046] "2011-04-28" "2011-04-28" "2013-09-09" "2013-09-09" "2013-09-09"
## [38051] "2013-09-09" "2013-09-09" "2013-05-09" "2011-11-06" "2013-05-09"
## [38056] "2011-11-06" "2011-11-06" "2013-05-09" "2013-05-09" "2013-05-09"
## [38061] "2011-03-07" "2012-03-07" "2011-03-07" "2012-03-07" "2011-03-07"
## [38066] "2012-03-07" "2011-03-07" "2011-03-07" "2011-08-17" "2011-02-01"
## [38071] "2011-02-01" "2012-06-07" "2011-02-01" "2011-02-01" "2011-02-01"
## [38076] "2011-08-17" "2012-06-07" "2012-06-07" "2012-06-27" "2012-08-10"
## [38081] "2012-08-10" "2012-08-10" "2012-06-27" "2012-08-10" "2012-06-27"
## [38086] "2012-08-10" "2012-04-02" "2012-11-09" "2012-04-11" "2012-11-09"
## [38091] "2011-10-04" "2012-04-02" "2012-04-11" "2011-10-04" "2012-11-09"
## [38096] "2012-11-09" "2011-10-01" "2011-10-01" "2011-09-22" "2011-09-22"
## [38101] "2011-09-22" "2012-09-29" "2012-09-29" "2012-09-25" "2012-09-25"
## [38106] "2012-10-04" "2012-10-04" "2012-11-04" "2012-11-04" "2012-06-04"
## [38111] "2012-11-04" "2012-06-04" "2012-06-04" "2013-11-12" "2013-11-12"
## [38116] "2012-11-04" "2013-10-01" "2013-04-29" "2013-10-01" "2013-10-01"
## [38121] "2013-10-01" "2011-09-04" "2013-04-29" "2011-09-04" "2013-04-29"
## [38126] "2013-10-01" "2011-09-04" "2013-04-29" "2012-10-17" "2012-10-17"
## [38131] "2012-10-17" "2013-04-18" "2012-10-17" "2012-10-17" "2013-04-18"
## [38136] "2013-06-21" "2013-06-21" "2011-12-12" "2013-06-21" "2013-06-21"
## [38141] "2011-12-12" "2011-12-12" "2013-06-21" "2012-07-23" "2011-01-26"
## [38146] "2012-07-23" "2011-01-26" "2011-01-26" "2011-01-26" "2012-07-23"
## [38151] "2013-04-07" "2013-04-07" "2014-02-07" "2014-02-07" "2014-02-07"
## [38156] "2013-04-07" "2013-11-02" "2013-10-02" "2013-09-28" "2013-11-02"
## [38161] "2013-10-02" "2013-11-02" "2012-10-26" "2012-10-26" "2013-09-28"
## [38166] "2012-12-29" "2013-10-02" "2013-11-02" "2012-12-29" "2013-11-02"
## [38171] "2013-09-28" "2011-03-23" "2011-03-23" "2013-03-17" "2013-06-02"
## [38176] "2011-03-23" "2013-03-17" "2013-03-17" "2011-03-23" "2013-03-17"
## [38181] "2011-03-23" "2013-03-17" "2013-03-17" "2013-06-02" "2011-05-19"
## [38186] "2011-05-19" "2011-05-19" "2011-05-19" "2012-02-29" "2011-05-19"
## [38191] "2012-02-29" "2011-05-19" "2012-02-29" "2012-02-29" "2013-12-18"
## [38196] "2013-12-18" "2013-12-18" "2013-12-18" "2013-12-18" "2013-06-28"
## [38201] "2011-05-03" "2013-06-20" "2013-06-28" "2013-06-28" "2011-01-29"
## [38206] "2013-06-20" "2013-06-20" "2013-06-28" "2013-06-28" "2011-05-03"
## [38211] "2013-06-20" "2013-12-16" "2011-01-29" "2013-06-20" "2011-01-27"
## [38216] "2011-05-03" "2011-05-03" "2011-01-27" "2011-05-03" "2013-12-16"
## [38221] "2013-11-02" "2012-03-26" "2013-11-02" "2013-11-02" "2013-11-02"
## [38226] "2011-07-04" "2013-11-02" "2011-07-04" "2011-07-04" "2012-03-26"
## [38231] "2011-09-25" "2011-09-25" "2011-09-25" "2013-05-27" "2013-05-27"
## [38236] "2013-05-27" "2013-04-08" "2013-04-08" "2013-04-08" "2013-05-27"
## [38241] "2013-05-27" "2013-04-08" "2013-05-27" "2013-04-08" "2011-01-25"
## [38246] "2013-03-09" "2011-01-25" "2013-03-09" "2011-10-10" "2011-10-10"
## [38251] "2011-11-16" "2011-11-16" "2011-10-10" "2011-11-16" "2011-12-15"
## [38256] "2012-05-30" "2011-12-15" "2011-12-15" "2011-12-15" "2011-11-16"
## [38261] "2011-11-16" "2011-12-15" "2011-10-10" "2012-05-30" "2012-05-30"
## [38266] "2011-10-10" "2011-02-10" "2011-02-10" "2011-02-10" "2011-02-10"
## [38271] "2012-11-29" "2012-11-29" "2012-12-26" "2012-12-26" "2012-08-28"
## [38276] "2012-08-28" "2012-05-11" "2012-05-11" "2012-08-28" "2012-08-28"
## [38281] "2012-08-28" "2012-09-29" "2012-02-07" "2012-09-29" "2012-02-07"
## [38286] "2012-09-29" "2012-09-29" "2012-09-29" "2012-09-29" "2012-02-07"
## [38291] "2013-09-27" "2013-09-27" "2012-05-23" "2013-09-27" "2012-05-23"
## [38296] "2012-10-12" "2013-09-27" "2011-12-16" "2013-09-27" "2011-12-16"
## [38301] "2013-09-27" "2012-05-23" "2012-10-12" "2012-10-12" "2011-12-09"
## [38306] "2011-12-09" "2011-12-09" "2011-12-09" "2011-12-09" "2012-08-18"
## [38311] "2012-08-18" "2013-07-12" "2012-04-20" "2013-05-20" "2013-07-12"
## [38316] "2012-04-20" "2013-05-20" "2012-04-20" "2013-07-12" "2013-06-09"
## [38321] "2013-07-12" "2013-07-12" "2013-06-09" "2013-05-20" "2013-07-12"
## [38326] "2013-05-19" "2011-10-31" "2011-10-31" "2013-05-19" "2011-10-31"
## [38331] "2013-05-19" "2011-10-31" "2013-05-19" "2011-10-31" "2013-05-19"
## [38336] "2011-10-31" "2012-07-22" "2011-10-20" "2012-07-22" "2011-10-20"
## [38341] "2013-09-06" "2012-07-22" "2012-07-22" "2011-10-20" "2013-09-06"
## [38346] "2013-09-14" "2013-09-06" "2013-09-14" "2013-09-14" "2013-10-28"
## [38351] "2013-10-28" "2012-12-24" "2012-08-27" "2013-10-28" "2013-10-28"
## [38356] "2012-08-27" "2012-12-24" "2012-08-27" "2012-12-24" "2012-08-27"
## [38361] "2013-10-28" "2012-08-27" "2012-12-24" "2012-12-24" "2013-08-16"
## [38366] "2013-08-10" "2013-08-10" "2013-08-10" "2013-08-16" "2013-08-10"
## [38371] "2013-08-16" "2013-08-16" "2013-08-16" "2013-08-10" "2011-12-28"
## [38376] "2011-12-28" "2011-12-28" "2011-12-28" "2012-06-07" "2012-06-07"
## [38381] "2012-06-07" "2012-06-05" "2012-10-27" "2012-06-05" "2012-10-26"
## [38386] "2012-06-05" "2014-02-16" "2014-02-16" "2014-02-16" "2012-10-26"
## [38391] "2014-02-16" "2012-10-22" "2012-10-22" "2014-02-16" "2012-10-27"
## [38396] "2013-09-23" "2011-04-01" "2012-08-03" "2013-09-23" "2013-10-25"
## [38401] "2011-04-01" "2013-09-23" "2013-10-25" "2012-08-03" "2013-09-23"
## [38406] "2011-04-01" "2013-09-23" "2013-09-23" "2012-03-29" "2013-01-05"
## [38411] "2012-03-29" "2012-03-29" "2013-01-05" "2012-12-08" "2012-12-08"
## [38416] "2012-12-08" "2012-07-05" "2013-04-26" "2013-04-26" "2013-11-06"
## [38421] "2013-04-26" "2013-11-06" "2012-07-05" "2013-11-06" "2013-11-06"
## [38426] "2012-07-05" "2013-11-06" "2012-09-01" "2012-09-01" "2013-06-08"
## [38431] "2012-09-01" "2011-03-25" "2011-03-25" "2011-03-25" "2011-03-25"
## [38436] "2011-03-25" "2013-06-08" "2011-03-25" "2013-06-08" "2013-06-08"
## [38441] "2013-03-19" "2013-03-19" "2013-03-19" "2013-03-19" "2013-03-19"
## [38446] "2012-01-09" "2012-01-09" "2013-10-05" "2013-10-05" "2011-03-26"
## [38451] "2012-10-25" "2012-10-25" "2012-10-25" "2011-03-26" "2011-03-26"
## [38456] "2011-03-26" "2012-10-25" "2011-03-26" "2012-10-25" "2012-11-27"
## [38461] "2013-04-30" "2013-04-30" "2012-11-27" "2012-11-27" "2013-04-30"
## [38466] "2012-11-27" "2012-11-27" "2011-12-11" "2013-02-04" "2013-02-04"
## [38471] "2011-12-11" "2012-11-19" "2012-11-19" "2012-12-15" "2012-12-15"
## [38476] "2011-11-09" "2011-11-09" "2011-10-26" "2011-10-26" "2012-06-17"
## [38481] "2012-06-17" "2012-06-17" "2011-10-26" "2012-06-17" "2011-05-22"
## [38486] "2011-05-27" "2011-05-27" "2012-06-17" "2011-05-19" "2011-10-22"
## [38491] "2011-05-19" "2011-05-22" "2011-10-22" "2011-10-22" "2012-10-11"
## [38496] "2012-10-11" "2012-10-11" "2011-07-24" "2012-03-23" "2012-03-23"
## [38501] "2012-03-23" "2012-03-23" "2011-07-24" "2012-03-23" "2012-03-23"
## [38506] "2011-07-24" "2013-11-12" "2011-09-24" "2013-11-12" "2013-11-12"
## [38511] "2013-11-10" "2013-11-10" "2011-09-24" "2013-11-10" "2011-06-26"
## [38516] "2013-07-29" "2011-06-26" "2011-06-26" "2011-06-26" "2013-12-25"
## [38521] "2013-07-29" "2013-12-25" "2013-07-29" "2013-12-25" "2011-06-26"
## [38526] "2013-12-25" "2013-12-25" "2013-12-16" "2012-03-27" "2013-12-16"
## [38531] "2013-12-16" "2012-03-27" "2013-12-16" "2011-02-12" "2012-03-27"
## [38536] "2011-02-12" "2011-02-12" "2013-12-16" "2011-02-12" "2011-07-28"
## [38541] "2012-12-05" "2012-12-05" "2011-07-28" "2012-07-23" "2012-09-15"
## [38546] "2011-07-28" "2012-12-05" "2012-07-23" "2012-09-15" "2014-01-05"
## [38551] "2014-01-05" "2011-11-09" "2011-11-09" "2011-11-09" "2012-12-21"
## [38556] "2013-12-24" "2012-10-08" "2012-10-08" "2012-10-08" "2012-10-08"
## [38561] "2012-12-21" "2012-10-08" "2012-12-21" "2013-12-24" "2013-12-24"
## [38566] "2011-02-17" "2011-02-17" "2011-02-17" "2011-02-17" "2012-12-02"
## [38571] "2012-12-02" "2011-07-19" "2012-12-02" "2012-12-15" "2011-06-14"
## [38576] "2012-12-15" "2011-07-19" "2011-06-14" "2012-07-09" "2012-07-09"
## [38581] "2012-06-30" "2012-06-30" "2012-07-09" "2013-02-06" "2012-06-30"
## [38586] "2012-06-30" "2012-06-30" "2012-07-09" "2013-02-06" "2013-02-06"
## [38591] "2012-07-09" "2011-03-28" "2011-03-31" "2011-03-28" "2011-03-28"
## [38596] "2011-03-28" "2011-03-31" "2011-03-31" "2011-03-28" "2011-03-31"
## [38601] "2011-03-31" "2013-11-09" "2013-11-09" "2013-11-09" "2013-11-09"
## [38606] "2012-01-14" "2012-01-14" "2013-03-08" "2013-03-08" "2013-03-08"
## [38611] "2012-01-14" "2013-03-08" "2013-03-08" "2012-01-14" "2012-01-14"
## [38616] "2012-01-14" "2011-06-09" "2011-06-09" "2011-06-09" "2011-06-09"
## [38621] "2011-02-17" "2011-02-17" "2011-02-17" "2013-03-05" "2012-11-22"
## [38626] "2013-03-05" "2012-11-22" "2011-02-25" "2011-02-25" "2012-11-22"
## [38631] "2011-02-25" "2012-11-22" "2013-03-05" "2012-11-22" "2012-10-11"
## [38636] "2012-10-11" "2013-09-15" "2012-10-11" "2013-09-15" "2012-10-11"
## [38641] "2013-09-15" "2012-10-11" "2012-10-11" "2011-07-27" "2011-08-03"
## [38646] "2011-08-03" "2011-08-03" "2011-07-27" "2011-08-03" "2011-07-27"
## [38651] "2011-07-27" "2011-07-27" "2011-08-03" "2011-07-27" "2011-05-15"
## [38656] "2011-05-15" "2011-05-15" "2013-05-24" "2013-05-24" "2013-05-24"
## [38661] "2013-07-05" "2013-07-05" "2013-05-24" "2013-07-05" "2013-05-24"
## [38666] "2013-07-05" "2013-07-05" "2013-05-12" "2013-05-12" "2013-05-12"
## [38671] "2013-04-03" "2013-05-12" "2013-05-12" "2013-04-03" "2013-10-24"
## [38676] "2013-10-24" "2013-07-07" "2013-07-07" "2013-10-24" "2012-09-05"
## [38681] "2012-09-05" "2012-03-09" "2012-03-09" "2012-03-09" "2012-03-12"
## [38686] "2012-03-12" "2012-03-12" "2013-01-01" "2013-01-01" "2012-10-19"
## [38691] "2011-11-01" "2012-10-19" "2011-11-01" "2011-11-01" "2011-11-01"
## [38696] "2011-11-01" "2011-04-08" "2011-09-08" "2011-09-08" "2013-05-19"
## [38701] "2012-11-03" "2011-04-08" "2012-11-03" "2013-05-19" "2011-09-08"
## [38706] "2012-11-03" "2013-09-09" "2013-06-22" "2013-09-09" "2011-09-02"
## [38711] "2013-06-22" "2013-06-22" "2011-09-02" "2013-06-22" "2013-06-22"
## [38716] "2012-04-06" "2011-10-08" "2013-07-18" "2011-10-08" "2013-07-18"
## [38721] "2011-10-08" "2012-08-03" "2012-08-03" "2013-07-18" "2011-10-08"
## [38726] "2011-10-08" "2012-07-17" "2012-08-03" "2012-07-17" "2012-04-06"
## [38731] "2012-07-17" "2012-08-03" "2012-08-03" "2012-07-17" "2012-08-03"
## [38736] "2012-07-17" "2012-10-30" "2012-10-30" "2012-10-30" "2011-12-22"
## [38741] "2013-11-05" "2013-12-25" "2013-11-05" "2011-12-22" "2013-11-10"
## [38746] "2013-11-10" "2013-11-10" "2011-12-22" "2013-12-25" "2013-11-05"
## [38751] "2011-12-22" "2011-12-22" "2013-12-25" "2012-10-31" "2012-10-31"
## [38756] "2013-02-10" "2013-02-10" "2012-10-31" "2012-10-31" "2012-10-31"
## [38761] "2012-10-17" "2012-10-30" "2012-10-17" "2012-10-30" "2012-10-22"
## [38766] "2012-10-30" "2012-10-22" "2012-10-30" "2012-10-30" "2013-11-23"
## [38771] "2013-04-05" "2013-11-23" "2012-06-13" "2013-11-23" "2012-06-13"
## [38776] "2012-06-13" "2013-04-05" "2013-11-23" "2012-07-26" "2012-02-20"
## [38781] "2012-01-03" "2012-07-30" "2012-02-20" "2012-07-26" "2011-11-03"
## [38786] "2012-07-30" "2012-07-23" "2012-02-20" "2012-01-03" "2012-07-30"
## [38791] "2011-11-03" "2012-07-23" "2011-11-03" "2011-11-03" "2012-01-03"
## [38796] "2011-11-03" "2012-07-23" "2012-07-26" "2011-12-01" "2013-12-28"
## [38801] "2011-12-01" "2011-12-01" "2013-12-28" "2011-12-01" "2013-12-28"
## [38806] "2011-12-01" "2011-06-08" "2011-12-12" "2011-06-08" "2011-12-12"
## [38811] "2012-06-20" "2013-08-22" "2012-10-14" "2011-12-12" "2013-08-22"
## [38816] "2011-06-08" "2012-10-06" "2011-05-30" "2011-12-12" "2011-06-08"
## [38821] "2011-05-30" "2012-10-14" "2011-12-12" "2011-06-08" "2011-05-30"
## [38826] "2012-06-20" "2011-05-30" "2011-05-30" "2012-10-06" "2012-06-20"
## [38831] "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18" "2012-08-18"
## [38836] "2011-03-17" "2013-11-28" "2011-03-17" "2011-03-17" "2011-03-17"
## [38841] "2013-11-28" "2013-01-07" "2012-06-03" "2012-06-03" "2013-01-07"
## [38846] "2013-01-07" "2011-11-20" "2014-01-09" "2014-01-09" "2011-11-20"
## [38851] "2014-01-09" "2011-11-17" "2011-11-17" "2011-11-20" "2011-11-17"
## [38856] "2012-10-11" "2012-10-11" "2012-10-11" "2011-11-24" "2011-11-24"
## [38861] "2011-11-24" "2012-10-11" "2011-11-24" "2012-10-11" "2011-11-24"
## [38866] "2011-07-11" "2011-07-11" "2012-09-08" "2012-09-08" "2012-09-08"
## [38871] "2012-05-12" "2012-09-08" "2011-07-11" "2012-09-08" "2012-09-26"
## [38876] "2012-09-08" "2012-05-12" "2012-09-26" "2012-09-26" "2013-09-14"
## [38881] "2013-09-14" "2013-09-14" "2013-02-22" "2011-10-29" "2013-09-14"
## [38886] "2012-03-14" "2011-07-13" "2012-03-14" "2013-02-22" "2013-09-14"
## [38891] "2011-10-29" "2013-02-22" "2011-10-29" "2012-03-14" "2011-10-29"
## [38896] "2011-10-29" "2011-07-13" "2013-12-07" "2013-12-12" "2013-12-07"
## [38901] "2013-12-12" "2011-03-16" "2011-07-06" "2011-08-09" "2011-07-06"
## [38906] "2011-03-16" "2011-07-06" "2011-07-06" "2011-07-06" "2011-08-09"
## [38911] "2012-07-09" "2011-06-06" "2012-07-09" "2011-06-06" "2012-11-21"
## [38916] "2012-03-28" "2012-11-21" "2012-03-28" "2012-11-21" "2012-11-21"
## [38921] "2012-03-28" "2012-11-21" "2011-01-29" "2011-11-25" "2011-01-29"
## [38926] "2011-01-29" "2011-11-25" "2011-01-29" "2011-11-25" "2011-11-25"
## [38931] "2011-01-29" "2011-11-25" "2011-01-29" "2012-02-23" "2012-04-06"
## [38936] "2012-08-04" "2012-02-29" "2012-08-04" "2012-04-06" "2012-08-04"
## [38941] "2011-10-08" "2012-02-29" "2012-04-06" "2013-12-21" "2012-04-06"
## [38946] "2011-07-26" "2012-02-29" "2012-04-06" "2012-04-06" "2013-12-21"
## [38951] "2012-08-04" "2013-12-21" "2011-07-26" "2012-02-29" "2013-12-21"
## [38956] "2012-02-23" "2011-07-26" "2012-02-23" "2011-10-08" "2013-12-21"
## [38961] "2012-02-23" "2012-02-29" "2012-02-23" "2013-12-21" "2011-12-03"
## [38966] "2011-12-03" "2011-12-03" "2011-12-03" "2011-03-04" "2012-01-26"
## [38971] "2011-07-15" "2011-07-15" "2012-01-26" "2011-03-04" "2011-07-15"
## [38976] "2011-07-15" "2012-01-26" "2011-03-04" "2012-09-06" "2011-10-25"
## [38981] "2011-10-25" "2013-12-03" "2012-09-06" "2013-12-03" "2013-12-03"
## [38986] "2011-10-25" "2013-12-03" "2013-12-03" "2012-09-06" "2011-07-05"
## [38991] "2012-11-22" "2012-11-22" "2013-04-30" "2011-04-09" "2011-07-05"
## [38996] "2013-04-30" "2013-04-30" "2012-11-22" "2012-11-22" "2011-07-05"
## [39001] "2013-04-30" "2012-11-22" "2012-11-22" "2011-04-09" "2011-04-09"
## [39006] "2011-04-09" "2011-04-09" "2013-04-30" "2011-09-19" "2011-12-02"
## [39011] "2011-12-02" "2011-12-02" "2011-09-19" "2011-12-02" "2013-06-22"
## [39016] "2013-06-22" "2013-06-22" "2013-06-22" "2013-06-22" "2011-07-23"
## [39021] "2011-07-23" "2011-07-23" "2012-10-04" "2012-10-04" "2012-08-29"
## [39026] "2012-08-29" "2012-08-29" "2012-08-29" "2012-12-23" "2012-12-23"
## [39031] "2011-05-29" "2011-05-29" "2011-05-29" "2012-08-19" "2011-10-18"
## [39036] "2012-08-19" "2011-02-19" "2011-10-18" "2012-04-19" "2012-04-19"
## [39041] "2011-02-19" "2011-10-18" "2011-02-19" "2011-02-19" "2012-01-21"
## [39046] "2013-08-21" "2012-01-21" "2013-08-21" "2012-01-21" "2013-08-21"
## [39051] "2013-08-21" "2011-07-09" "2013-05-12" "2011-07-09" "2013-05-12"
## [39056] "2014-02-02" "2011-07-09" "2011-07-09" "2012-06-03" "2014-02-02"
## [39061] "2012-06-03" "2011-07-09" "2013-05-12" "2013-05-12" "2013-05-12"
## [39066] "2011-07-09" "2013-01-04" "2013-01-04" "2013-01-04" "2011-10-23"
## [39071] "2013-01-08" "2013-01-04" "2013-01-08" "2011-10-23" "2013-01-08"
## [39076] "2013-01-08" "2013-03-13" "2011-10-23" "2011-10-14" "2013-03-13"
## [39081] "2013-01-08" "2011-10-14" "2011-10-14" "2013-01-04" "2011-02-22"
## [39086] "2014-02-13" "2013-11-16" "2014-02-13" "2011-02-22" "2013-11-16"
## [39091] "2013-11-16" "2011-02-22" "2011-02-22" "2013-11-16" "2013-11-16"
## [39096] "2013-11-16" "2014-02-13" "2013-04-05" "2011-12-14" "2013-11-15"
## [39101] "2011-12-14" "2011-12-14" "2013-04-05" "2013-09-02" "2012-09-29"
## [39106] "2012-10-08" "2012-10-08" "2013-09-02" "2013-11-15" "2012-09-29"
## [39111] "2013-07-19" "2013-07-19" "2013-07-19" "2013-07-19" "2013-07-13"
## [39116] "2012-07-06" "2012-07-06" "2013-07-13" "2013-07-13" "2013-08-16"
## [39121] "2012-07-06" "2013-08-16" "2013-08-16" "2013-08-16" "2013-08-16"
## [39126] "2011-08-07" "2011-08-07" "2011-08-07" "2013-07-30" "2013-07-30"
## [39131] "2011-10-20" "2011-10-20" "2012-11-28" "2012-11-28" "2012-11-28"
## [39136] "2013-12-01" "2013-06-09" "2013-06-09" "2013-12-01" "2013-12-01"
## [39141] "2013-12-01" "2013-12-06" "2013-06-09" "2013-12-06" "2013-12-06"
## [39146] "2013-12-06" "2013-12-06" "2013-12-01" "2012-06-07" "2013-03-12"
## [39151] "2012-06-07" "2013-03-12" "2012-06-07" "2013-03-12" "2012-06-07"
## [39156] "2012-06-07" "2013-03-12" "2013-03-12" "2013-01-21" "2013-01-21"
## [39161] "2013-01-21" "2011-11-03" "2012-03-08" "2011-11-03" "2012-03-08"
## [39166] "2013-01-21" "2011-11-03" "2013-01-21" "2012-03-08" "2013-01-21"
## [39171] "2012-08-30" "2012-11-25" "2012-11-25" "2012-08-30" "2012-08-30"
## [39176] "2011-11-22" "2011-11-21" "2011-11-21" "2011-11-22" "2012-11-25"
## [39181] "2011-11-22" "2011-11-22" "2011-11-21" "2012-11-25" "2011-11-21"
## [39186] "2011-07-22" "2011-07-22" "2011-07-22" "2013-06-30" "2013-06-30"
## [39191] "2013-06-06" "2013-06-06" "2011-04-03" "2011-04-03" "2013-03-14"
## [39196] "2013-06-06" "2013-03-14" "2013-06-11" "2013-06-11" "2013-06-06"
## [39201] "2013-03-14" "2013-03-14" "2013-06-11" "2013-06-06" "2011-04-08"
## [39206] "2011-04-08" "2013-05-03" "2011-04-08" "2011-04-08" "2013-05-03"
## [39211] "2011-04-08" "2013-07-19" "2013-07-19" "2013-07-19" "2013-12-27"
## [39216] "2013-12-27" "2013-12-27" "2013-12-27" "2013-08-14" "2013-05-10"
## [39221] "2013-08-14" "2013-05-10" "2013-08-14" "2013-08-14" "2013-08-14"
## [39226] "2011-05-30" "2011-05-30" "2013-06-28" "2013-06-28" "2011-05-30"
## [39231] "2011-05-30" "2011-05-30" "2014-01-22" "2013-09-20" "2014-01-21"
## [39236] "2012-04-02" "2014-01-22" "2013-09-20" "2014-01-21" "2012-04-02"
## [39241] "2012-06-27" "2012-06-27" "2012-06-02" "2012-06-02" "2012-06-27"
## [39246] "2012-06-02" "2012-06-02" "2012-05-29" "2012-05-29" "2013-11-27"
## [39251] "2013-11-27" "2012-01-22" "2012-05-29" "2012-05-29" "2012-05-29"
## [39256] "2013-11-27" "2012-01-22" "2012-05-29" "2012-04-25" "2012-04-25"
## [39261] "2012-04-25" "2012-01-22" "2013-03-11" "2013-03-11" "2012-08-09"
## [39266] "2013-03-11" "2013-03-11" "2012-08-09" "2012-08-09" "2012-08-09"
## [39271] "2013-03-11" "2013-03-09" "2013-03-09" "2013-03-09" "2012-08-09"
## [39276] "2013-02-16" "2013-02-16" "2013-02-16" "2011-05-21" "2011-05-21"
## [39281] "2011-05-21" "2011-05-21" "2011-05-21" "2011-05-21" "2012-05-03"
## [39286] "2012-05-03" "2012-05-03" "2012-04-27" "2012-04-27" "2012-04-27"
## [39291] "2012-05-03" "2012-04-27" "2013-08-03" "2013-08-03" "2013-11-21"
## [39296] "2013-06-23" "2013-06-23" "2013-06-23" "2013-11-21" "2013-06-23"
## [39301] "2013-06-23" "2013-06-23" "2012-07-02" "2012-07-02" "2012-10-29"
## [39306] "2012-03-25" "2012-03-25" "2013-08-02" "2012-03-25" "2013-11-11"
## [39311] "2012-03-25" "2014-01-20" "2012-08-28" "2012-03-25" "2013-08-02"
## [39316] "2013-08-02" "2012-03-25" "2013-08-02" "2012-10-29" "2012-10-29"
## [39321] "2012-10-29" "2013-08-02" "2012-08-28" "2014-01-27" "2012-10-29"
## [39326] "2014-01-27" "2013-11-11" "2012-10-29" "2013-11-11" "2014-01-20"
## [39331] "2011-11-24" "2011-12-30" "2011-12-30" "2011-12-30" "2011-12-30"
## [39336] "2011-12-30" "2011-06-29" "2011-06-29" "2011-12-30" "2011-11-24"
## [39341] "2011-06-29" "2011-06-29" "2011-11-24" "2011-06-29" "2011-07-14"
## [39346] "2011-07-14" "2011-07-14" "2012-03-25" "2011-10-02" "2011-10-02"
## [39351] "2012-04-14" "2012-03-14" "2012-03-14" "2012-03-25" "2011-10-02"
## [39356] "2012-04-14" "2012-04-14" "2012-04-14" "2012-03-14" "2012-04-14"
## [39361] "2011-10-02" "2011-10-02" "2011-12-20" "2012-08-17" "2011-08-04"
## [39366] "2011-08-04" "2011-12-25" "2012-02-04" "2011-12-25" "2012-02-04"
## [39371] "2012-08-17" "2011-12-25" "2011-08-04" "2012-08-17" "2011-08-04"
## [39376] "2011-12-20" "2011-12-20" "2012-08-17" "2012-08-17" "2011-08-04"
## [39381] "2012-08-17" "2011-05-24" "2011-05-24" "2011-05-24" "2011-05-24"
## [39386] "2011-05-24" "2011-12-04" "2011-12-04" "2011-12-04" "2011-12-04"
## [39391] "2013-09-28" "2011-07-03" "2013-10-03" "2013-11-29" "2013-10-03"
## [39396] "2013-09-28" "2011-07-03" "2013-09-28" "2013-06-22" "2013-10-03"
## [39401] "2013-06-22" "2011-07-03" "2013-12-09" "2013-12-09" "2013-11-29"
## [39406] "2011-04-20" "2013-03-30" "2013-03-30" "2011-04-20" "2013-03-30"
## [39411] "2013-03-30" "2011-04-20" "2011-04-20" "2011-04-20" "2013-03-30"
## [39416] "2011-09-08" "2013-12-03" "2011-09-08" "2012-03-10" "2013-10-09"
## [39421] "2013-10-09" "2013-12-03" "2013-10-09" "2011-02-01" "2011-02-01"
## [39426] "2013-12-03" "2013-12-03" "2012-03-10" "2012-03-10" "2011-02-01"
## [39431] "2012-03-10" "2013-12-03" "2011-09-08" "2011-02-01" "2012-03-10"
## [39436] "2011-09-08" "2011-02-01" "2012-09-13" "2013-03-30" "2013-03-30"
## [39441] "2012-09-13" "2013-03-30" "2012-09-13" "2012-05-22" "2012-05-22"
## [39446] "2013-12-01" "2013-12-01" "2013-12-01" "2011-09-16" "2011-09-16"
## [39451] "2011-09-02" "2011-09-16" "2011-09-16" "2011-09-02" "2011-09-16"
## [39456] "2011-09-16" "2012-09-18" "2012-09-18" "2013-10-07" "2011-12-20"
## [39461] "2012-03-31" "2013-03-07" "2011-04-03" "2011-08-19" "2011-11-15"
## [39466] "2011-08-19" "2011-08-19" "2013-03-07" "2011-08-27" "2011-08-27"
## [39471] "2011-04-03" "2013-03-07" "2013-03-07" "2013-10-07" "2011-12-20"
## [39476] "2011-11-15" "2011-04-03" "2013-10-07" "2011-04-03" "2011-04-03"
## [39481] "2012-03-31" "2011-12-20" "2011-12-20" "2013-03-07" "2013-10-07"
## [39486] "2011-08-27" "2011-12-20" "2013-10-07" "2012-08-02" "2012-08-02"
## [39491] "2012-08-02" "2012-02-10" "2012-02-10" "2012-02-10" "2012-02-09"
## [39496] "2012-02-09" "2012-02-09" "2012-02-10" "2012-02-09" "2012-02-09"
## [39501] "2012-02-10" "2012-03-19" "2012-03-19" "2012-05-10" "2012-05-10"
## [39506] "2012-02-11" "2012-02-11" "2012-05-10" "2012-08-30" "2012-02-11"
## [39511] "2011-07-30" "2012-02-11" "2012-05-10" "2012-05-10" "2012-08-30"
## [39516] "2012-02-11" "2012-08-30" "2012-02-11" "2011-07-30" "2013-10-02"
## [39521] "2012-02-28" "2013-10-02" "2013-10-02" "2012-02-28" "2013-12-13"
## [39526] "2013-10-02" "2013-10-02" "2012-02-28" "2012-03-06" "2013-12-13"
## [39531] "2012-03-06" "2013-12-13" "2012-02-28" "2012-02-28" "2012-11-02"
## [39536] "2012-11-02" "2012-11-02" "2012-11-02" "2012-11-02" "2013-02-18"
## [39541] "2012-12-14" "2012-12-14" "2012-11-02" "2013-02-18" "2014-01-17"
## [39546] "2012-02-19" "2011-03-09" "2014-01-17" "2012-02-19" "2012-02-19"
## [39551] "2011-03-09" "2012-02-19" "2012-02-19" "2012-02-19" "2011-09-28"
## [39556] "2011-10-02" "2011-10-02" "2014-01-07" "2011-09-28" "2011-09-28"
## [39561] "2014-01-07" "2011-10-02" "2012-06-20" "2012-06-20" "2012-06-20"
## [39566] "2011-12-15" "2011-12-15" "2013-12-21" "2011-12-15" "2012-02-07"
## [39571] "2013-12-21" "2012-02-07" "2012-02-07" "2012-02-07" "2013-12-21"
## [39576] "2011-12-15" "2012-02-07" "2011-12-15" "2012-01-20" "2011-05-30"
## [39581] "2011-05-30" "2011-05-30" "2012-01-20" "2014-02-07" "2014-02-07"
## [39586] "2014-02-07" "2011-12-24" "2011-12-24" "2013-09-16" "2013-09-16"
## [39591] "2013-09-16" "2013-09-16" "2013-08-14" "2013-08-14" "2011-10-29"
## [39596] "2011-10-29" "2013-07-01" "2012-12-14" "2011-03-31" "2011-03-31"
## [39601] "2013-07-01" "2012-12-14" "2012-12-14" "2012-12-14" "2012-01-30"
## [39606] "2012-12-14" "2012-01-30" "2011-03-31" "2012-01-30" "2013-07-01"
## [39611] "2012-12-14" "2011-03-26" "2011-03-26" "2011-03-26" "2011-03-26"
## [39616] "2011-03-26" "2011-02-12" "2011-02-12" "2011-12-17" "2011-12-17"
## [39621] "2011-10-09" "2013-09-27" "2011-10-09" "2013-09-27" "2013-10-21"
## [39626] "2013-09-27" "2013-10-21" "2011-10-11" "2011-10-11" "2011-03-15"
## [39631] "2012-05-29" "2012-05-29" "2012-05-28" "2012-05-28" "2012-05-28"
## [39636] "2011-03-15" "2012-05-28" "2012-05-28" "2012-05-28" "2011-02-25"
## [39641] "2011-05-12" "2011-02-25" "2014-01-10" "2011-05-12" "2014-01-10"
## [39646] "2014-01-10" "2014-01-10" "2011-05-12" "2014-01-10" "2011-02-25"
## [39651] "2011-11-26" "2011-06-30" "2012-01-22" "2012-01-22" "2011-06-30"
## [39656] "2011-06-30" "2011-11-26" "2012-12-21" "2013-08-13" "2012-12-21"
## [39661] "2013-08-13" "2013-10-21" "2013-08-13" "2013-08-13" "2013-08-13"
## [39666] "2013-06-22" "2012-12-21" "2013-08-13" "2013-10-21" "2013-06-22"
## [39671] "2013-06-22" "2013-06-22" "2013-06-22" "2011-07-30" "2011-07-30"
## [39676] "2011-07-30" "2012-01-09" "2012-01-09" "2012-01-18" "2012-01-18"
## [39681] "2011-05-20" "2011-05-20" "2011-05-20" "2011-05-20" "2011-05-20"
## [39686] "2011-02-17" "2011-02-17" "2013-10-27" "2011-02-17" "2013-10-27"
## [39691] "2011-02-17" "2012-07-28" "2012-07-28" "2012-09-06" "2012-07-28"
## [39696] "2012-07-28" "2012-07-28" "2012-07-28" "2012-09-06" "2013-02-06"
## [39701] "2014-01-21" "2013-02-06" "2014-01-21" "2014-01-21" "2014-01-21"
## [39706] "2013-02-06" "2014-01-21" "2012-02-10" "2012-02-07" "2012-02-07"
## [39711] "2012-08-27" "2012-08-27" "2012-02-10" "2012-02-10" "2012-02-10"
## [39716] "2011-03-02" "2012-08-27" "2012-02-07" "2012-08-27" "2012-02-07"
## [39721] "2012-02-07" "2012-02-10" "2011-03-02" "2012-08-27" "2013-09-18"
## [39726] "2013-09-18" "2013-09-18" "2012-12-29" "2013-09-18" "2013-09-18"
## [39731] "2012-12-29" "2012-12-29" "2012-06-23" "2011-09-10" "2012-06-23"
## [39736] "2011-11-25" "2011-09-10" "2012-06-23" "2012-06-23" "2011-09-10"
## [39741] "2012-06-23" "2011-11-25" "2012-10-15" "2012-10-15" "2012-09-24"
## [39746] "2012-10-15" "2012-10-15" "2012-10-15" "2012-09-24" "2011-11-19"
## [39751] "2011-11-19" "2011-05-07" "2011-05-07" "2011-05-07" "2013-07-03"
## [39756] "2013-07-03" "2013-06-13" "2013-06-13" "2013-07-03" "2013-11-30"
## [39761] "2013-11-30" "2011-09-07" "2013-11-30" "2011-09-07" "2013-11-30"
## [39766] "2013-11-30" "2011-05-26" "2011-02-27" "2011-05-26" "2011-05-26"
## [39771] "2011-02-27" "2013-07-01" "2014-01-14" "2013-07-01" "2013-07-01"
## [39776] "2014-01-14" "2014-01-14" "2014-01-14" "2013-04-25" "2013-04-25"
## [39781] "2012-12-03" "2011-12-24" "2011-03-11" "2012-12-03" "2011-03-11"
## [39786] "2011-12-24" "2011-12-24" "2011-03-11" "2013-03-05" "2013-03-21"
## [39791] "2013-03-21" "2013-03-05" "2013-03-21" "2013-05-28" "2013-05-28"
## [39796] "2012-11-16" "2012-11-16" "2012-11-16" "2012-11-16" "2012-11-16"
## [39801] "2012-11-16" "2012-06-30" "2012-06-30" "2012-06-30" "2011-01-25"
## [39806] "2012-06-30" "2011-01-25" "2012-07-02" "2012-07-02" "2012-07-02"
## [39811] "2012-01-05" "2012-01-05" "2012-01-05" "2012-01-05" "2012-07-02"
## [39816] "2012-01-05" "2012-10-22" "2012-10-22" "2012-09-05" "2012-10-22"
## [39821] "2012-09-05" "2012-09-05" "2011-04-04" "2011-04-04" "2011-06-19"
## [39826] "2011-04-04" "2011-04-04" "2011-07-03" "2011-06-19" "2011-04-04"
## [39831] "2011-06-19" "2011-06-19" "2011-06-19" "2011-07-03" "2011-05-18"
## [39836] "2011-05-18" "2011-05-18" "2012-11-21" "2012-11-21" "2012-11-21"
## [39841] "2012-11-21" "2012-11-21" "2011-04-12" "2012-04-01" "2012-06-04"
## [39846] "2011-06-06" "2012-04-01" "2011-06-06" "2012-06-04" "2011-04-12"
## [39851] "2012-04-01" "2012-04-01" "2011-06-06" "2012-04-01" "2012-06-04"
## [39856] "2011-06-06" "2011-06-06" "2011-07-18" "2011-07-18" "2013-04-21"
## [39861] "2011-07-28" "2013-04-21" "2011-07-28" "2011-07-28" "2013-04-21"
## [39866] "2011-07-28" "2011-07-18" "2011-07-18" "2011-07-28" "2013-04-21"
## [39871] "2013-04-21" "2013-04-21" "2011-07-18" "2013-08-15" "2013-08-15"
## [39876] "2013-08-15" "2013-08-15" "2012-05-24" "2012-05-24" "2012-01-30"
## [39881] "2012-01-30" "2013-12-15" "2013-12-15" "2012-01-30" "2012-01-30"
## [39886] "2012-01-30" "2013-01-02" "2013-01-02" "2013-12-15" "2012-01-30"
## [39891] "2012-09-02" "2013-04-24" "2012-03-06" "2013-04-24" "2012-03-06"
## [39896] "2012-09-02" "2013-05-18" "2013-05-18" "2013-10-09" "2013-09-06"
## [39901] "2013-09-06" "2013-10-09" "2012-12-29" "2012-12-29" "2012-07-11"
## [39906] "2012-07-11" "2012-07-11" "2013-10-30" "2012-07-11" "2013-10-30"
## [39911] "2013-10-30" "2012-02-18" "2012-02-18" "2012-02-18" "2012-02-18"
## [39916] "2013-09-07" "2013-09-07" "2013-09-07" "2012-02-18" "2013-09-07"
## [39921] "2013-09-07" "2014-01-12" "2013-10-27" "2014-01-12" "2013-10-27"
## [39926] "2011-07-24" "2011-07-24" "2011-11-01" "2011-04-21" "2011-11-01"
## [39931] "2011-07-24" "2011-07-24" "2011-04-21" "2011-04-21" "2011-04-21"
## [39936] "2011-07-24" "2011-04-21" "2011-07-24" "2011-04-21" "2012-12-27"
## [39941] "2012-12-27" "2013-11-14" "2013-11-14" "2013-05-12" "2014-01-31"
## [39946] "2013-05-12" "2014-01-31" "2013-11-14" "2014-01-31" "2013-05-12"
## [39951] "2014-02-07" "2014-01-28" "2014-02-07" "2012-01-14" "2014-01-31"
## [39956] "2012-01-14" "2014-01-28" "2014-02-07" "2014-02-07" "2014-01-28"
## [39961] "2014-01-28" "2014-02-07" "2014-01-28" "2011-02-22" "2011-02-22"
## [39966] "2011-02-22" "2011-08-07" "2011-06-16" "2011-06-16" "2011-08-07"
## [39971] "2012-04-04" "2012-04-04" "2012-04-04" "2011-12-09" "2013-01-06"
## [39976] "2013-12-04" "2011-12-09" "2013-01-06" "2013-12-04" "2011-12-09"
## [39981] "2013-01-30" "2012-02-24" "2013-01-30" "2013-01-30" "2013-11-24"
## [39986] "2013-11-24" "2013-01-30" "2013-01-30" "2012-02-24" "2012-02-24"
## [39991] "2011-10-18" "2011-10-18" "2011-10-18" "2011-10-18" "2011-10-18"
## [39996] "2011-11-07" "2011-11-07" "2011-11-02" "2011-11-02" "2011-08-25"
## [40001] "2011-08-25" "2011-08-25" "2012-03-10" "2011-08-25" "2012-03-10"
## [40006] "2012-10-02" "2012-10-02" "2012-10-02" "2012-03-27" "2012-03-27"
## [40011] "2011-06-30" "2012-03-27" "2012-04-01" "2012-04-01" "2012-04-01"
## [40016] "2012-03-27" "2012-04-01" "2012-03-27" "2012-03-27" "2012-04-01"
## [40021] "2011-06-30" "2011-06-30" "2011-06-30" "2012-04-01" "2011-07-27"
## [40026] "2011-07-27" "2013-12-21" "2012-11-03" "2013-12-21" "2012-11-03"
## [40031] "2013-12-21" "2012-11-03" "2013-12-21" "2012-11-03" "2013-12-21"
## [40036] "2012-11-03" "2012-11-03" "2011-08-26" "2011-08-26" "2013-07-23"
## [40041] "2011-08-26" "2013-07-23" "2013-07-23" "2011-08-26" "2013-08-25"
## [40046] "2013-08-25" "2013-08-25" "2013-01-14" "2012-02-27" "2013-05-02"
## [40051] "2012-02-27" "2012-02-27" "2013-01-14" "2012-02-27" "2012-02-27"
## [40056] "2013-05-02" "2013-01-14" "2011-02-26" "2011-02-26" "2011-02-26"
## [40061] "2011-02-26" "2013-03-21" "2013-03-21" "2013-03-21" "2013-08-23"
## [40066] "2012-04-23" "2013-08-23" "2012-10-27" "2012-04-23" "2013-03-21"
## [40071] "2012-04-23" "2013-03-21" "2012-10-27" "2012-10-27" "2012-10-27"
## [40076] "2012-10-27" "2013-12-28" "2013-12-28" "2014-01-04" "2014-01-04"
## [40081] "2014-01-04" "2013-12-28" "2012-03-20" "2011-11-24" "2013-11-29"
## [40086] "2012-03-20" "2011-11-24" "2013-11-29" "2011-11-24" "2011-11-24"
## [40091] "2012-03-20" "2011-11-24" "2013-11-29" "2013-02-01" "2013-02-01"
## [40096] "2011-07-25" "2011-07-25" "2013-02-01" "2012-09-10" "2013-01-15"
## [40101] "2012-09-10" "2013-01-15" "2013-01-15" "2011-11-14" "2012-11-24"
## [40106] "2011-11-14" "2012-11-24" "2011-11-14" "2011-11-14" "2011-11-14"
## [40111] "2013-03-23" "2013-03-23" "2013-03-23" "2012-07-21" "2012-08-28"
## [40116] "2012-08-29" "2012-08-28" "2013-02-14" "2012-07-21" "2012-08-28"
## [40121] "2012-12-17" "2013-02-14" "2012-08-29" "2012-07-21" "2012-12-17"
## [40126] "2012-08-29" "2012-08-29" "2012-12-17" "2012-12-17" "2012-12-17"
## [40131] "2012-08-21" "2012-08-21" "2012-08-28" "2012-08-14" "2012-08-14"
## [40136] "2012-08-14" "2012-08-14" "2011-05-26" "2011-05-26" "2012-08-14"
## [40141] "2013-06-10" "2013-06-10" "2013-06-10" "2011-12-30" "2011-12-30"
## [40146] "2011-12-30" "2011-10-07" "2011-10-07" "2011-06-13" "2011-06-13"
## [40151] "2013-12-29" "2013-12-29" "2013-12-29" "2013-09-29" "2013-10-21"
## [40156] "2013-10-04" "2013-09-24" "2013-09-24" "2013-10-21" "2013-09-29"
## [40161] "2013-09-29" "2013-10-04" "2013-09-24" "2013-10-21" "2013-10-04"
## [40166] "2013-09-29" "2011-06-27" "2011-07-04" "2011-08-27" "2011-07-04"
## [40171] "2011-08-27" "2011-08-27" "2011-06-27" "2011-07-04" "2011-07-04"
## [40176] "2011-06-27" "2011-06-27" "2011-06-27" "2011-08-27" "2011-06-27"
## [40181] "2011-08-27" "2011-08-27" "2011-07-04" "2011-07-04" "2013-05-10"
## [40186] "2013-10-21" "2013-05-10" "2013-05-10" "2013-10-21" "2012-10-06"
## [40191] "2012-10-06" "2012-10-06" "2012-10-06" "2012-10-06" "2012-05-16"
## [40196] "2012-05-16" "2011-11-17" "2013-11-06" "2013-11-03" "2011-05-07"
## [40201] "2011-05-07" "2011-05-07" "2013-11-06" "2013-11-03" "2011-11-17"
## [40206] "2011-05-07" "2011-05-07" "2011-11-17" "2011-11-17" "2013-11-03"
## [40211] "2013-11-03" "2011-11-17" "2013-11-03" "2011-11-17" "2013-11-06"
## [40216] "2013-11-03" "2013-11-06" "2013-11-06" "2013-11-06" "2013-08-03"
## [40221] "2013-11-25" "2013-11-25" "2013-08-03" "2013-08-03" "2013-08-03"
## [40226] "2013-08-03" "2013-11-25" "2013-08-03" "2012-04-13" "2011-09-05"
## [40231] "2012-11-13" "2011-09-05" "2011-09-03" "2011-09-03" "2012-04-13"
## [40236] "2012-04-13" "2012-04-13" "2011-09-03" "2011-09-05" "2011-09-05"
## [40241] "2011-09-09" "2011-09-03" "2011-09-03" "2012-04-13" "2012-04-13"
## [40246] "2012-11-13" "2011-09-09" "2011-09-09" "2012-11-13" "2012-11-13"
## [40251] "2012-11-13" "2011-09-05" "2011-09-09" "2011-09-09" "2012-02-24"
## [40256] "2012-02-24" "2012-12-18" "2012-12-18" "2012-02-24" "2012-12-18"
## [40261] "2011-11-19" "2011-02-13" "2011-11-17" "2011-11-19" "2011-02-13"
## [40266] "2011-11-17" "2011-11-17" "2011-02-13" "2011-11-19" "2013-12-15"
## [40271] "2013-12-15" "2011-11-19" "2012-04-25" "2013-12-15" "2013-12-15"
## [40276] "2012-04-25" "2011-11-19" "2011-11-19" "2013-12-15" "2013-03-03"
## [40281] "2013-03-03" "2013-03-03" "2014-02-17" "2014-02-17" "2014-02-07"
## [40286] "2014-02-07" "2014-02-17" "2014-02-07" "2012-11-28" "2013-04-09"
## [40291] "2012-11-28" "2012-11-28" "2013-04-09" "2013-04-09" "2013-04-09"
## [40296] "2012-11-28" "2012-11-28" "2011-06-07" "2011-06-07" "2011-06-07"
## [40301] "2014-02-13" "2011-08-07" "2011-08-17" "2011-08-17" "2011-08-07"
## [40306] "2014-02-13" "2014-02-13" "2011-08-07" "2014-02-13" "2011-08-17"
## [40311] "2014-02-13" "2013-12-18" "2013-12-18" "2013-12-18" "2013-12-13"
## [40316] "2013-12-13" "2013-12-16" "2013-10-28" "2012-10-04" "2013-10-28"
## [40321] "2012-11-05" "2011-10-21" "2013-10-28" "2013-12-13" "2013-10-20"
## [40326] "2013-12-16" "2013-10-20" "2013-10-28" "2013-12-16" "2013-10-20"
## [40331] "2013-10-20" "2011-10-21" "2012-11-05" "2013-10-20" "2012-10-04"
## [40336] "2013-10-28" "2012-10-04" "2013-02-22" "2011-11-12" "2011-11-12"
## [40341] "2013-02-22" "2012-04-29" "2013-02-22" "2012-04-29" "2011-11-12"
## [40346] "2012-08-10" "2012-08-10" "2012-08-10" "2011-08-25" "2012-08-10"
## [40351] "2012-08-10" "2011-08-25" "2013-02-02" "2011-04-08" "2011-04-08"
## [40356] "2013-02-02" "2013-02-02" "2013-01-05" "2012-06-16" "2012-06-11"
## [40361] "2013-01-05" "2013-01-05" "2013-01-05" "2012-06-11" "2012-06-11"
## [40366] "2012-06-19" "2012-06-11" "2011-11-05" "2012-06-19" "2013-01-05"
## [40371] "2011-11-05" "2013-01-05" "2012-06-16" "2012-06-16" "2012-06-11"
## [40376] "2012-06-16" "2012-06-16" "2012-06-19" "2011-11-05" "2012-06-19"
## [40381] "2012-06-16" "2012-06-11" "2011-11-05" "2012-06-19" "2012-06-19"
## [40386] "2011-11-05" "2013-08-29" "2013-04-01" "2013-04-01" "2011-06-11"
## [40391] "2013-04-01" "2013-08-29" "2013-04-01" "2013-08-29" "2013-08-29"
## [40396] "2013-08-29" "2011-06-11" "2013-04-01" "2011-06-11" "2011-02-22"
## [40401] "2013-06-25" "2013-06-25" "2012-02-24" "2013-06-25" "2012-02-24"
## [40406] "2012-02-24" "2011-02-22" "2012-02-24" "2011-02-22" "2012-02-24"
## [40411] "2012-02-24" "2013-06-23" "2013-06-23" "2013-06-23" "2013-12-22"
## [40416] "2013-07-17" "2013-07-17" "2013-12-22" "2013-12-22" "2013-12-22"
## [40421] "2013-07-17" "2013-12-22" "2012-06-05" "2012-06-05" "2011-10-09"
## [40426] "2014-02-18" "2011-10-09" "2013-02-26" "2013-02-26" "2013-02-26"
## [40431] "2011-05-19" "2014-02-18" "2012-06-05" "2013-02-26" "2014-02-18"
## [40436] "2011-05-19" "2011-05-19" "2014-02-18" "2012-06-05" "2011-10-09"
## [40441] "2013-02-26" "2012-05-13" "2011-12-18" "2012-05-13" "2012-05-07"
## [40446] "2012-05-13" "2011-12-18" "2011-12-18" "2011-12-18" "2011-12-18"
## [40451] "2011-12-18" "2012-05-07" "2012-05-07" "2013-10-16" "2013-10-16"
## [40456] "2013-10-02" "2013-10-02" "2013-10-16" "2011-09-17" "2014-01-24"
## [40461] "2013-10-16" "2014-01-24" "2011-09-17" "2011-09-17" "2013-10-16"
## [40466] "2011-09-17" "2011-09-17" "2011-05-07" "2011-05-07" "2011-05-07"
## [40471] "2011-05-07" "2013-01-09" "2013-01-09" "2011-05-07" "2013-01-09"
## [40476] "2013-09-30" "2013-09-30" "2013-09-30" "2013-09-30" "2013-09-30"
## [40481] "2012-05-17" "2012-05-17" "2012-05-17" "2011-12-23" "2011-12-23"
## [40486] "2011-09-15" "2011-12-23" "2011-12-23" "2011-09-15" "2011-09-15"
## [40491] "2011-12-23" "2011-09-15" "2013-03-04" "2012-04-22" "2013-03-04"
## [40496] "2012-04-22" "2013-03-04" "2012-04-22" "2012-04-22" "2011-03-30"
## [40501] "2013-06-18" "2013-06-18" "2012-04-22" "2013-06-18" "2011-03-30"
## [40506] "2013-11-28" "2013-11-28" "2013-11-28" "2013-11-28" "2013-11-28"
## [40511] "2011-11-29" "2011-05-11" "2011-05-11" "2011-05-11" "2011-05-11"
## [40516] "2011-05-31" "2011-05-31" "2011-11-29" "2011-04-25" "2011-04-25"
## [40521] "2011-05-11" "2011-04-25" "2013-05-06" "2011-08-16" "2013-05-06"
## [40526] "2013-05-06" "2011-08-16" "2013-05-06" "2011-08-16" "2013-05-06"
## [40531] "2011-04-10" "2011-04-10" "2011-04-10" "2011-04-10" "2012-04-28"
## [40536] "2011-05-22" "2011-05-22" "2011-05-22" "2011-05-22" "2012-04-28"
## [40541] "2012-12-02" "2012-12-02" "2011-06-24" "2011-06-24" "2011-06-24"
## [40546] "2011-05-16" "2011-05-16" "2011-05-16" "2011-06-24" "2011-05-16"
## [40551] "2012-12-02" "2012-05-11" "2012-05-11" "2011-07-17" "2013-01-21"
## [40556] "2013-01-21" "2012-05-11" "2012-05-11" "2013-01-21" "2011-07-17"
## [40561] "2011-07-17" "2011-07-17" "2013-01-21" "2013-01-21" "2012-05-11"
## [40566] "2011-07-17" "2011-07-11" "2011-07-11" "2011-07-11" "2011-07-11"
## [40571] "2011-07-11" "2011-05-18" "2011-05-18" "2011-05-18" "2013-05-02"
## [40576] "2013-05-02" "2013-05-02" "2011-08-28" "2013-05-02" "2012-03-10"
## [40581] "2012-03-10" "2012-03-10" "2011-08-28" "2013-05-02" "2013-10-02"
## [40586] "2011-06-27" "2011-06-27" "2011-11-28" "2012-03-06" "2011-06-27"
## [40591] "2011-06-27" "2011-11-28" "2012-03-06" "2011-06-27" "2013-04-06"
## [40596] "2012-03-06" "2011-11-28" "2013-04-06" "2011-11-28" "2011-11-28"
## [40601] "2013-10-02" "2013-04-24" "2011-07-03" "2011-07-03" "2011-07-03"
## [40606] "2011-07-03" "2011-07-03" "2013-04-24" "2011-08-13" "2011-01-28"
## [40611] "2013-05-01" "2011-01-28" "2011-08-13" "2011-08-13" "2013-03-27"
## [40616] "2013-03-27" "2013-05-01" "2011-02-01" "2013-03-27" "2013-05-01"
## [40621] "2013-03-27" "2011-02-01" "2013-11-19" "2013-11-19" "2013-11-19"
## [40626] "2013-11-19" "2012-01-16" "2013-03-03" "2012-01-16" "2012-01-16"
## [40631] "2013-03-03" "2013-08-25" "2013-03-03" "2013-08-25" "2013-08-04"
## [40636] "2012-01-16" "2012-01-16" "2013-08-25" "2013-08-04" "2013-08-25"
## [40641] "2013-08-25" "2013-03-03" "2013-08-25" "2013-08-04" "2013-08-04"
## [40646] "2013-08-04" "2012-10-20" "2012-10-20" "2012-10-20" "2012-10-20"
## [40651] "2012-02-13" "2013-10-14" "2012-02-13" "2012-10-20" "2012-10-20"
## [40656] "2013-10-14" "2012-02-13" "2012-02-13" "2013-10-14" "2012-02-13"
## [40661] "2013-06-17" "2013-01-25" "2012-07-30" "2013-01-25" "2012-07-21"
## [40666] "2012-07-30" "2012-07-21" "2013-01-25" "2012-07-30" "2013-06-17"
## [40671] "2012-07-21" "2012-03-04" "2012-03-04" "2012-11-09" "2012-01-24"
## [40676] "2012-01-24" "2012-11-09" "2012-03-04" "2012-01-24" "2012-03-04"
## [40681] "2012-11-04" "2012-11-09" "2012-01-24" "2012-03-04" "2012-11-04"
## [40686] "2012-11-04" "2012-03-04" "2012-01-24" "2011-05-01" "2011-05-01"
## [40691] "2011-05-01" "2011-08-05" "2011-08-31" "2011-08-31" "2011-08-05"
## [40696] "2011-08-05" "2011-08-05" "2011-08-05" "2011-08-31" "2012-10-30"
## [40701] "2012-10-30" "2012-10-30" "2012-02-15" "2012-10-30" "2012-02-15"
## [40706] "2012-02-15" "2012-02-15" "2013-05-15" "2013-05-15" "2013-05-15"
## [40711] "2013-08-16" "2013-08-16" "2013-05-15" "2013-08-16" "2013-05-15"
## [40716] "2013-05-15" "2013-08-16" "2012-01-26" "2012-01-26" "2012-01-26"
## [40721] "2012-01-26" "2012-01-26" "2012-01-26" "2012-09-02" "2012-12-10"
## [40726] "2012-12-10" "2012-01-03" "2012-01-09" "2012-01-03" "2012-11-07"
## [40731] "2012-01-09" "2012-09-02" "2012-11-07" "2012-11-07" "2012-01-09"
## [40736] "2012-01-03" "2012-08-21" "2012-01-06" "2012-01-12" "2012-01-06"
## [40741] "2014-02-03" "2013-01-19" "2012-08-21" "2012-01-12" "2013-01-19"
## [40746] "2013-01-19" "2013-01-19" "2012-01-28" "2012-01-06" "2014-02-03"
## [40751] "2014-02-03" "2013-01-19" "2014-02-03" "2012-01-28" "2014-02-03"
## [40756] "2013-01-19" "2012-01-12" "2011-09-10" "2014-01-16" "2011-09-10"
## [40761] "2011-02-04" "2011-02-04" "2011-09-10" "2014-01-16" "2011-04-14"
## [40766] "2012-04-09" "2011-04-03" "2011-03-26" "2011-04-03" "2012-11-17"
## [40771] "2013-12-21" "2011-04-03" "2011-04-03" "2011-03-26" "2011-03-26"
## [40776] "2011-03-26" "2011-04-03" "2013-04-08" "2012-11-17" "2011-04-03"
## [40781] "2013-12-21" "2013-04-08" "2011-04-14" "2013-12-21" "2011-03-26"
## [40786] "2012-04-09" "2011-03-26" "2013-12-21" "2012-04-09" "2013-04-08"
## [40791] "2013-12-21" "2012-10-28" "2012-10-28" "2012-10-28" "2011-06-09"
## [40796] "2011-04-14" "2011-12-30" "2011-02-16" "2011-12-30" "2011-04-15"
## [40801] "2011-12-30" "2011-04-14" "2011-06-09" "2011-04-15" "2011-04-14"
## [40806] "2011-02-16" "2011-12-30" "2011-04-15" "2011-02-16" "2011-08-20"
## [40811] "2011-08-20" "2011-08-20" "2013-01-01" "2013-01-01" "2013-01-01"
## [40816] "2013-01-01" "2013-01-01" "2013-01-01" "2012-02-16" "2013-02-25"
## [40821] "2013-02-25" "2012-02-16" "2013-02-25" "2013-02-25" "2012-02-16"
## [40826] "2013-04-25" "2013-04-25" "2013-04-25" "2013-04-25" "2013-02-25"
## [40831] "2013-04-25" "2013-06-19" "2013-06-19" "2013-06-19" "2012-08-30"
## [40836] "2012-08-30" "2012-08-30" "2012-08-30" "2013-10-11" "2013-10-11"
## [40841] "2012-04-09" "2013-10-10" "2012-04-09" "2012-04-09" "2012-04-09"
## [40846] "2012-04-09" "2012-04-09" "2013-10-11" "2012-06-14" "2012-06-14"
## [40851] "2013-10-11" "2012-06-14" "2013-10-27" "2013-10-27" "2013-10-10"
## [40856] "2013-10-10" "2013-10-10" "2013-11-11" "2013-11-11" "2013-11-11"
## [40861] "2013-11-11" "2011-02-09" "2012-01-30" "2011-03-23" "2011-03-23"
## [40866] "2011-02-09" "2012-01-30" "2013-11-11" "2011-03-23" "2011-03-23"
## [40871] "2013-06-07" "2013-06-07" "2011-03-23" "2012-01-30" "2013-11-11"
## [40876] "2012-01-30" "2011-03-23" "2013-12-02" "2013-12-02" "2012-01-26"
## [40881] "2013-12-02" "2013-12-02" "2012-01-26" "2012-01-26" "2012-01-26"
## [40886] "2012-09-06" "2012-09-06" "2012-01-26" "2013-12-02" "2012-12-12"
## [40891] "2011-04-29" "2011-04-29" "2012-12-12" "2012-08-17" "2012-12-12"
## [40896] "2012-12-12" "2012-12-12" "2012-08-17" "2011-10-31" "2011-04-01"
## [40901] "2012-07-12" "2011-04-01" "2012-07-12" "2011-04-01" "2011-10-31"
## [40906] "2012-07-16" "2012-07-16" "2011-10-31" "2011-04-01" "2011-09-14"
## [40911] "2011-09-14" "2011-09-14" "2011-09-14" "2012-07-02" "2012-07-02"
## [40916] "2011-09-14" "2013-01-15" "2011-06-25" "2012-07-02" "2012-07-02"
## [40921] "2013-01-15" "2012-07-02" "2013-01-15" "2011-06-25" "2011-06-09"
## [40926] "2012-11-12" "2011-06-09" "2012-11-12" "2012-11-12" "2012-11-12"
## [40931] "2012-11-12" "2011-07-15" "2011-12-08" "2011-07-15" "2011-11-29"
## [40936] "2011-11-29" "2011-11-29" "2011-11-29" "2011-12-08" "2011-07-15"
## [40941] "2011-12-08" "2011-12-08" "2011-12-08" "2011-11-29" "2012-06-22"
## [40946] "2012-02-06" "2013-05-26" "2013-05-26" "2013-05-26" "2013-05-26"
## [40951] "2012-02-06" "2012-02-06" "2013-05-26" "2012-02-06" "2012-02-06"
## [40956] "2012-06-22" "2013-05-26" "2012-09-14" "2012-04-18" "2012-04-18"
## [40961] "2012-04-18" "2012-06-02" "2012-09-14" "2012-04-18" "2012-04-18"
## [40966] "2012-06-02" "2011-06-30" "2012-09-14" "2011-06-30" "2012-06-02"
## [40971] "2013-01-14" "2013-01-14" "2013-07-22" "2013-01-14" "2013-07-22"
## [40976] "2013-07-22" "2013-07-22" "2013-07-22" "2014-01-01" "2012-12-31"
## [40981] "2012-12-31" "2014-01-01" "2014-01-01" "2014-01-01" "2014-01-01"
## [40986] "2014-01-01" "2013-01-31" "2013-06-25" "2013-06-25" "2013-06-25"
## [40991] "2013-01-31" "2011-05-26" "2011-05-26" "2013-06-25" "2013-06-25"
## [40996] "2011-05-26" "2012-05-15" "2011-09-23" "2014-01-15" "2011-09-23"
## [41001] "2011-09-23" "2011-09-23" "2014-01-15" "2011-09-23" "2012-05-15"
## [41006] "2012-05-15" "2012-05-15" "2011-09-23" "2012-05-15" "2012-09-26"
## [41011] "2012-06-03" "2012-06-03" "2012-05-30" "2012-05-30" "2012-09-26"
## [41016] "2012-06-03" "2012-09-26" "2012-06-03" "2012-05-30" "2012-05-30"
## [41021] "2013-10-16" "2012-12-13" "2014-01-13" "2013-10-16" "2013-10-16"
## [41026] "2012-12-13" "2013-10-16" "2014-01-13" "2012-12-13" "2012-12-13"
## [41031] "2012-05-30" "2011-05-05" "2012-05-30" "2013-08-10" "2012-05-30"
## [41036] "2011-05-05" "2012-05-30" "2012-05-30" "2011-05-05" "2013-08-10"
## [41041] "2013-08-10" "2013-01-04" "2013-01-04" "2011-05-05" "2011-03-27"
## [41046] "2012-05-08" "2014-01-09" "2011-03-27" "2012-05-08" "2012-05-08"
## [41051] "2014-01-09" "2012-05-08" "2011-03-27" "2014-01-09" "2011-11-27"
## [41056] "2011-11-27" "2011-05-19" "2011-05-19" "2012-06-28" "2012-12-29"
## [41061] "2012-06-28" "2013-11-15" "2013-06-11" "2013-11-15" "2012-12-29"
## [41066] "2013-06-11" "2013-11-15" "2013-06-11" "2012-12-29" "2013-06-11"
## [41071] "2012-06-28" "2012-12-29" "2012-12-29" "2013-06-11" "2012-12-29"
## [41076] "2011-05-30" "2011-05-30" "2011-05-30" "2011-12-21" "2011-05-30"
## [41081] "2011-12-21" "2011-05-30" "2011-12-21" "2011-12-21" "2011-12-29"
## [41086] "2013-06-17" "2013-06-17" "2013-05-12" "2013-05-16" "2013-06-17"
## [41091] "2013-06-17" "2011-12-29" "2013-05-12" "2013-06-17" "2013-05-16"
## [41096] "2012-07-06" "2012-07-06" "2011-07-19" "2011-07-19" "2012-07-06"
## [41101] "2012-07-06" "2011-07-19" "2012-07-06" "2011-07-02" "2011-09-13"
## [41106] "2011-07-02" "2011-09-13" "2011-07-02" "2011-09-13" "2011-09-13"
## [41111] "2011-07-02" "2011-09-13" "2011-07-02" "2011-07-02" "2011-03-20"
## [41116] "2011-09-13" "2011-06-07" "2011-06-07" "2011-06-07" "2011-03-20"
## [41121] "2011-06-07" "2011-06-07" "2013-02-20" "2013-10-23" "2013-10-23"
## [41126] "2013-10-23" "2013-10-23" "2013-10-23" "2013-03-13" "2013-02-20"
## [41131] "2013-03-13" "2013-03-13" "2013-03-12" "2013-03-12" "2013-03-10"
## [41136] "2013-03-10" "2012-05-05" "2012-05-04" "2012-05-05" "2012-05-05"
## [41141] "2012-08-21" "2012-05-04" "2013-03-05" "2012-08-21" "2012-08-21"
## [41146] "2013-03-05" "2012-05-04" "2012-05-24" "2011-10-18" "2011-10-11"
## [41151] "2011-10-18" "2011-10-11" "2012-05-24" "2012-05-24" "2012-04-14"
## [41156] "2012-04-14" "2012-05-01" "2013-02-02" "2012-04-14" "2012-04-14"
## [41161] "2012-05-01" "2013-02-02" "2012-05-01" "2012-05-01" "2013-02-02"
## [41166] "2012-04-14" "2013-03-09" "2013-03-09" "2013-03-09" "2012-06-23"
## [41171] "2012-06-23" "2013-03-09" "2013-03-09" "2013-03-09" "2013-11-20"
## [41176] "2013-11-20" "2013-11-20" "2013-10-02" "2012-06-25" "2013-04-18"
## [41181] "2013-10-02" "2013-10-02" "2013-10-02" "2013-10-02" "2012-06-25"
## [41186] "2012-05-22" "2012-06-25" "2013-04-18" "2012-03-21" "2013-04-24"
## [41191] "2013-04-18" "2012-06-25" "2013-04-24" "2012-06-25" "2013-04-24"
## [41196] "2012-06-25" "2012-03-21" "2012-05-22" "2013-08-28" "2011-08-08"
## [41201] "2013-06-07" "2013-08-28" "2013-06-07" "2013-08-28" "2011-08-08"
## [41206] "2011-08-08" "2011-08-08" "2011-08-08" "2013-08-28" "2013-08-28"
## [41211] "2012-08-20" "2012-08-20" "2011-02-18" "2011-02-18" "2013-01-23"
## [41216] "2013-01-23" "2012-02-16" "2012-02-16" "2012-02-09" "2012-02-16"
## [41221] "2012-02-09" "2012-02-09" "2013-01-23" "2013-01-23" "2012-02-09"
## [41226] "2012-02-16" "2012-02-09" "2012-02-16" "2013-01-23" "2013-07-06"
## [41231] "2013-07-06" "2012-08-15" "2012-08-15" "2012-08-16" "2012-08-15"
## [41236] "2012-08-16" "2012-08-15" "2012-08-16" "2012-08-16" "2012-08-16"
## [41241] "2012-08-15" "2012-08-16" "2012-08-16" "2013-04-04" "2013-04-04"
## [41246] "2013-04-04" "2012-12-31" "2011-04-27" "2011-04-27" "2012-12-31"
## [41251] "2013-03-19" "2011-04-27" "2013-03-19" "2011-04-27" "2011-04-27"
## [41256] "2011-01-30" "2011-01-30" "2011-10-08" "2013-09-27" "2013-09-27"
## [41261] "2012-05-07" "2012-02-18" "2012-02-18" "2012-05-07" "2011-10-08"
## [41266] "2013-04-21" "2013-04-21" "2011-08-23" "2011-08-23" "2011-08-23"
## [41271] "2013-04-21" "2011-08-23" "2013-04-21" "2013-04-21" "2011-08-23"
## [41276] "2013-04-21" "2013-04-21" "2012-11-23" "2012-10-19" "2012-10-19"
## [41281] "2012-11-23" "2012-10-19" "2012-11-23" "2012-11-23" "2012-11-23"
## [41286] "2012-09-28" "2011-12-07" "2013-04-12" "2011-12-07" "2013-04-12"
## [41291] "2011-12-07" "2013-04-12" "2012-09-28" "2011-12-07" "2011-12-07"
## [41296] "2011-07-19" "2011-07-15" "2011-07-19" "2011-07-19" "2013-05-24"
## [41301] "2013-05-24" "2013-07-20" "2013-05-24" "2013-07-20" "2013-11-30"
## [41306] "2013-05-24" "2011-07-15" "2013-07-20" "2013-07-20" "2011-07-15"
## [41311] "2013-05-24" "2013-11-30" "2011-07-15" "2013-07-20" "2011-07-15"
## [41316] "2011-07-19" "2011-07-19" "2012-05-10" "2012-05-10" "2012-05-10"
## [41321] "2014-02-18" "2014-02-18" "2014-02-18" "2014-02-18" "2012-12-01"
## [41326] "2012-12-01" "2012-12-01" "2012-10-20" "2011-09-25" "2012-10-20"
## [41331] "2012-10-17" "2011-09-25" "2012-10-17" "2012-10-17" "2012-10-20"
## [41336] "2012-10-20" "2012-10-17" "2012-10-13" "2012-10-13" "2012-10-13"
## [41341] "2012-10-13" "2012-07-18" "2013-12-31" "2013-12-31" "2012-07-10"
## [41346] "2013-12-31" "2012-03-26" "2012-07-18" "2012-07-10" "2012-07-10"
## [41351] "2013-08-07" "2012-07-16" "2013-08-14" "2012-03-26" "2012-07-16"
## [41356] "2013-08-14" "2012-07-18" "2012-07-16" "2013-08-07" "2012-12-21"
## [41361] "2012-09-13" "2011-09-17" "2011-09-17" "2012-09-13" "2012-09-13"
## [41366] "2012-05-30" "2012-05-30" "2011-09-17" "2012-12-21" "2011-09-17"
## [41371] "2011-09-17" "2013-03-10" "2013-03-10" "2013-03-10" "2013-08-16"
## [41376] "2011-09-02" "2011-09-02" "2013-08-16" "2013-08-16" "2013-08-16"
## [41381] "2011-09-02" "2013-08-16" "2011-09-02" "2013-08-16" "2011-09-02"
## [41386] "2011-05-20" "2011-04-14" "2011-05-20" "2011-04-14" "2011-10-03"
## [41391] "2013-10-09" "2011-10-03" "2013-10-09" "2011-10-03" "2013-10-09"
## [41396] "2011-10-03" "2011-10-03" "2012-03-31" "2012-03-31" "2012-03-31"
## [41401] "2011-05-22" "2011-12-04" "2011-05-22" "2011-12-04" "2011-07-16"
## [41406] "2011-12-04" "2011-05-22" "2011-05-22" "2011-07-16" "2011-07-16"
## [41411] "2011-02-03" "2011-02-03" "2012-10-06" "2012-10-06" "2012-12-23"
## [41416] "2013-10-31" "2012-10-06" "2013-10-31" "2012-12-23" "2012-12-23"
## [41421] "2012-12-23" "2012-10-06" "2013-10-31" "2012-12-23" "2014-01-31"
## [41426] "2013-12-06" "2014-01-31" "2011-11-06" "2011-11-06" "2011-11-06"
## [41431] "2011-07-27" "2011-11-06" "2014-01-31" "2013-12-06" "2011-07-27"
## [41436] "2013-12-06" "2013-12-06" "2013-03-02" "2011-11-06" "2014-01-31"
## [41441] "2013-03-02" "2012-04-13" "2013-01-21" "2013-01-17" "2013-11-04"
## [41446] "2013-11-04" "2013-01-21" "2013-01-21" "2012-04-13" "2013-01-17"
## [41451] "2013-11-04" "2012-04-13" "2013-09-30" "2013-05-30" "2012-07-29"
## [41456] "2013-09-30" "2013-05-30" "2013-05-30" "2012-07-29" "2013-05-30"
## [41461] "2013-05-30" "2012-07-29" "2013-05-30" "2011-03-21" "2011-03-21"
## [41466] "2013-04-16" "2013-04-16" "2013-11-22" "2013-11-22" "2013-11-22"
## [41471] "2011-11-22" "2011-11-22" "2011-11-22" "2011-11-22" "2011-11-22"
## [41476] "2013-11-11" "2013-11-11" "2014-01-14" "2013-11-11" "2013-11-11"
## [41481] "2013-11-11" "2013-04-04" "2013-04-04" "2011-05-16" "2014-01-14"
## [41486] "2013-04-04" "2011-05-16" "2011-04-04" "2011-04-04" "2011-04-04"
## [41491] "2011-04-04" "2011-04-24" "2011-04-04" "2011-04-24" "2011-04-24"
## [41496] "2011-04-24" "2011-04-24" "2012-09-25" "2012-09-25" "2012-09-25"
## [41501] "2012-04-07" "2012-04-07" "2012-04-07" "2012-04-07" "2012-04-07"
## [41506] "2012-04-07" "2013-09-15" "2013-02-05" "2013-02-05" "2013-09-15"
## [41511] "2013-02-05" "2013-08-28" "2013-09-15" "2013-08-28" "2013-09-15"
## [41516] "2013-08-28" "2013-09-15" "2013-08-28" "2013-08-28" "2013-08-28"
## [41521] "2012-02-29" "2012-05-22" "2012-05-22" "2012-05-22" "2012-05-22"
## [41526] "2012-05-22" "2012-02-29" "2012-11-05" "2013-07-04" "2012-11-05"
## [41531] "2011-11-12" "2011-11-12" "2013-07-04" "2012-11-05" "2011-06-22"
## [41536] "2011-06-22" "2011-11-12" "2011-11-12" "2011-11-12" "2013-06-20"
## [41541] "2013-06-20" "2013-06-20" "2013-02-05" "2013-06-20" "2013-02-05"
## [41546] "2013-06-20" "2013-02-05" "2011-08-28" "2011-08-28" "2011-08-28"
## [41551] "2012-09-27" "2012-01-07" "2012-09-27" "2011-04-08" "2011-08-22"
## [41556] "2012-09-27" "2012-09-27" "2012-01-07" "2012-09-27" "2011-04-08"
## [41561] "2011-08-22" "2011-04-18" "2011-08-28" "2011-04-18" "2012-07-06"
## [41566] "2012-07-06" "2011-08-10" "2013-10-06" "2013-09-27" "2013-09-27"
## [41571] "2013-10-06" "2013-10-06" "2011-08-10" "2013-10-06" "2011-08-10"
## [41576] "2011-08-10" "2013-09-27" "2013-03-03" "2013-09-27" "2013-03-03"
## [41581] "2013-03-03" "2013-03-28" "2013-03-28" "2013-03-28" "2013-03-28"
## [41586] "2013-03-28" "2011-02-22" "2011-02-22" "2011-02-22" "2014-01-13"
## [41591] "2013-04-19" "2011-02-22" "2013-04-19" "2014-01-13" "2011-02-22"
## [41596] "2014-01-13" "2013-04-19" "2013-04-19" "2013-04-19" "2011-02-08"
## [41601] "2014-01-24" "2011-02-08" "2011-02-08" "2014-01-24" "2011-06-19"
## [41606] "2011-02-08" "2011-06-19" "2011-02-08" "2013-03-11" "2013-11-04"
## [41611] "2013-11-04" "2011-11-06" "2011-11-06" "2013-03-11" "2013-03-11"
## [41616] "2013-10-30" "2013-10-30" "2012-02-11" "2012-09-07" "2012-02-11"
## [41621] "2012-02-11" "2012-09-07" "2012-09-07" "2012-02-11" "2012-02-11"
## [41626] "2011-12-16" "2011-12-16" "2013-01-19" "2012-07-15" "2013-01-19"
## [41631] "2012-07-15" "2012-07-15" "2013-01-19" "2011-07-17" "2011-07-17"
## [41636] "2011-07-17" "2011-04-14" "2011-04-14" "2011-04-14" "2012-04-17"
## [41641] "2012-04-17" "2012-09-30" "2012-04-12" "2012-09-30" "2012-04-12"
## [41646] "2012-04-17" "2012-04-17" "2012-09-30" "2012-04-17" "2012-04-12"
## [41651] "2012-04-12" "2012-04-12" "2013-12-05" "2012-03-23" "2013-12-05"
## [41656] "2013-12-05" "2012-03-23" "2012-03-09" "2013-09-15" "2012-03-09"
## [41661] "2012-03-09" "2012-03-09" "2012-03-09" "2013-09-15" "2012-03-09"
## [41666] "2014-01-15" "2011-10-11" "2013-05-12" "2013-05-12" "2013-05-12"
## [41671] "2014-01-15" "2013-03-31" "2011-10-11" "2011-10-11" "2011-10-20"
## [41676] "2011-10-20" "2011-10-20" "2013-03-31" "2011-10-11" "2011-10-20"
## [41681] "2013-05-12" "2014-01-15" "2011-10-20" "2011-10-11" "2012-05-18"
## [41686] "2012-05-18" "2011-07-30" "2012-05-18" "2011-07-30" "2012-10-13"
## [41691] "2012-10-13" "2012-10-05" "2012-10-05" "2011-11-24" "2011-11-24"
## [41696] "2011-11-24" "2013-04-15" "2013-11-08" "2013-04-15" "2013-04-15"
## [41701] "2013-04-15" "2013-04-15" "2013-11-08" "2012-12-17" "2011-03-29"
## [41706] "2012-12-17" "2012-12-17" "2011-03-22" "2011-03-29" "2011-03-29"
## [41711] "2012-12-17" "2011-03-22" "2011-03-22" "2012-12-17" "2012-12-17"
## [41716] "2012-05-16" "2013-03-12" "2012-05-16" "2013-03-15" "2012-05-16"
## [41721] "2013-03-12" "2013-03-15" "2013-03-12" "2011-09-22" "2013-03-12"
## [41726] "2013-03-12" "2011-09-22" "2012-05-16" "2013-03-23" "2013-03-23"
## [41731] "2011-09-22" "2012-05-16" "2012-01-05" "2012-01-13" "2012-01-05"
## [41736] "2012-01-13" "2012-03-21" "2013-08-23" "2013-08-23" "2013-08-23"
## [41741] "2012-07-12" "2012-10-04" "2012-11-13" "2012-07-12" "2013-08-23"
## [41746] "2012-03-21" "2012-10-12" "2012-11-13" "2012-11-13" "2012-03-21"
## [41751] "2012-10-12" "2012-03-21" "2012-07-12" "2012-10-04" "2012-03-21"
## [41756] "2014-02-01" "2011-06-02" "2014-02-01" "2014-02-01" "2012-07-05"
## [41761] "2011-06-02" "2014-02-01" "2012-07-05" "2014-02-01" "2011-06-02"
## [41766] "2012-07-05" "2014-02-01" "2013-03-01" "2012-03-11" "2013-03-01"
## [41771] "2012-03-11" "2013-09-28" "2013-12-31" "2013-12-31" "2013-12-31"
## [41776] "2013-12-31" "2013-12-31" "2012-05-29" "2012-05-29" "2012-05-29"
## [41781] "2013-09-28" "2011-12-31" "2013-09-28" "2011-12-31" "2012-05-29"
## [41786] "2013-09-28" "2012-04-09" "2012-04-09" "2012-07-12" "2012-07-12"
## [41791] "2012-04-09" "2012-01-04" "2012-04-09" "2012-01-04" "2013-08-11"
## [41796] "2013-11-19" "2013-08-11" "2013-08-11" "2013-11-19" "2013-11-19"
## [41801] "2013-11-19" "2013-11-19" "2011-02-09" "2011-02-09" "2012-04-11"
## [41806] "2011-02-09" "2011-02-09" "2012-04-11" "2011-02-10" "2014-01-14"
## [41811] "2011-02-14" "2011-02-14" "2011-02-14" "2011-02-14" "2012-04-11"
## [41816] "2011-02-10" "2011-02-09" "2011-02-10" "2014-01-14" "2011-02-10"
## [41821] "2012-04-11" "2011-02-10" "2014-01-14" "2011-02-14" "2012-04-11"
## [41826] "2011-09-28" "2011-10-07" "2011-10-07" "2014-01-22" "2011-09-28"
## [41831] "2011-09-28" "2011-09-28" "2011-10-07" "2014-01-22" "2014-01-22"
## [41836] "2011-10-07" "2011-10-07" "2011-09-28" "2014-01-14" "2014-01-14"
## [41841] "2014-01-14" "2011-06-05" "2011-06-05" "2012-09-07" "2012-09-07"
## [41846] "2012-09-07" "2012-09-17" "2013-05-11" "2012-09-17" "2013-05-11"
## [41851] "2012-09-17" "2012-09-07" "2012-09-17" "2012-09-17" "2012-09-07"
## [41856] "2012-07-16" "2012-07-16" "2012-07-16" "2012-07-16" "2012-07-16"
## [41861] "2012-10-15" "2012-02-09" "2012-10-15" "2012-10-15" "2012-10-15"
## [41866] "2012-02-09" "2012-02-09" "2012-10-15" "2012-02-09" "2012-02-09"
## [41871] "2012-06-02" "2011-11-19" "2011-11-19" "2011-11-19" "2012-06-02"
## [41876] "2011-11-19" "2011-11-19" "2012-06-02" "2012-05-09" "2012-05-09"
## [41881] "2011-04-28" "2011-04-28" "2011-04-28" "2011-02-13" "2011-10-14"
## [41886] "2011-02-13" "2011-04-28" "2013-04-22" "2011-02-13" "2013-04-30"
## [41891] "2011-12-27" "2011-02-13" "2011-02-13" "2011-04-28" "2011-02-13"
## [41896] "2013-04-30" "2011-12-27" "2013-04-30" "2013-04-22" "2013-04-22"
## [41901] "2011-10-14" "2013-02-01" "2011-02-12" "2011-02-12" "2011-02-12"
## [41906] "2011-02-12" "2013-02-01" "2013-02-01" "2011-02-12" "2011-02-12"
## [41911] "2012-05-11" "2012-05-10" "2012-12-12" "2012-05-10" "2012-05-11"
## [41916] "2013-02-27" "2013-02-27" "2013-06-27" "2013-06-27" "2012-05-10"
## [41921] "2012-05-11" "2012-12-12" "2012-12-12" "2013-08-16" "2013-05-11"
## [41926] "2013-08-13" "2013-08-16" "2013-08-16" "2013-08-13" "2013-05-11"
## [41931] "2013-08-13" "2013-05-11" "2012-07-10" "2012-07-10" "2013-11-13"
## [41936] "2013-11-13" "2011-11-07" "2012-07-10" "2013-11-13" "2013-11-13"
## [41941] "2013-11-13" "2012-07-10" "2011-11-07" "2013-11-13" "2012-07-10"
## [41946] "2011-11-07" "2011-11-07" "2012-07-10" "2011-11-07" "2011-05-24"
## [41951] "2011-05-24" "2011-05-24" "2011-05-24" "2011-05-24" "2012-12-06"
## [41956] "2011-10-10" "2011-10-10" "2012-12-06" "2011-12-21" "2011-12-21"
## [41961] "2011-12-21" "2011-12-21" "2012-07-07" "2012-07-07" "2012-07-07"
## [41966] "2011-12-21" "2012-07-07" "2012-07-07" "2012-07-07" "2011-10-25"
## [41971] "2011-10-25" "2011-10-25" "2012-04-28" "2012-04-28" "2011-10-25"
## [41976] "2012-04-28" "2011-10-25" "2012-04-28" "2013-03-14" "2013-03-14"
## [41981] "2013-03-14" "2013-03-14" "2013-02-18" "2014-02-11" "2013-02-18"
## [41986] "2014-02-11" "2013-02-16" "2014-02-11" "2013-02-16" "2012-06-09"
## [41991] "2011-09-19" "2012-06-09" "2012-06-09" "2012-06-09" "2011-09-19"
## [41996] "2012-06-09" "2012-03-01" "2013-08-21" "2013-08-21" "2012-03-01"
## [42001] "2013-08-21" "2013-08-21" "2013-08-21" "2013-10-29" "2013-10-29"
## [42006] "2013-10-29" "2013-10-29" "2012-02-21" "2012-02-21" "2012-02-29"
## [42011] "2013-03-15" "2012-07-30" "2012-02-21" "2012-07-30" "2013-03-15"
## [42016] "2012-02-29" "2013-10-29" "2013-03-15" "2013-11-23" "2012-07-30"
## [42021] "2012-02-29" "2013-11-23" "2013-11-23" "2013-11-23" "2013-11-23"
## [42026] "2012-07-30" "2012-04-30" "2013-05-18" "2013-05-18" "2013-05-18"
## [42031] "2012-04-30" "2011-05-15" "2013-08-04" "2013-11-08" "2013-08-04"
## [42036] "2011-05-15" "2013-08-04" "2013-08-04" "2011-05-15" "2013-11-08"
## [42041] "2011-05-15" "2013-08-04" "2011-05-15" "2011-05-15" "2013-11-08"
## [42046] "2013-06-19" "2011-12-29" "2011-11-02" "2011-11-02" "2013-06-19"
## [42051] "2012-05-03" "2013-06-19" "2011-11-02" "2011-12-29" "2011-12-29"
## [42056] "2013-06-19" "2013-06-19" "2011-12-29" "2012-05-03" "2011-12-29"
## [42061] "2013-06-19" "2013-01-04" "2013-01-04" "2011-11-17" "2013-01-08"
## [42066] "2011-11-17" "2011-11-17" "2011-08-14" "2013-01-08" "2011-08-14"
## [42071] "2011-11-17" "2013-01-04" "2013-01-08" "2011-11-17" "2012-11-18"
## [42076] "2013-04-08" "2013-04-08" "2013-11-08" "2013-04-08" "2013-11-08"
## [42081] "2013-11-08" "2013-04-08" "2013-04-19" "2012-11-18" "2013-11-08"
## [42086] "2012-11-18" "2012-11-18" "2013-04-19" "2013-11-08" "2013-04-19"
## [42091] "2013-04-19" "2012-11-18" "2012-11-02" "2012-11-11" "2012-11-11"
## [42096] "2012-11-11" "2012-11-02" "2012-11-02" "2011-04-15" "2011-04-15"
## [42101] "2011-04-15" "2012-02-06" "2012-02-06" "2012-02-06" "2012-02-06"
## [42106] "2011-04-15" "2012-02-06" "2012-01-22" "2012-01-22" "2012-01-22"
## [42111] "2011-11-29" "2011-11-29" "2014-01-11" "2014-01-11" "2014-01-11"
## [42116] "2011-11-29" "2013-06-21" "2013-03-06" "2013-05-17" "2013-06-21"
## [42121] "2013-06-21" "2013-05-17" "2013-06-16" "2013-06-21" "2013-05-17"
## [42126] "2013-06-16" "2013-06-16" "2013-05-17" "2013-03-06" "2013-03-06"
## [42131] "2013-05-17" "2013-06-16" "2013-11-27" "2011-10-21" "2011-10-21"
## [42136] "2013-11-27" "2013-11-27" "2013-11-27" "2013-11-27" "2011-09-15"
## [42141] "2011-09-15" "2011-05-09" "2012-07-23" "2012-07-23" "2011-05-09"
## [42146] "2012-07-23" "2012-07-23" "2011-05-09" "2012-07-23" "2014-01-14"
## [42151] "2014-01-14" "2013-02-20" "2011-08-12" "2013-02-20" "2011-08-12"
## [42156] "2011-08-12" "2011-08-07" "2011-08-12" "2011-08-07" "2013-02-20"
## [42161] "2011-08-07" "2011-08-12" "2013-02-20" "2011-08-07" "2011-08-07"
## [42166] "2012-05-30" "2012-06-04" "2012-05-30" "2012-05-30" "2012-02-26"
## [42171] "2012-02-26" "2012-06-04" "2014-01-28" "2012-06-04" "2014-01-28"
## [42176] "2012-09-27" "2012-09-27" "2013-05-01" "2013-05-01" "2013-05-01"
## [42181] "2013-05-01" "2013-05-01" "2014-01-20" "2014-01-20" "2013-12-31"
## [42186] "2011-08-17" "2012-07-12" "2011-08-17" "2013-12-31" "2011-08-17"
## [42191] "2013-12-31" "2012-07-12" "2013-12-31" "2012-07-12" "2013-12-31"
## [42196] "2011-08-17" "2013-01-02" "2011-03-27" "2012-04-07" "2011-03-27"
## [42201] "2013-01-02" "2012-04-07" "2012-11-19" "2012-11-19" "2012-11-19"
## [42206] "2011-07-15" "2011-07-15" "2011-07-15" "2012-06-10" "2011-04-21"
## [42211] "2011-04-21" "2013-05-27" "2011-04-21" "2013-05-27" "2012-06-10"
## [42216] "2012-06-10" "2011-12-09" "2011-04-21" "2011-04-21" "2011-12-09"
## [42221] "2012-12-20" "2012-12-20" "2012-12-20" "2012-12-20" "2012-12-20"
## [42226] "2012-12-29" "2011-07-02" "2012-12-29" "2012-12-29" "2011-07-02"
## [42231] "2011-07-02" "2011-12-12" "2012-10-18" "2011-12-19" "2012-10-23"
## [42236] "2013-05-30" "2011-12-12" "2012-10-23" "2011-12-19" "2011-12-19"
## [42241] "2011-12-19" "2013-05-30" "2011-12-19" "2011-12-19" "2012-10-18"
## [42246] "2012-04-08" "2011-12-19" "2011-12-19" "2011-12-19" "2011-12-12"
## [42251] "2012-04-08" "2013-05-30" "2012-04-08" "2011-12-12" "2011-12-12"
## [42256] "2011-12-19" "2012-04-08" "2012-04-08" "2012-07-08" "2012-07-27"
## [42261] "2012-07-27" "2012-07-08" "2012-07-27" "2012-07-27" "2012-07-27"
## [42266] "2012-03-09" "2012-03-09" "2012-05-28" "2012-10-02" "2012-10-02"
## [42271] "2012-03-09" "2012-05-27" "2012-05-28" "2012-05-28" "2012-05-23"
## [42276] "2012-05-27" "2012-05-23" "2012-05-23" "2012-05-27" "2013-02-23"
## [42281] "2013-02-23" "2013-01-08" "2013-02-23" "2013-01-08" "2011-08-04"
## [42286] "2011-04-20" "2012-03-31" "2011-04-20" "2013-04-26" "2012-08-05"
## [42291] "2011-04-20" "2014-01-29" "2011-08-04" "2014-01-29" "2011-08-04"
## [42296] "2011-08-04" "2012-08-05" "2013-04-26" "2012-08-05" "2012-03-31"
## [42301] "2014-01-29" "2011-08-04" "2011-08-04" "2012-03-31" "2014-01-29"
## [42306] "2012-03-31" "2014-01-29" "2012-03-31" "2012-04-16" "2012-04-16"
## [42311] "2012-09-18" "2012-04-16" "2012-04-16" "2012-09-18" "2012-04-16"
## [42316] "2012-09-18" "2012-09-18" "2012-09-18" "2011-05-24" "2011-05-24"
## [42321] "2011-05-24" "2011-05-24" "2011-10-21" "2011-05-24" "2011-10-21"
## [42326] "2011-05-24" "2011-09-09" "2011-09-09" "2011-09-09" "2011-09-09"
## [42331] "2011-09-09" "2011-06-21" "2012-09-23" "2011-06-21" "2011-06-21"
## [42336] "2012-09-23" "2011-12-26" "2011-12-26" "2013-10-20" "2013-10-20"
## [42341] "2013-10-20" "2011-12-05" "2011-12-05" "2011-12-05" "2011-12-05"
## [42346] "2011-12-05" "2011-12-05" "2012-11-23" "2012-11-23" "2013-09-28"
## [42351] "2013-09-28" "2012-11-23" "2012-11-23" "2012-11-23" "2013-09-28"
## [42356] "2012-09-14" "2012-12-05" "2012-09-14" "2012-12-05" "2012-09-14"
## [42361] "2012-09-14" "2011-04-24" "2012-12-05" "2012-12-05" "2012-09-14"
## [42366] "2011-04-24" "2012-12-05" "2012-12-05" "2011-04-24" "2011-02-20"
## [42371] "2011-02-20" "2013-11-17" "2013-11-17" "2014-02-07" "2014-02-07"
## [42376] "2014-02-07" "2013-06-21" "2013-10-27" "2013-11-17" "2013-06-21"
## [42381] "2014-02-07" "2013-10-27" "2014-02-07" "2013-06-21" "2013-06-21"
## [42386] "2013-10-27" "2013-11-04" "2013-11-04" "2013-11-04" "2014-01-09"
## [42391] "2014-01-09" "2013-10-31" "2013-10-31" "2014-01-03" "2014-01-09"
## [42396] "2013-10-31" "2014-01-03" "2014-01-09" "2013-10-31" "2014-01-03"
## [42401] "2014-01-03" "2013-10-24" "2013-10-31" "2013-10-31" "2013-10-24"
## [42406] "2013-11-11" "2012-04-27" "2012-04-27" "2013-02-01" "2013-11-11"
## [42411] "2013-02-01" "2013-02-01" "2013-02-01" "2013-02-01" "2013-11-11"
## [42416] "2012-04-27" "2014-02-11" "2014-02-11" "2014-02-11" "2014-02-11"
## [42421] "2014-02-11" "2014-02-11" "2013-08-25" "2013-04-27" "2013-04-27"
## [42426] "2013-04-27" "2013-08-25" "2013-08-25" "2012-11-04" "2012-11-04"
## [42431] "2012-11-04" "2012-11-04" "2012-11-04" "2013-08-25" "2013-12-11"
## [42436] "2013-12-11" "2013-12-11" "2012-11-02" "2012-05-12" "2012-11-02"
## [42441] "2012-01-15" "2012-11-02" "2012-01-15" "2012-05-08" "2012-05-12"
## [42446] "2012-11-02" "2012-05-08" "2012-01-15" "2013-05-03" "2013-05-03"
## [42451] "2013-05-03" "2011-06-19" "2011-06-19" "2012-04-04" "2012-04-04"
## [42456] "2012-04-04" "2013-02-19" "2013-02-19" "2013-02-19" "2011-11-16"
## [42461] "2013-02-19" "2013-02-19" "2013-02-17" "2013-02-17" "2011-02-19"
## [42466] "2011-02-19" "2011-11-16" "2014-01-08" "2013-07-23" "2014-01-08"
## [42471] "2013-09-08" "2013-11-09" "2013-09-08" "2014-01-08" "2013-07-23"
## [42476] "2013-07-23" "2013-11-09" "2013-07-23" "2011-11-09" "2013-11-09"
## [42481] "2013-07-23" "2011-11-09" "2011-11-09" "2013-11-11" "2013-11-11"
## [42486] "2013-10-12" "2013-10-12" "2013-10-12" "2013-11-11" "2011-06-30"
## [42491] "2011-10-05" "2011-06-30" "2011-10-05" "2011-06-30" "2011-10-05"
## [42496] "2011-10-05" "2011-10-05" "2011-10-05" "2012-12-29" "2012-12-29"
## [42501] "2011-03-15" "2012-12-29" "2011-03-15" "2012-12-29" "2012-12-29"
## [42506] "2011-08-14" "2011-08-14" "2011-03-15" "2012-03-31" "2012-03-31"
## [42511] "2013-12-06" "2013-12-06" "2013-12-06" "2013-09-02" "2013-09-02"
## [42516] "2012-02-13" "2013-07-02" "2013-09-02" "2013-09-02" "2013-06-27"
## [42521] "2012-02-13" "2012-03-31" "2013-06-27" "2013-07-02" "2012-03-31"
## [42526] "2013-09-02" "2012-03-31" "2013-03-14" "2013-03-14" "2013-03-14"
## [42531] "2013-03-14" "2013-03-14" "2013-03-14" "2012-06-23" "2012-10-11"
## [42536] "2012-06-23" "2012-10-11" "2012-06-23" "2012-11-09" "2011-09-19"
## [42541] "2011-09-19" "2012-11-09" "2011-09-19" "2013-09-16" "2012-09-30"
## [42546] "2011-03-09" "2012-09-30" "2011-03-09" "2013-09-16" "2012-09-30"
## [42551] "2012-09-30" "2012-09-30" "2013-09-16" "2012-03-06" "2012-03-06"
## [42556] "2012-03-06" "2013-09-09" "2013-09-09" "2012-01-27" "2012-01-27"
## [42561] "2012-01-27" "2013-09-09" "2012-01-27" "2013-09-22" "2013-01-25"
## [42566] "2013-01-25" "2013-01-25" "2013-09-22" "2013-01-25" "2013-09-22"
## [42571] "2013-01-25" "2013-09-22" "2013-09-22" "2013-10-26" "2013-05-10"
## [42576] "2013-05-10" "2013-10-26" "2013-05-10" "2013-10-26" "2013-10-26"
## [42581] "2013-10-26" "2011-05-24" "2011-05-24" "2011-05-24" "2011-05-24"
## [42586] "2013-12-03" "2013-12-03" "2013-12-03" "2013-12-03" "2013-12-03"
## [42591] "2013-12-03" "2012-11-30" "2012-11-30" "2012-11-30" "2012-11-30"
## [42596] "2012-11-30" "2013-07-18" "2011-03-20" "2013-11-16" "2011-03-20"
## [42601] "2013-11-16" "2013-11-16" "2013-07-18" "2013-11-16" "2011-03-20"
## [42606] "2013-11-16" "2011-03-20" "2012-10-07" "2012-07-01" "2012-07-01"
## [42611] "2012-06-28" "2012-05-20" "2012-07-01" "2012-10-07" "2012-10-07"
## [42616] "2013-05-04" "2014-02-03" "2012-10-07" "2014-02-03" "2012-06-28"
## [42621] "2013-05-04" "2013-05-04" "2012-05-20" "2012-06-28" "2012-11-10"
## [42626] "2012-11-10" "2012-11-10" "2012-11-10" "2011-12-22" "2014-02-16"
## [42631] "2014-02-16" "2011-12-22" "2013-02-18" "2013-10-04" "2011-12-22"
## [42636] "2011-12-22" "2011-12-22" "2013-02-18" "2013-10-04" "2011-12-22"
## [42641] "2014-02-16" "2011-05-09" "2014-01-14" "2014-01-11" "2013-04-26"
## [42646] "2013-03-10" "2014-01-11" "2014-01-11" "2014-01-14" "2014-01-14"
## [42651] "2013-03-10" "2011-05-09" "2013-04-26" "2013-04-26" "2013-07-28"
## [42656] "2013-08-10" "2013-07-28" "2013-08-10" "2013-08-10" "2013-07-28"
## [42661] "2013-08-10" "2011-05-24" "2011-05-24" "2011-05-24" "2013-12-19"
## [42666] "2011-12-07" "2011-12-07" "2011-12-07" "2013-12-19" "2011-12-07"
## [42671] "2011-12-07" "2013-12-19" "2012-02-26" "2013-11-12" "2013-11-12"
## [42676] "2012-02-26" "2012-02-26" "2012-02-26" "2012-02-26" "2013-01-12"
## [42681] "2013-01-12" "2013-01-12" "2011-03-08" "2011-03-08" "2011-03-18"
## [42686] "2011-03-18" "2011-04-05" "2011-03-26" "2011-04-05" "2011-03-26"
## [42691] "2012-06-08" "2011-04-05" "2011-07-17" "2011-03-26" "2011-07-17"
## [42696] "2011-03-26" "2011-07-17" "2012-06-08" "2011-03-26" "2013-11-18"
## [42701] "2013-02-03" "2013-11-18" "2013-02-03" "2013-11-18" "2013-05-22"
## [42706] "2013-05-22" "2011-11-03" "2011-11-07" "2011-11-07" "2011-11-03"
## [42711] "2011-11-07" "2011-05-02" "2011-05-02" "2012-05-27" "2012-05-27"
## [42716] "2013-05-22" "2013-05-22" "2013-05-19" "2013-05-19" "2013-05-22"
## [42721] "2013-05-19" "2013-05-19" "2013-05-19" "2014-02-20" "2014-02-20"
## [42726] "2013-05-22" "2013-05-22" "2012-12-21" "2012-12-21" "2012-10-24"
## [42731] "2013-12-27" "2012-03-15" "2011-12-06" "2011-12-06" "2013-12-27"
## [42736] "2012-10-24" "2014-01-03" "2011-12-06" "2014-01-03" "2013-12-27"
## [42741] "2014-01-06" "2011-12-06" "2014-01-03" "2011-12-06" "2012-03-15"
## [42746] "2011-12-06" "2013-12-27" "2014-01-06" "2013-12-27" "2014-01-06"
## [42751] "2011-08-28" "2011-08-28" "2011-08-28" "2012-05-08" "2011-08-28"
## [42756] "2011-08-28" "2012-05-08" "2011-12-22" "2011-12-22" "2011-12-22"
## [42761] "2011-11-03" "2011-12-22" "2011-12-22" "2011-11-03" "2011-11-03"
## [42766] "2013-04-16" "2013-04-16" "2013-04-16" "2011-08-03" "2011-07-28"
## [42771] "2011-08-03" "2011-07-28" "2013-04-16" "2013-04-16" "2013-08-26"
## [42776] "2012-03-21" "2012-03-21" "2012-03-21" "2014-01-15" "2013-08-26"
## [42781] "2012-03-21" "2012-03-21" "2014-01-15" "2012-03-21" "2013-09-06"
## [42786] "2013-06-27" "2013-09-22" "2013-06-27" "2013-09-06" "2013-09-06"
## [42791] "2013-09-22" "2013-09-06" "2013-06-27" "2013-01-27" "2013-09-22"
## [42796] "2013-09-06" "2013-06-27" "2013-01-27" "2013-06-27" "2013-01-27"
## [42801] "2013-01-27" "2011-07-05" "2013-07-31" "2013-07-31" "2013-08-09"
## [42806] "2011-07-05" "2013-08-09" "2013-12-11" "2013-12-11" "2011-03-17"
## [42811] "2011-03-17" "2011-03-17" "2011-03-17" "2011-03-17" "2011-03-17"
## [42816] "2011-08-28" "2011-08-28" "2011-08-28" "2012-09-17" "2012-09-17"
## [42821] "2011-08-28" "2012-09-17" "2011-08-28" "2012-06-07" "2012-04-01"
## [42826] "2012-04-01" "2011-09-11" "2011-09-11" "2012-04-01" "2011-09-11"
## [42831] "2011-09-11" "2011-09-11" "2012-04-01" "2011-09-11" "2012-06-07"
## [42836] "2012-04-01" "2013-02-06" "2013-02-06" "2013-02-06" "2013-10-12"
## [42841] "2013-10-12" "2011-07-23" "2013-10-12" "2013-10-12" "2013-08-18"
## [42846] "2011-09-01" "2013-08-13" "2013-12-12" "2013-08-18" "2011-07-23"
## [42851] "2013-12-12" "2011-06-21" "2013-08-13" "2011-07-23" "2011-06-21"
## [42856] "2013-10-12" "2011-06-21" "2013-10-12" "2013-12-12" "2011-06-21"
## [42861] "2013-12-12" "2013-08-13" "2013-12-12" "2011-09-01" "2011-06-21"
## [42866] "2013-08-18" "2011-09-14" "2011-03-13" "2011-09-14" "2011-03-13"
## [42871] "2011-03-13" "2013-01-23" "2013-01-23" "2013-01-30" "2013-01-30"
## [42876] "2013-01-23" "2013-01-30" "2011-03-14" "2011-03-14" "2011-03-14"
## [42881] "2011-03-14" "2013-09-29" "2013-10-02" "2013-09-29" "2013-10-02"
## [42886] "2011-03-14" "2012-05-04" "2013-08-30" "2012-05-04" "2013-08-30"
## [42891] "2013-08-30" "2013-08-30" "2013-08-30" "2013-04-07" "2013-04-07"
## [42896] "2011-12-07" "2011-12-07" "2011-12-07" "2012-04-22" "2012-04-24"
## [42901] "2012-04-22" "2012-04-24" "2012-04-22" "2012-04-24" "2012-04-22"
## [42906] "2012-04-22" "2012-04-24" "2012-04-24" "2011-11-10" "2011-11-10"
## [42911] "2011-11-10" "2011-11-10" "2014-01-13" "2012-11-27" "2011-11-10"
## [42916] "2012-11-29" "2012-11-27" "2012-11-29" "2014-01-13" "2012-11-27"
## [42921] "2012-11-29" "2011-11-10" "2011-03-21" "2011-03-21" "2011-03-21"
## [42926] "2013-12-14" "2013-09-09" "2013-09-09" "2013-12-14" "2013-09-09"
## [42931] "2013-12-14" "2012-10-24" "2012-10-24" "2011-07-30" "2011-07-30"
## [42936] "2011-07-30" "2011-07-30" "2011-07-30" "2013-03-19" "2013-03-19"
## [42941] "2012-04-12" "2012-04-12" "2012-04-12" "2012-04-12" "2013-01-20"
## [42946] "2013-01-20" "2011-09-20" "2013-01-20" "2013-07-09" "2011-09-20"
## [42951] "2013-01-20" "2013-01-20" "2013-01-20" "2013-07-09" "2011-09-20"
## [42956] "2013-07-06" "2013-07-06" "2011-10-03" "2012-05-21" "2011-10-03"
## [42961] "2012-05-21" "2011-10-03" "2012-05-21" "2012-07-01" "2012-04-23"
## [42966] "2012-10-15" "2012-04-23" "2012-04-23" "2012-07-01" "2012-10-15"
## [42971] "2012-04-23" "2012-10-15" "2011-10-17" "2011-10-17" "2012-09-14"
## [42976] "2013-01-17" "2012-09-14" "2013-01-07" "2013-06-02" "2013-06-02"
## [42981] "2011-06-09" "2013-06-02" "2013-06-02" "2011-07-28" "2011-07-28"
## [42986] "2011-07-28" "2011-06-09" "2011-07-28" "2012-09-14" "2011-06-09"
## [42991] "2013-01-07" "2013-06-02" "2013-06-22" "2013-06-22" "2013-06-02"
## [42996] "2013-06-22" "2011-06-09" "2013-01-17" "2013-06-22" "2013-06-22"
## [43001] "2013-08-23" "2012-02-07" "2013-08-23" "2013-08-23" "2012-02-07"
## [43006] "2013-08-23" "2013-08-23" "2012-02-29" "2013-09-23" "2012-02-29"
## [43011] "2012-02-29" "2011-06-15" "2011-06-15" "2013-09-23" "2013-09-23"
## [43016] "2014-02-08" "2014-02-08" "2014-02-08" "2014-02-08" "2014-02-08"
## [43021] "2014-02-08" "2012-08-31" "2011-11-01" "2012-08-31" "2013-10-24"
## [43026] "2013-10-24" "2013-10-24" "2013-10-24" "2013-10-24" "2011-04-04"
## [43031] "2012-08-31" "2011-04-04" "2011-11-01" "2011-09-05" "2011-09-05"
## [43036] "2011-09-05" "2011-09-05" "2011-09-05" "2012-01-14" "2012-01-14"
## [43041] "2012-01-14" "2012-01-14" "2012-01-14" "2013-10-05" "2011-07-07"
## [43046] "2011-07-07" "2013-10-05" "2012-01-14" "2013-10-05" "2013-01-21"
## [43051] "2013-01-22" "2013-01-21" "2013-01-21" "2013-01-22" "2013-10-01"
## [43056] "2013-01-21" "2013-01-22" "2013-10-01" "2013-01-21" "2013-01-22"
## [43061] "2013-05-30" "2011-07-03" "2013-05-30" "2011-07-03" "2011-07-23"
## [43066] "2013-05-30" "2013-05-30" "2011-07-23" "2011-07-23" "2013-05-30"
## [43071] "2013-11-17" "2013-11-17" "2013-10-06" "2011-08-11" "2011-08-11"
## [43076] "2013-10-06" "2011-08-04" "2011-08-04" "2011-08-11" "2013-10-06"
## [43081] "2011-08-04" "2011-03-23" "2011-03-23" "2013-10-13" "2011-09-04"
## [43086] "2011-09-04" "2011-09-04" "2011-03-23" "2013-10-13" "2013-02-23"
## [43091] "2013-02-23" "2013-02-23" "2012-06-27" "2012-06-27" "2012-06-27"
## [43096] "2012-11-06" "2012-10-28" "2012-11-06" "2012-10-28" "2013-07-31"
## [43101] "2012-11-06" "2012-10-28" "2012-10-28" "2013-08-22" "2012-11-06"
## [43106] "2012-11-06" "2014-02-07" "2012-10-28" "2012-11-06" "2012-10-28"
## [43111] "2014-02-07" "2013-08-22" "2013-07-31" "2014-02-07" "2013-05-28"
## [43116] "2013-05-28" "2013-05-28" "2011-12-17" "2011-12-17" "2011-12-17"
## [43121] "2011-12-17" "2011-12-17" "2011-12-17" "2013-04-13" "2013-04-13"
## [43126] "2013-11-22" "2013-04-13" "2013-04-13" "2013-11-22" "2013-04-13"
## [43131] "2012-01-19" "2012-01-19" "2013-04-13" "2012-01-19" "2012-01-19"
## [43136] "2012-01-19" "2013-11-22" "2012-10-23" "2012-10-23" "2012-10-23"
## [43141] "2012-06-14" "2012-06-14" "2012-06-04" "2012-06-14" "2012-08-01"
## [43146] "2012-06-14" "2012-08-01" "2012-08-01" "2012-06-04" "2012-06-14"
## [43151] "2012-03-04" "2012-03-04" "2012-03-04" "2011-09-09" "2013-01-30"
## [43156] "2011-09-09" "2013-01-30" "2012-10-29" "2013-01-30" "2013-03-21"
## [43161] "2013-08-28" "2013-03-21" "2011-09-09" "2012-10-29" "2013-03-21"
## [43166] "2013-08-28" "2012-10-29" "2014-01-05" "2011-12-08" "2014-01-05"
## [43171] "2011-12-08" "2014-01-05" "2014-01-05" "2014-01-05" "2013-10-23"
## [43176] "2013-10-23" "2013-10-23" "2011-02-03" "2013-12-13" "2011-02-03"
## [43181] "2013-12-13" "2011-02-03" "2013-10-23" "2013-12-13" "2013-05-02"
## [43186] "2012-05-13" "2011-02-20" "2012-05-13" "2012-05-13" "2012-05-13"
## [43191] "2012-05-13" "2011-02-20" "2011-02-20" "2013-05-02" "2011-02-20"
## [43196] "2013-05-02" "2011-02-20" "2011-10-28" "2011-10-28" "2012-10-07"
## [43201] "2013-12-25" "2012-09-26" "2012-09-26" "2013-12-25" "2012-10-07"
## [43206] "2012-10-07" "2012-10-07" "2012-02-16" "2012-09-26" "2012-02-16"
## [43211] "2012-09-26" "2012-09-26" "2012-02-16" "2012-09-26" "2012-10-07"
## [43216] "2012-11-28" "2012-11-25" "2012-11-28" "2012-11-25" "2012-11-25"
## [43221] "2012-11-28" "2012-11-25" "2012-11-25" "2012-11-28" "2012-11-28"
## [43226] "2013-07-31" "2013-07-31" "2011-11-08" "2013-07-31" "2011-05-14"
## [43231] "2011-05-14" "2011-11-08" "2013-05-18" "2013-05-18" "2013-05-18"
## [43236] "2013-08-02" "2012-06-28" "2013-12-18" "2013-12-18" "2013-08-02"
## [43241] "2013-08-02" "2013-08-02" "2012-06-28" "2013-08-02" "2012-06-28"
## [43246] "2012-08-04" "2012-07-29" "2011-03-10" "2011-03-10" "2012-08-04"
## [43251] "2013-11-23" "2013-11-23" "2013-11-23" "2012-07-29" "2013-11-23"
## [43256] "2013-11-23" "2012-07-29" "2012-07-29" "2012-04-03" "2012-04-03"
## [43261] "2012-11-29" "2012-11-29" "2012-11-29" "2011-10-23" "2011-10-23"
## [43266] "2011-10-23" "2011-10-23" "2011-10-23" "2014-01-10" "2013-03-13"
## [43271] "2011-12-01" "2013-03-13" "2014-01-10" "2011-12-01" "2011-12-01"
## [43276] "2013-03-13" "2013-03-13" "2011-12-01" "2012-02-14" "2013-03-13"
## [43281] "2011-12-01" "2011-01-30" "2012-02-14" "2011-12-01" "2012-02-14"
## [43286] "2013-03-13" "2011-01-30" "2011-01-30" "2011-01-30" "2011-01-30"
## [43291] "2011-02-18" "2012-01-25" "2012-01-25" "2011-02-18" "2011-02-18"
## [43296] "2012-12-06" "2011-02-18" "2012-01-25" "2011-02-18" "2012-01-25"
## [43301] "2012-12-06" "2012-12-06" "2013-09-26" "2012-01-25" "2013-09-26"
## [43306] "2012-07-26" "2012-07-26" "2012-07-26" "2012-06-13" "2012-07-26"
## [43311] "2012-06-13" "2012-06-13" "2012-07-26" "2011-04-17" "2011-04-17"
## [43316] "2012-04-07" "2012-04-07" "2011-03-12" "2014-01-25" "2011-03-12"
## [43321] "2011-03-12" "2011-03-12" "2013-06-18" "2012-04-07" "2013-06-18"
## [43326] "2014-01-25" "2011-03-12" "2013-06-18" "2012-01-04" "2013-04-16"
## [43331] "2013-09-06" "2013-11-13" "2013-04-16" "2013-04-16" "2012-01-04"
## [43336] "2013-11-13" "2011-12-25" "2013-09-06" "2012-01-04" "2013-04-16"
## [43341] "2013-04-16" "2011-12-25" "2013-04-16" "2013-11-13" "2011-12-25"
## [43346] "2013-09-06" "2013-09-06" "2013-09-06" "2012-04-24" "2012-08-04"
## [43351] "2012-04-24" "2012-08-04" "2012-04-24" "2011-12-13" "2012-04-24"
## [43356] "2012-08-04" "2012-08-04" "2011-12-13" "2012-08-04" "2012-04-24"
## [43361] "2012-02-17" "2012-02-17" "2011-06-20" "2011-07-03" "2011-06-20"
## [43366] "2011-07-03" "2011-06-20" "2011-07-03" "2011-07-03" "2012-02-17"
## [43371] "2011-07-03" "2011-06-20" "2011-07-03" "2011-06-20" "2011-04-19"
## [43376] "2011-04-19" "2012-02-03" "2012-02-03" "2011-04-19" "2012-08-12"
## [43381] "2011-04-19" "2012-08-12" "2011-04-19" "2012-09-04" "2012-03-31"
## [43386] "2014-01-07" "2012-03-31" "2012-04-04" "2012-03-31" "2012-04-04"
## [43391] "2014-01-07" "2012-09-04" "2012-04-04" "2012-03-31" "2012-04-04"
## [43396] "2012-04-04" "2012-09-04" "2012-03-31" "2013-05-02" "2013-05-02"
## [43401] "2013-05-02" "2013-05-02" "2013-05-02" "2013-07-10" "2012-11-03"
## [43406] "2012-11-03" "2012-05-09" "2011-07-26" "2011-05-12" "2013-07-10"
## [43411] "2011-07-26" "2011-07-26" "2012-05-09" "2011-05-12" "2011-05-12"
## [43416] "2012-11-03" "2011-05-12" "2011-05-12" "2012-10-26" "2012-10-26"
## [43421] "2011-11-19" "2012-10-26" "2012-10-26" "2011-11-19" "2012-10-26"
## [43426] "2013-10-16" "2013-10-22" "2013-10-16" "2013-10-22" "2013-05-17"
## [43431] "2013-05-17" "2011-07-10" "2011-07-10" "2011-07-10" "2011-12-22"
## [43436] "2013-11-25" "2013-11-25" "2011-12-22" "2013-11-25" "2014-01-25"
## [43441] "2014-01-25" "2013-03-15" "2013-03-15" "2012-11-22" "2012-11-22"
## [43446] "2014-01-25" "2014-01-25" "2013-03-15" "2012-11-22" "2012-11-22"
## [43451] "2014-01-25" "2012-11-22" "2013-10-10" "2013-10-10" "2013-08-17"
## [43456] "2013-08-17" "2012-07-17" "2011-02-13" "2012-07-17" "2012-07-17"
## [43461] "2011-02-13" "2012-08-18" "2012-08-18" "2012-07-17" "2011-02-13"
## [43466] "2012-01-14" "2012-01-14" "2012-01-14" "2012-11-28" "2012-11-28"
## [43471] "2012-11-28" "2012-06-24" "2012-06-24" "2012-06-24" "2013-01-25"
## [43476] "2013-01-25" "2013-01-25" "2013-12-21" "2013-12-21" "2013-12-21"
## [43481] "2012-03-18" "2013-12-21" "2013-01-25" "2013-12-21" "2013-01-25"
## [43486] "2013-01-25" "2012-03-18" "2012-03-18" "2013-04-20" "2011-08-15"
## [43491] "2011-08-15" "2011-08-15" "2011-08-15" "2013-04-20" "2011-08-15"
## [43496] "2011-03-05" "2011-03-01" "2011-03-05" "2011-03-01" "2011-01-27"
## [43501] "2011-01-27" "2011-01-27" "2011-01-27" "2011-09-09" "2011-09-09"
## [43506] "2012-10-26" "2011-01-27" "2011-09-09" "2012-10-26" "2011-12-11"
## [43511] "2013-01-08" "2013-01-17" "2011-12-11" "2011-12-11" "2011-12-11"
## [43516] "2013-01-17" "2011-12-11" "2013-01-08" "2014-02-02" "2014-02-02"
## [43521] "2014-02-02" "2012-11-02" "2012-11-02" "2012-11-02" "2012-11-07"
## [43526] "2012-11-07" "2012-11-07" "2011-09-28" "2011-04-23" "2011-09-28"
## [43531] "2011-09-28" "2011-04-23" "2011-09-28" "2011-09-28" "2012-10-10"
## [43536] "2011-02-08" "2012-10-10" "2013-03-18" "2012-10-10" "2012-10-10"
## [43541] "2013-03-18" "2011-02-08" "2012-10-10" "2013-03-18" "2012-01-05"
## [43546] "2012-01-05" "2012-01-05" "2011-07-06" "2011-07-06" "2011-04-17"
## [43551] "2011-04-17" "2011-04-17" "2011-06-21" "2011-04-17" "2011-06-21"
## [43556] "2011-04-17" "2011-06-21" "2011-06-21" "2013-08-27" "2012-08-18"
## [43561] "2013-08-27" "2012-08-18" "2013-08-27" "2013-09-05" "2012-10-06"
## [43566] "2013-09-05" "2012-10-06" "2013-08-27" "2013-09-05" "2013-08-27"
## [43571] "2013-09-05" "2012-10-06" "2013-08-27" "2012-08-18" "2012-10-06"
## [43576] "2013-09-05" "2013-09-05" "2014-02-06" "2014-02-06" "2014-02-06"
## [43581] "2014-02-06" "2014-02-06" "2011-03-18" "2012-08-24" "2011-06-10"
## [43586] "2011-03-18" "2012-08-09" "2012-08-24" "2011-06-10" "2011-03-18"
## [43591] "2011-03-18" "2012-08-24" "2012-08-24" "2012-08-24" "2012-08-09"
## [43596] "2013-08-25" "2013-08-25" "2013-08-25" "2013-08-25" "2013-08-25"
## [43601] "2013-08-25" "2013-11-05" "2013-11-05" "2013-11-04" "2013-11-04"
## [43606] "2013-04-04" "2013-04-04" "2013-04-04" "2013-04-04" "2011-11-22"
## [43611] "2011-06-24" "2011-07-17" "2011-11-13" "2011-06-24" "2012-10-24"
## [43616] "2011-11-22" "2012-10-24" "2011-11-13" "2011-06-24" "2012-10-24"
## [43621] "2011-11-13" "2011-11-22" "2011-06-24" "2011-11-13" "2011-07-17"
## [43626] "2011-11-22" "2011-06-24" "2011-11-13" "2011-11-22" "2012-12-11"
## [43631] "2012-06-04" "2013-03-14" "2012-12-11" "2012-06-04" "2013-11-23"
## [43636] "2013-11-23" "2013-11-23" "2012-06-04" "2013-03-14" "2013-11-23"
## [43641] "2013-11-23" "2012-12-06" "2012-12-06" "2012-12-06" "2012-12-06"
## [43646] "2012-12-06" "2014-01-20" "2012-09-12" "2012-06-08" "2013-05-06"
## [43651] "2012-06-08" "2012-06-08" "2014-01-20" "2012-09-12" "2013-05-06"
## [43656] "2012-06-08" "2012-06-08" "2012-06-08" "2014-01-26" "2011-12-21"
## [43661] "2011-12-21" "2011-12-21" "2014-01-26" "2014-02-20" "2014-02-20"
## [43666] "2014-02-20" "2014-02-20" "2013-09-03" "2013-09-03" "2011-03-30"
## [43671] "2013-11-12" "2011-03-30" "2013-04-17" "2013-11-12" "2013-04-17"
## [43676] "2011-03-30" "2011-08-08" "2011-08-08" "2011-08-08" "2011-10-26"
## [43681] "2011-05-08" "2011-10-26" "2011-10-26" "2011-10-26" "2011-10-26"
## [43686] "2011-05-08" "2011-05-13" "2011-05-13" "2011-05-13" "2011-05-08"
## [43691] "2011-10-25" "2011-10-25" "2011-03-10" "2012-06-08" "2011-10-25"
## [43696] "2011-03-10" "2012-05-18" "2011-03-10" "2011-07-08" "2011-10-25"
## [43701] "2011-07-08" "2011-10-25" "2011-01-27" "2011-03-10" "2012-06-08"
## [43706] "2011-03-10" "2011-01-27" "2011-03-10" "2011-07-08" "2011-07-08"
## [43711] "2012-05-18" "2012-03-13" "2012-03-13" "2012-03-13" "2012-03-13"
## [43716] "2012-03-13" "2013-12-31" "2013-12-31" "2013-12-31" "2013-12-31"
## [43721] "2013-12-31" "2011-06-24" "2011-06-19" "2011-06-19" "2013-05-25"
## [43726] "2013-05-28" "2011-06-24" "2013-05-28" "2011-06-19" "2013-05-28"
## [43731] "2013-05-25" "2013-05-28" "2013-05-28" "2011-06-24" "2011-06-19"
## [43736] "2011-06-19" "2011-06-24" "2013-05-25" "2013-05-25" "2013-05-25"
## [43741] "2011-06-24" "2012-02-26" "2013-04-15" "2012-02-26" "2013-04-15"
## [43746] "2012-02-26" "2012-02-26" "2012-02-26" "2014-01-05" "2014-01-05"
## [43751] "2014-01-05" "2014-01-05" "2014-01-05" "2012-05-13" "2012-05-13"
## [43756] "2012-05-13" "2012-07-24" "2012-05-13" "2012-10-23" "2012-07-24"
## [43761] "2012-07-24" "2012-07-24" "2012-10-23" "2012-07-24" "2012-12-22"
## [43766] "2012-12-22" "2013-06-03" "2013-06-03" "2012-12-22" "2012-12-22"
## [43771] "2013-08-24" "2012-03-17" "2012-03-17" "2013-08-24" "2012-03-22"
## [43776] "2012-03-17" "2012-03-22" "2013-08-24" "2012-03-22" "2011-04-23"
## [43781] "2011-04-21" "2011-04-23" "2011-04-21" "2012-10-30" "2012-10-30"
## [43786] "2012-10-27" "2012-10-27" "2012-10-27" "2012-10-30" "2012-02-24"
## [43791] "2012-02-24" "2012-02-24" "2012-02-24" "2013-09-09" "2012-02-24"
## [43796] "2013-09-09" "2013-09-09" "2013-09-09" "2013-09-09" "2013-01-19"
## [43801] "2011-03-04" "2011-03-04" "2011-03-04" "2013-01-19" "2011-03-04"
## [43806] "2013-01-27" "2011-03-04" "2013-01-27" "2012-05-20" "2012-03-07"
## [43811] "2012-05-20" "2012-05-20" "2012-03-07" "2013-01-09" "2011-04-16"
## [43816] "2013-01-09" "2011-04-16" "2013-01-09" "2011-04-16" "2012-09-19"
## [43821] "2013-11-15" "2013-11-15" "2011-06-26" "2012-09-19" "2011-12-10"
## [43826] "2011-06-26" "2011-12-10" "2012-12-01" "2012-12-01" "2011-12-10"
## [43831] "2011-06-26" "2012-12-01" "2012-12-01" "2013-11-15" "2012-12-01"
## [43836] "2011-12-10" "2012-07-18" "2012-07-18" "2011-11-27" "2012-07-18"
## [43841] "2011-11-27" "2011-07-11" "2011-03-18" "2013-05-18" "2011-07-11"
## [43846] "2013-05-18" "2011-03-18" "2013-05-18" "2011-03-18" "2011-07-11"
## [43851] "2013-05-18" "2013-05-18" "2011-07-11" "2013-05-18" "2011-03-18"
## [43856] "2011-07-11" "2012-12-09" "2012-12-09" "2012-10-28" "2012-10-28"
## [43861] "2013-01-12" "2013-01-12" "2014-02-07" "2012-12-30" "2012-03-07"
## [43866] "2012-12-30" "2012-12-30" "2012-03-07" "2012-12-30" "2012-12-30"
## [43871] "2012-03-07" "2014-02-07" "2012-08-08" "2012-09-28" "2012-09-28"
## [43876] "2013-11-03" "2012-09-28" "2012-09-28" "2012-09-28" "2012-08-08"
## [43881] "2012-09-28" "2013-11-03" "2012-08-08" "2014-01-19" "2014-01-19"
## [43886] "2013-12-30" "2013-02-06" "2013-12-30" "2013-12-30" "2013-12-30"
## [43891] "2013-02-06" "2013-12-30" "2013-02-06" "2013-02-06" "2012-01-28"
## [43896] "2013-05-21" "2012-01-28" "2013-07-07" "2012-01-28" "2013-05-25"
## [43901] "2013-07-07" "2013-05-25" "2011-07-09" "2011-07-09" "2013-07-07"
## [43906] "2013-05-21" "2013-05-21" "2013-05-25" "2013-02-18" "2011-02-22"
## [43911] "2013-02-18" "2011-02-22" "2011-02-22" "2011-11-02" "2011-11-02"
## [43916] "2011-08-24" "2013-09-19" "2011-08-24" "2012-12-23" "2012-12-23"
## [43921] "2012-12-23" "2012-12-24" "2013-09-19" "2012-12-24" "2012-12-23"
## [43926] "2012-12-24" "2012-12-23" "2013-09-19" "2012-12-24" "2011-08-24"
## [43931] "2014-01-21" "2012-12-24" "2014-01-21" "2013-05-16" "2013-05-16"
## [43936] "2014-01-24" "2013-05-29" "2011-02-27" "2011-02-28" "2013-05-29"
## [43941] "2014-01-24" "2011-02-27" "2014-01-24" "2011-02-28" "2011-03-26"
## [43946] "2011-03-26" "2011-03-26" "2013-07-17" "2011-10-15" "2013-07-17"
## [43951] "2011-10-15" "2013-07-07" "2011-09-02" "2013-07-07" "2011-10-15"
## [43956] "2011-09-02" "2011-09-02" "2011-09-02" "2013-07-17" "2011-09-02"
## [43961] "2013-07-07" "2011-09-02" "2012-05-26" "2013-03-17" "2013-10-20"
## [43966] "2013-10-20" "2012-05-26" "2011-11-13" "2011-11-13" "2011-11-13"
## [43971] "2013-10-20" "2013-03-17" "2011-08-22" "2011-08-22" "2013-03-17"
## [43976] "2011-08-22" "2011-08-22" "2011-11-13" "2011-08-22" "2011-11-13"
## [43981] "2011-11-13" "2013-01-07" "2013-01-07" "2013-01-07" "2014-01-29"
## [43986] "2013-12-20" "2013-12-20" "2013-12-20" "2013-12-20" "2014-01-29"
## [43991] "2014-01-29" "2013-12-20" "2012-09-22" "2011-08-25" "2011-08-25"
## [43996] "2012-09-22" "2012-09-22" "2013-11-16" "2013-11-16" "2013-06-08"
## [44001] "2013-06-08" "2013-06-08" "2011-05-31" "2011-05-31" "2013-06-08"
## [44006] "2011-09-03" "2011-05-22" "2011-05-22" "2011-05-22" "2013-06-08"
## [44011] "2011-09-03" "2011-09-03" "2011-09-03" "2011-05-22" "2011-05-31"
## [44016] "2013-06-08" "2011-05-22" "2011-05-31" "2011-05-31" "2012-09-27"
## [44021] "2012-09-27" "2014-01-30" "2014-01-30" "2012-07-23" "2011-05-20"
## [44026] "2011-05-20" "2011-05-20" "2012-07-23" "2012-07-23" "2011-05-20"
## [44031] "2012-03-06" "2012-03-06" "2012-03-06" "2012-03-06" "2011-08-18"
## [44036] "2011-08-19" "2012-10-10" "2011-08-19" "2012-10-10" "2011-08-18"
## [44041] "2012-02-24" "2013-01-22" "2013-05-14" "2012-02-29" "2012-02-29"
## [44046] "2013-05-14" "2013-01-22" "2013-01-22" "2012-02-29" "2013-03-23"
## [44051] "2012-02-24" "2012-02-24" "2013-03-23" "2013-05-14" "2011-09-22"
## [44056] "2011-09-22" "2011-09-22" "2011-09-25" "2011-09-22" "2011-09-25"
## [44061] "2011-09-25" "2011-09-25" "2012-05-05" "2012-05-05" "2013-08-31"
## [44066] "2013-08-31" "2013-12-08" "2013-03-03" "2013-12-08" "2013-08-31"
## [44071] "2013-08-31" "2013-12-08" "2013-03-03" "2013-08-31" "2013-08-31"
## [44076] "2012-01-26" "2012-01-26" "2011-11-20" "2011-11-20" "2011-11-20"
## [44081] "2011-11-20" "2011-11-20" "2011-11-20" "2011-08-11" "2012-03-03"
## [44086] "2013-10-08" "2012-03-03" "2011-08-11" "2012-03-03" "2013-10-03"
## [44091] "2013-10-08" "2013-10-03" "2012-03-25" "2012-03-25" "2011-12-06"
## [44096] "2011-12-06" "2011-12-06" "2013-02-01" "2013-02-01" "2013-02-01"
## [44101] "2011-06-22" "2011-06-22" "2011-06-22" "2011-06-22" "2011-06-22"
## [44106] "2011-05-03" "2011-05-03" "2014-02-17" "2014-02-22" "2014-02-17"
## [44111] "2014-02-22" "2014-02-17" "2014-02-17" "2014-02-22" "2014-02-22"
## [44116] "2012-02-29" "2014-02-22" "2012-02-29" "2014-02-17" "2011-07-23"
## [44121] "2013-03-01" "2013-03-01" "2011-07-23" "2011-07-23" "2013-03-01"
## [44126] "2013-03-01" "2013-03-01" "2011-08-21" "2011-08-13" "2011-08-13"
## [44131] "2013-08-10" "2011-08-21" "2011-08-21" "2011-08-13" "2013-08-09"
## [44136] "2011-08-21" "2013-08-09" "2011-08-13" "2013-08-10" "2011-08-13"
## [44141] "2011-08-21" "2011-10-31" "2011-05-28" "2014-01-25" "2012-06-22"
## [44146] "2012-06-22" "2011-10-31" "2014-01-25" "2014-01-25" "2012-06-22"
## [44151] "2011-05-28" "2011-07-23" "2011-10-31" "2011-05-28" "2012-06-22"
## [44156] "2014-01-25" "2012-06-22" "2011-07-23" "2011-05-28" "2014-01-25"
## [44161] "2011-05-28" "2012-06-16" "2012-11-06" "2012-08-31" "2012-06-16"
## [44166] "2012-06-16" "2012-06-16" "2012-06-16" "2012-08-31" "2012-08-31"
## [44171] "2012-08-31" "2012-08-31" "2012-11-06" "2012-08-31" "2012-11-16"
## [44176] "2012-11-13" "2012-11-13" "2012-11-16" "2012-11-13" "2012-05-23"
## [44181] "2012-11-13" "2012-11-16" "2012-11-16" "2012-05-23" "2012-05-23"
## [44186] "2011-04-19" "2011-04-19" "2012-11-16" "2012-11-13" "2012-05-23"
## [44191] "2012-05-23" "2011-04-19" "2012-11-23" "2012-11-13" "2013-03-26"
## [44196] "2013-03-26" "2012-11-13" "2011-03-07" "2012-11-13" "2012-11-23"
## [44201] "2013-03-26" "2013-03-26" "2012-11-23" "2011-03-07" "2011-03-07"
## [44206] "2013-03-26" "2012-05-19" "2012-05-19" "2012-05-19" "2012-02-29"
## [44211] "2012-02-29" "2012-02-29" "2012-05-19" "2012-05-19" "2012-02-29"
## [44216] "2011-06-21" "2011-06-21" "2011-06-21" "2011-06-21" "2011-06-21"
## [44221] "2013-08-06" "2013-08-06" "2013-08-06" "2013-08-06" "2013-11-19"
## [44226] "2013-08-06" "2013-11-19" "2013-11-19" "2011-10-13" "2011-10-13"
## [44231] "2011-07-04" "2011-07-04" "2011-12-26" "2014-01-22" "2011-04-13"
## [44236] "2011-04-13" "2011-12-26" "2011-06-25" "2011-11-03" "2011-11-03"
## [44241] "2014-01-22" "2011-07-03" "2014-01-22" "2011-07-03" "2014-01-22"
## [44246] "2011-07-03" "2011-06-25" "2011-06-25" "2011-07-03" "2011-07-03"
## [44251] "2011-06-25" "2011-11-03" "2011-06-25" "2011-02-20" "2011-02-20"
## [44256] "2011-02-20" "2012-09-23" "2011-02-20" "2012-09-23" "2011-02-20"
## [44261] "2012-06-26" "2014-01-24" "2014-01-24" "2012-06-26" "2014-01-24"
## [44266] "2013-01-06" "2013-01-06" "2013-01-06" "2013-11-29" "2013-01-06"
## [44271] "2013-01-06" "2013-11-29" "2012-07-20" "2012-07-20" "2011-06-26"
## [44276] "2012-07-20" "2011-06-26" "2013-11-18" "2013-11-18" "2013-11-18"
## [44281] "2011-10-12" "2014-02-19" "2014-02-19" "2011-10-12" "2013-11-18"
## [44286] "2013-02-20" "2013-11-18" "2011-10-12" "2011-10-12" "2011-10-09"
## [44291] "2011-10-12" "2011-10-09" "2013-02-20" "2013-06-08" "2012-06-13"
## [44296] "2013-06-08" "2013-06-08" "2012-06-13" "2013-11-06" "2013-11-06"
## [44301] "2011-11-10" "2011-11-10" "2011-11-10" "2013-11-06" "2013-11-06"
## [44306] "2011-11-10" "2013-11-06" "2013-11-06" "2011-11-10" "2011-11-10"
## [44311] "2013-02-19" "2013-02-19" "2013-02-19" "2013-02-19" "2013-02-19"
## [44316] "2011-06-09" "2011-06-09" "2012-07-06" "2012-06-16" "2012-07-06"
## [44321] "2012-07-06" "2012-07-06" "2011-11-04" "2012-07-06" "2012-06-16"
## [44326] "2011-11-04" "2012-07-17" "2012-07-17" "2012-07-17" "2013-03-23"
## [44331] "2012-11-25" "2012-11-25" "2013-03-23" "2014-02-19" "2013-03-23"
## [44336] "2014-02-19" "2012-11-25" "2013-03-23" "2011-10-15" "2011-04-30"
## [44341] "2011-10-15" "2011-10-15" "2011-04-30" "2011-10-15" "2012-01-14"
## [44346] "2011-04-30" "2011-04-30" "2012-01-14" "2011-10-15" "2012-11-22"
## [44351] "2013-09-10" "2012-11-22" "2013-09-10" "2013-04-20" "2013-04-20"
## [44356] "2013-04-20" "2013-04-20" "2012-02-03" "2013-04-04" "2012-02-03"
## [44361] "2012-02-03" "2012-02-03" "2012-02-03" "2013-04-04" "2012-02-03"
## [44366] "2013-04-04" "2014-01-12" "2014-01-12" "2014-01-12" "2013-10-08"
## [44371] "2014-01-01" "2013-10-08" "2013-10-10" "2014-01-01" "2014-01-01"
## [44376] "2013-10-10" "2013-06-08" "2013-06-08" "2013-06-04" "2013-06-04"
## [44381] "2013-07-02" "2013-07-02" "2011-05-29" "2011-05-29" "2013-07-02"
## [44386] "2011-05-29" "2011-07-28" "2012-12-21" "2012-12-21" "2013-11-23"
## [44391] "2011-07-28" "2013-11-23" "2013-11-23" "2013-11-23" "2011-07-28"
## [44396] "2011-07-28" "2011-07-28" "2013-11-23" "2013-08-29" "2013-06-10"
## [44401] "2013-08-29" "2013-08-29" "2013-06-10" "2013-06-10" "2013-06-10"
## [44406] "2011-02-01" "2011-02-01" "2011-02-04" "2011-02-04" "2011-02-01"
## [44411] "2011-02-04" "2011-04-09" "2011-04-09" "2011-04-09" "2011-04-09"
## [44416] "2013-05-11" "2013-05-11" "2011-04-09" "2013-05-11" "2011-01-31"
## [44421] "2011-01-31" "2012-02-11" "2012-02-11" "2012-02-11" "2012-02-11"
## [44426] "2012-02-11" "2012-02-11" "2011-01-31" "2012-02-18" "2012-02-18"
## [44431] "2011-07-11" "2012-02-18" "2011-07-11" "2012-02-18" "2012-02-18"
## [44436] "2011-07-11" "2011-09-15" "2011-09-15" "2011-09-15" "2012-02-01"
## [44441] "2012-02-01" "2012-02-01" "2012-02-01" "2011-03-25" "2011-08-30"
## [44446] "2011-03-25" "2012-07-03" "2012-07-03" "2012-07-03" "2011-09-07"
## [44451] "2011-03-25" "2011-09-07" "2011-08-30" "2011-08-30" "2011-03-25"
## [44456] "2011-09-07" "2012-07-03" "2011-03-25" "2012-07-12" "2012-07-08"
## [44461] "2012-07-08" "2011-04-03" "2011-04-03" "2011-04-03" "2011-04-03"
## [44466] "2011-04-03" "2012-07-12" "2012-07-08" "2012-07-12" "2011-11-15"
## [44471] "2013-10-25" "2013-10-26" "2013-10-25" "2011-11-15" "2013-10-25"
## [44476] "2013-10-26" "2013-10-26" "2011-11-15" "2011-11-15" "2011-11-15"
## [44481] "2011-05-08" "2011-05-08" "2012-10-16" "2012-10-16" "2012-10-16"
## [44486] "2012-10-16" "2011-05-08" "2012-10-16" "2011-05-08" "2011-05-08"
## [44491] "2011-04-22" "2013-08-24" "2011-08-12" "2011-08-12" "2011-08-12"
## [44496] "2011-04-22" "2011-08-12" "2013-08-24" "2013-08-24" "2011-08-04"
## [44501] "2011-08-04" "2011-08-04" "2011-08-12" "2013-08-24" "2011-08-04"
## [44506] "2011-08-04" "2011-10-15" "2012-06-18" "2011-10-15" "2012-06-18"
## [44511] "2013-06-13" "2013-06-13" "2013-06-13" "2012-06-18" "2014-01-05"
## [44516] "2012-12-11" "2012-12-11" "2014-01-05" "2014-01-05" "2012-12-11"
## [44521] "2012-12-11" "2014-01-05" "2012-12-11" "2014-01-05" "2011-05-28"
## [44526] "2013-09-08" "2013-06-20" "2013-06-20" "2013-09-08" "2013-09-08"
## [44531] "2011-05-28" "2013-05-30" "2011-11-24" "2013-05-30" "2011-11-24"
## [44536] "2013-05-30" "2011-11-24" "2013-05-30" "2013-05-30" "2013-11-30"
## [44541] "2013-09-09" "2013-09-09" "2013-09-09" "2013-11-30" "2013-09-09"
## [44546] "2013-11-30" "2013-11-30" "2011-03-30" "2011-03-30" "2013-12-26"
## [44551] "2013-05-16" "2013-05-16" "2012-10-14" "2013-05-16" "2012-10-14"
## [44556] "2013-07-15" "2013-05-16" "2013-07-15" "2013-12-26" "2013-07-11"
## [44561] "2013-07-11" "2012-10-14" "2013-12-26" "2013-08-01" "2013-08-01"
## [44566] "2012-11-17" "2012-11-17" "2013-08-01" "2012-11-17" "2012-11-17"
## [44571] "2013-08-01" "2012-11-17" "2013-08-01" "2012-11-17" "2011-10-26"
## [44576] "2011-10-31" "2013-01-04" "2013-10-02" "2011-08-17" "2013-01-04"
## [44581] "2011-08-17" "2011-10-31" "2013-10-02" "2011-10-26" "2011-08-17"
## [44586] "2011-08-17" "2011-08-17" "2014-02-04" "2014-02-04" "2013-11-11"
## [44591] "2013-11-11" "2013-11-11" "2013-11-11" "2013-11-11" "2014-02-04"
## [44596] "2013-11-11" "2011-10-19" "2011-10-19" "2011-10-19" "2011-10-19"
## [44601] "2011-10-19" "2011-10-19" "2012-05-27" "2012-05-27" "2012-05-27"
## [44606] "2014-02-07" "2014-02-07" "2014-01-28" "2014-01-28" "2011-11-09"
## [44611] "2014-01-28" "2011-11-09" "2014-02-07" "2011-11-09" "2013-04-12"
## [44616] "2013-04-12" "2013-03-30" "2013-03-30" "2013-04-12" "2013-04-12"
## [44621] "2012-11-23" "2012-11-23" "2012-09-16" "2012-09-16" "2012-12-02"
## [44626] "2012-12-02" "2012-09-16" "2011-08-17" "2011-08-17" "2011-08-02"
## [44631] "2012-12-24" "2012-12-24" "2012-12-24" "2011-08-02" "2013-12-01"
## [44636] "2013-12-01" "2013-12-01" "2013-12-01" "2012-10-08" "2014-01-20"
## [44641] "2012-10-12" "2012-02-27" "2014-01-18" "2012-10-12" "2014-01-18"
## [44646] "2012-10-12" "2014-01-18" "2012-10-08" "2014-01-20" "2014-01-20"
## [44651] "2014-01-20" "2012-02-27" "2014-01-18" "2014-01-20" "2012-10-08"
## [44656] "2014-01-18" "2011-11-02" "2011-11-02" "2013-07-31" "2012-10-14"
## [44661] "2012-01-06" "2011-11-02" "2013-07-31" "2013-07-31" "2011-11-02"
## [44666] "2013-07-31" "2012-10-14" "2012-10-14" "2012-01-06" "2013-07-31"
## [44671] "2011-02-08" "2011-02-08" "2013-02-21" "2013-02-21" "2011-02-08"
## [44676] "2013-06-20" "2011-02-08" "2013-06-20" "2013-02-21" "2013-02-21"
## [44681] "2011-02-08" "2013-06-20" "2013-06-20" "2013-02-21" "2013-02-07"
## [44686] "2013-02-07" "2011-04-12" "2011-04-12" "2012-02-22" "2011-07-12"
## [44691] "2011-07-12" "2012-02-22" "2011-07-12" "2011-07-12" "2012-02-22"
## [44696] "2012-02-22" "2012-02-22" "2013-03-25" "2013-09-16" "2013-09-16"
## [44701] "2013-09-16" "2013-09-16" "2013-03-25" "2013-03-25" "2013-09-16"
## [44706] "2011-03-14" "2011-03-14" "2011-03-14" "2013-06-24" "2011-08-04"
## [44711] "2013-06-25" "2012-06-14" "2011-08-04" "2012-06-14" "2013-06-06"
## [44716] "2013-06-24" "2013-06-25" "2013-06-25" "2013-06-06" "2013-06-25"
## [44721] "2013-06-06" "2013-06-24" "2012-06-15" "2013-12-11" "2011-08-04"
## [44726] "2012-06-15" "2013-12-11" "2013-05-04" "2013-07-27" "2013-05-04"
## [44731] "2013-05-04" "2011-05-23" "2013-05-04" "2013-05-04" "2011-05-23"
## [44736] "2011-05-23" "2013-07-27" "2011-10-27" "2011-10-27" "2013-11-05"
## [44741] "2013-11-08" "2013-11-05" "2013-11-08" "2013-11-05" "2013-11-08"
## [44746] "2013-11-05" "2013-11-08" "2012-04-02" "2012-04-02" "2012-04-02"
## [44751] "2012-04-02" "2012-04-02" "2012-04-02" "2011-08-08" "2013-12-17"
## [44756] "2013-12-17" "2011-08-08" "2011-08-08" "2013-12-17" "2013-07-28"
## [44761] "2013-07-28" "2013-12-17" "2013-12-17" "2013-07-28" "2013-09-16"
## [44766] "2013-09-16" "2013-09-16" "2011-02-25" "2013-09-16" "2013-09-16"
## [44771] "2011-02-25" "2011-02-25" "2011-02-25" "2013-01-23" "2013-01-23"
## [44776] "2013-01-23" "2013-01-23" "2011-10-20" "2013-04-14" "2011-10-20"
## [44781] "2011-10-20" "2011-10-20" "2013-04-14" "2011-10-20" "2011-08-07"
## [44786] "2011-08-07" "2011-05-14" "2011-05-14" "2011-05-14" "2011-05-14"
## [44791] "2011-05-14" "2011-02-21" "2012-09-01" "2011-02-21" "2011-02-21"
## [44796] "2013-10-27" "2012-09-01" "2013-10-27" "2011-02-20" "2011-02-20"
## [44801] "2011-02-20" "2013-10-27" "2011-09-21" "2013-07-18" "2011-09-21"
## [44806] "2013-07-18" "2011-09-21" "2011-09-21" "2013-12-21" "2013-04-01"
## [44811] "2012-08-05" "2013-04-01" "2013-04-01" "2014-01-26" "2014-01-26"
## [44816] "2012-08-05" "2014-02-12" "2013-04-01" "2014-02-12" "2013-12-21"
## [44821] "2012-08-05" "2013-12-21" "2013-04-01" "2014-02-12" "2013-09-25"
## [44826] "2013-05-25" "2013-05-25" "2013-09-25" "2013-06-05" "2013-06-05"
## [44831] "2013-06-05" "2013-05-26" "2013-06-05" "2013-05-26" "2013-05-26"
## [44836] "2013-05-26" "2013-05-27" "2013-05-31" "2012-01-17" "2013-02-08"
## [44841] "2013-05-31" "2013-05-31" "2013-05-22" "2013-05-07" "2013-05-07"
## [44846] "2013-05-07" "2012-01-17" "2013-05-31" "2013-02-08" "2013-05-27"
## [44851] "2013-02-08" "2013-05-22" "2013-05-22" "2013-05-31" "2013-02-08"
## [44856] "2012-01-17" "2013-05-07" "2013-05-22" "2013-05-07" "2013-02-08"
## [44861] "2013-05-22" "2012-01-02" "2012-01-02" "2013-08-09" "2013-08-09"
## [44866] "2011-10-08" "2013-12-24" "2012-03-26" "2011-10-08" "2011-10-14"
## [44871] "2013-12-24" "2011-10-08" "2013-05-25" "2011-10-14" "2011-10-14"
## [44876] "2013-08-07" "2013-05-25" "2012-03-26" "2013-12-24" "2011-05-26"
## [44881] "2013-08-07" "2011-05-26" "2012-03-26" "2013-09-02" "2013-02-26"
## [44886] "2013-09-02" "2013-09-03" "2013-09-03" "2013-09-03" "2013-02-26"
## [44891] "2013-02-26" "2013-09-02" "2013-07-05" "2013-07-05" "2013-06-27"
## [44896] "2011-09-26" "2013-07-05" "2011-10-05" "2011-10-05" "2013-07-05"
## [44901] "2013-06-27" "2011-09-26" "2013-06-27" "2013-06-27" "2013-06-27"
## [44906] "2013-07-05" "2012-02-29" "2012-02-29" "2011-12-17" "2013-04-03"
## [44911] "2011-12-17" "2013-04-03" "2013-04-03" "2011-12-17"
class(Customer_Final$tran_date)
## [1] "Date"

#b. Count of transactions where the total amount of transaction was negative

#has.neg <- apply(Customer_Final, 1, function(row) any(row < 0))
#which(has.neg)
#length(which(has.neg))

nrow(Customer_Final[Customer_Final$total_amt<0,])
## [1] 4255

#5. Analyze which product categories are more popular among females vs male customers.

library(dplyr)

Customer_Final%>%group_by(Gender,prod_cat)%>%summarise(sum(Qty>0))

#6. Which City code has the maximum customers and what was the percentage of customers from that city?

library(dplyr)
city_code1 <- Customer_Final %>%group_by(city_code) %>%summarise(n_distinct(cust_id))
city_code1
#citycode 3 has maxium customers

percentage1 <- (514/sum(city_code1$`n_distinct(cust_id)`))*100


percentage1
## [1] 10.43867

#7. Which store type sells the maximum products by value and by quantity?

library(dplyr)
Customer_Final%>%group_by(Store_type)%>% summarise(sum(total_amt,Qty))
#Eshop is selling maxium products

#8. What was the total amount earned from the “Electronics” and “Clothing” categories from Flagship Stores?

library(dplyr)

Customer_Final%>%group_by(prod_cat)%>%summarise(sum(total_amt,na.rm = TRUE))
#Electronics 31484456   
#Clothing    18589406   

#9. What was the total amount earned from “Male” customers under the “Electronics” category?

Customer_Final$Gender
##     [1] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
##    [37] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M
##    [73] M M F F F F F F F F F F M M M M M F F F F F F F F F F F F F F F F F F F
##   [109] F F F F F M M M M M M M M M F F F F F F F F F F F F F M M M M M M M M F
##   [145] F F F F F F F F F F F F M M M M M M M M M M F F F F F F F F F F F F F M
##   [181] M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##   [217] F F F F F F F M M M M M M M M F F F F F F F F F F F F F F F F M M M M M
##   [253] M M M M M M M M M M M M M F F F F F F F F F F F F F F F M M M F F F F F
##   [289] F F F F F F M M M M F F F F F F F F F F F F M M M M M M M M M M M M M M
##   [325] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##   [361] M M M F F F F F F F F F F F F F F F M M M M F F F F F F F F F F M M F F
##   [397] F F F F F M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F M
##   [433] M M M M M M M M M M M F F F F F F F F F F F F M M M M M M M M M M M M M
##   [469] M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##   [505] F M M M M M M M M M M M M F F F F F F F F F F F F M M M M M M M M F F F
##   [541] F F F F M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F
##   [577] F F F F M M M M M M M M M M M M M M M M F F F F F F F F F F F F F M M M
##   [613] M M M M M M M M M M M M M M F F F F F F F F F F M M M M M M M M M M M M
##   [649] M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
##   [685] M M M M M M M M M M M M M F F F F F F F F F F M M M M M M M M M M M M M
##   [721] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F M M M M F
##   [757] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##   [793] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F M M M
##   [829] M M M M F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
##   [865] M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F
##   [901] F F F F M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F
##   [937] F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M F F F F
##   [973] F F F F F F M M M M M M M M M M M M F F F M M M M M F F F F F F F F F F
##  [1009] F M M M F F F F F F F M M M M M M M M M M F F F F F F F F M M M M F F F
##  [1045] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M
##  [1081] M M M M M M M M M M M M M M M M M M M M F F F F F F F M M M M M M M M M
##  [1117] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [1153] F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M F F F F
##  [1189] F F F F F F F F M M M M M M M M M F F F F F M M M M M M M M M F F F F F
##  [1225] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M
##  [1261] M M M M M M M M M M M F F F F F F F F F M M M M M M M M M M M M M M M M
##  [1297] M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F M
##  [1333] M M M M M M M M M M M M M F F F F F F F F F F F M M M M M M M M M M M F
##  [1369] F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F
##  [1405] F F F F M M M M M M M M M F F F F F F F F F F F F F F F F F F F F M M M
##  [1441] M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F M
##  [1477] M M M M F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M
##  [1513] M M F F F M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F
##  [1549] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [1585] M M M M M M M M M M M F F F F F F F F F F F F F F F F F F M M M M M M M
##  [1621] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [1657] F F F M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F
##  [1693] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [1729] F F F M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [1765] F F F F M M M M F F F F F F F M M M M M M M F F F F F F F F F F F F F F
##  [1801] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [1837] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F
##  [1873] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [1909] F F F F F F F F F F F F F F F F M M M M M M M M M M F F F F F F F F F F
##  [1945] F F F F F F M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F
##  [1981] F M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F
##  [2017] M M M M M M M M M F F F F F F F M M M M M M M M M M                    
##  [2053]           M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [2089] F F M M M M M M M M F F F F F F F F M M M M M M M M M M M M M M M M M F
##  [2125] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M
##  [2161] M M M F F M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F
##  [2197] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [2233] F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [2269] M M M M M M M M M M F F F F F F F F F F F F F F F M M M M M M M M M M M
##  [2305] M M M M M M M F F F M M M M M M M M M M M M M M M M F F F F F F F F F F
##  [2341] F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
##  [2377] M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [2413] F F F F F F F F F F F F F F F F M M M F F F F F F F F F F F F F F F F F
##  [2449] F F F F F M M M M M F F F F F F M M M M M M M M M M M M M M M F F F F F
##  [2485] F M M M M M M M M M M M M M F F F F F F F F F F F F F F F F M M M M M M
##  [2521] M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
##  [2557] F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [2593] M M M M M M M M M M F F M M M M M M M M M F F F F F F F F F F F M M M M
##  [2629] M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F
##  [2665] F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [2701] M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F
##  [2737] F F F F F F F F F M M M M M M M M M M F F F F F F F F F F F F F F M M M
##  [2773] M M M M M M M M F F F F F F F F F F F M M M M M M M M M F F F F F F F F
##  [2809] F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
##  [2845] M M M F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F F F
##  [2881] F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [2917] M M M M M M M M M F F F F F F F F F F F F F F F M M M M M M M M M M M M
##  [2953] M M M M M M M M M M M F F F F F F F F F F M M M M M M M M M M M M M M M
##  [2989] M M M M M M M M M M M M M M M M M M M F F M M M M M M M M M M M M M M M
##  [3025] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F
##  [3061] F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M
##  [3097] M M M M M M M M M M M M M F F F F F F F F F F F F F M M M M M M M M M M
##  [3133] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [3169] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [3205] M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F
##  [3241] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [3277] M M M M M M M M M M M M F F F F F F F F F F F F F F F F F M M M F F F F
##  [3313] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [3349] F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [3385] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [3421] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F
##  [3457] F F F F F F F M M M M M F F F F F F F F F F F F M M M M M M M M M F F F
##  [3493] F F F F F F M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F
##  [3529] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
##  [3565] M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F
##  [3601] F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M
##  [3637] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [3673] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [3709] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [3745] F F M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F
##  [3781] F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M F F F F F F
##  [3817] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M
##  [3853] M M M M M M M M M M M M M M M M M M M F F M M M M M M M F F F F F F F F
##  [3889] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F
##  [3925] F F F F F M M M M F F F M M M M M M M M M M F F F F F M M M M M M M M M
##  [3961] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [3997] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [4033] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F M
##  [4069] M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F
##  [4105] F F F F F F F F M M M M M M F F F M M M M M M M M M M M M M M M F F F F
##  [4141] F M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F
##  [4177] F F F F F F F F F F F F F F F F M M M M M M M M M M M M F F F F F F F F
##  [4213] F M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [4249] F F F M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F M M M
##  [4285] M M F F F F F F F F F F M M M M M M M M M M M M M F F F F F F F F F F F
##  [4321] F F F F F F F F F F F M M M M M M M M M F F F M M M F F F F F F F F F F
##  [4357] F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M
##  [4393] M M M M M M M M M M M F F F F F F F F F F F F M M M M M F F F F F F F F
##  [4429] F F F M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F
##  [4465] F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M
##  [4501] M M M M F F M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F
##  [4537] F F F F F F F F F F M M M M M M M M M M M M M M M F F F F F F F F F F F
##  [4573] F F F F F F F F F F F M M M M M M M M M M M M M M F F F F F F F F F F F
##  [4609] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
##  [4645] M M M M M M M M M M F F F F F F F F F F M M M M M M M M M M M M M M M M
##  [4681] M M M M F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [4717] F F F F F F F F F F F F F F F F F F F M M M F F F F F F F F F F F F F F
##  [4753] F M M M M M M M M M M M M M M M F F F F F F F F F F M M M M M M M M M M
##  [4789] M F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M F
##  [4825] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M
##  [4861] M F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M F
##  [4897] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M
##  [4933] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [4969] M M M M M M M F F F F F M M M M M M M M M M M M M M M M M M M M M M M M
##  [5005] M M M M M M M M F F F F F F F F F F F F F F F F F F F F M M M M M M M M
##  [5041] M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M F
##  [5077] F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [5113] M M M M M M F F F F F F F F F F M M M M M M M M M M M M M F F F F F F F
##  [5149] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [5185] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
##  [5221] M M F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M
##  [5257] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [5293] F F F F F F F F F F F F F F F M M M M M M M M M F F F F F F F F F F F F
##  [5329] F F F F F F F F F F F M M M M M M F F F F F F F F F F F F M M M M M M M
##  [5365] M M M M M M M M M M M M M M M M M M M M M M M M F F M M M F F F F F F F
##  [5401] F F F F F F F F F F F F F F F F F F F F M M M M F F F F F F F F F F F F
##  [5437] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [5473] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [5509] M F F F F M M M M F F F F F F F F F F M M M M F F F F F F F F F F F F F
##  [5545] F F F F F F F F F F F F F F F F F F F M M M M M M M M M M F F M M M M M
##  [5581] F F F F F F F F F F F F F F F F M M F F F F F F F F F F F F F F F F F F
##  [5617] F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M F
##  [5653] F F F F F F F F F F F F F F F F F F F M M F F F F F F F F F F F M M M M
##  [5689] M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [5725] F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M
##  [5761] M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M
##  [5797] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F M M M M M
##  [5833] M M M F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M
##  [5869] M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F
##  [5905] F F F F F F F M M M M M M M M M F F M M M M M M M F F F M M M M M M M M
##  [5941] M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F
##  [5977] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [6013] F F F F F F F F F M M M M M M M M M M M M M F F F F F F F F F F F F F F
##  [6049] F F F F F F F F F F F F F M M M M M M M M F F F F F F F F F F F F F F F
##  [6085] F F F F F F F F F M M M M M M M M M M M M M M M M M M M M F F F F F F M
##  [6121] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [6157] M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F M M M M
##  [6193] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F
##  [6229] F F M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F
##  [6265] F F F F F F F M M M M M M M M M M M M M M M M M M M M M M F F M M M M M
##  [6301] M M M M M M F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M
##  [6337] M M M M M M M F F F F F F F F F F F F F F F F M M M M M M M M M M M M M
##  [6373] M M M M M M M M M M M M F F F F F F F F F F F F F F F F M M M M M M M F
##  [6409] F F F F F M M M M M M M M M M M M M M M M M M M M M M F F F F F F M M M
##  [6445] M M M M M M M M M M F F F F F F F F F F F F F F F F F M M M M M M M M M
##  [6481] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [6517] F F F F F F F F F F F M M M M M M M F F F F F F F F F M M F F F F F F F
##  [6553] F F F F F M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
##  [6589] F F F F F F F F M M M M M M M M M M M M M M M M M M M F F F F F F F F F
##  [6625] F M M M M M M M M M F F F F F F F F F F F M M M M M M M M M M F F F F F
##  [6661] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [6697] M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F
##  [6733] F F F F F F F F F M M M M M M M M M M F F F F F F F F F F F F F F F F F
##  [6769] F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M F F
##  [6805] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [6841] F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M
##  [6877] M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [6913] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [6949] M M F F F F F F F F M M M M M M F F F F F F F F F F F F F F F F F F F F
##  [6985] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
##  [7021] M M M M M F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M F
##  [7057] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
##  [7093] M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M
##  [7129] M M F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F
##  [7165] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [7201] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
##  [7237] M M M M M M F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M
##  [7273] M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F
##  [7309] F F F F F F M M M M F F F F F F F F F F F F M M M M M M M M M M F F F F
##  [7345] F F F F F F F F F F F F F F M M M M M M M M M M F F F F F F F F F F F F
##  [7381] F F F F F F F F F F F M M M F F F F F F F F F F F F F F F F F F F F F F
##  [7417] F F F F F M M F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
##  [7453] M M M M M M M M M M M F F F F F F F F F F F F F F F M M M M M M F F F M
##  [7489] M M M F F F F F F F F F F F F F M M M M M M M M M M M M M M M M F F F F
##  [7525] F F F F F F F F F F F F M M M M M M F F F F F F F F F F F F F F M M M M
##  [7561] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
##  [7597] F F F F F F M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
##  [7633] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
##  [7669] F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M
##  [7705] M M M M M M M M M M M F F F F F F F F F F F F F M M M M M M M M M M M M
##  [7741] M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F M M M
##  [7777] M F F F F F M M M M M M F F F F F F F F M M M M M M M M M M M M M M M M
##  [7813] M M M M M M M M M M M M F F F F F F F F F F F F F F F F M M M M M M M M
##  [7849] M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F
##  [7885] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [7921] F F F F F F M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F
##  [7957] F F F F F F F F F F M M M M M M M M F F F F F F F F M M M M M M M M M M
##  [7993] M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F
##  [8029] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
##  [8065] M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F M M M M
##  [8101] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [8137] M M M M M M M M F F F F F F F M M M M M M M M M M M M M M M M M M M M M
##  [8173] M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F
##  [8209] F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [8245] M M M F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
##  [8281] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M F
##  [8317] F F F F F F F F F F M M M M M M M F F F F F F F F F F F F F F F M M M M
##  [8353] M M M M M M M M M M M M F F F F F F F F F F F F F F F F F M M M M M M M
##  [8389] M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F
##  [8425] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
##  [8461] M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [8497] F F M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F
##  [8533] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [8569] M M M M M M M M M M F F F F F F F F F F F F F F M M M M M M M M M M M F
##  [8605] F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M F F F F F
##  [8641] F M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F
##  [8677] F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F
##  [8713] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [8749] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [8785] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [8821] F F F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F F F F
##  [8857] F F F F F F F F F F F F M M M M M M F F F F F F F M M M M M M F F F F F
##  [8893] M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F
##  [8929] F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [8965] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [9001] M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
##  [9037] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M F F F F F
##  [9073] F F F M M M M M M M M M M M M F F F F F F F F F F F M M M M F F F F F F
##  [9109] F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
##  [9145] M M M M M F F F F F F F M M M M M M M M M M M M F F F F F F F M M M M M
##  [9181] M M M M M M M M F F F F F F F F F F F F F F F F F F M M M F F F F F F F
##  [9217] F F F F F F M M M F F F F F F F M M M M M M M M M M M M M M F F F F F F
##  [9253] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
##  [9289] M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [9325] F F F F F F F F F F F F F M M M M M F F F F F F F F F F F F F F F F F F
##  [9361] M M M F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M
##  [9397] M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [9433] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F
##  [9469] F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [9505] M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F
##  [9541] F F F M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F
##  [9577] F F F F F F F F F F F F M M M M M M M M M M M F F F F F F F F F F F F F
##  [9613] F F F F F M M F F F F F F F F F F F F F F M M M M M M M M M M M M M F F
##  [9649] F F F F F F F F F F F F F F F F F F F F F F M M M M M M M F F F F F F F
##  [9685] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [9721] F F F F F F F F F F F F F F F F F F F F M M M F F F F F F M M M M M M M
##  [9757] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [9793] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
##  [9829] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
##  [9865] F F F F F F F F F F F F F F F M M M M M M M M M F F F F F F F F F F F F
##  [9901] F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
##  [9937] M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F M M M
##  [9973] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F
## [10009] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
## [10045] M M M F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
## [10081] F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M F F F F F
## [10117] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M
## [10153] M F F M M M M M M M M M M M F F M M M M M M M M M M M M M M M M M F F F
## [10189] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [10225] F F M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F
## [10261] F F F F F F F M M M M M M M M M M F F F F F F M M M M M M M M M M M M M
## [10297] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [10333] M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F
## [10369] F F F F F F F F F F F F F F F F F F F F F M M F F F F F F F F F F F F F
## [10405] F M M M M M F F F F F F F F F F F F F M M M M M F F F F F F F F F F M M
## [10441] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
## [10477] M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F M M F F
## [10513] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M F
## [10549] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [10585] M M M M M M M M F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [10621] M M M M M M M M M M M M M M M M M M M M M M M M F F F M M M M M M M M M
## [10657] M M M M M M M M M M M M M M M F F F F F F F M M M M M M M M M M M M M M
## [10693] M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [10729] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [10765] F F F M M M M M M M M M M M M M M M M M M F F M M M M M M M M M M M M M
## [10801] M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F
## [10837] F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M F F
## [10873] F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [10909] M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F
## [10945] F F F F F F F F F F F F M M F F F F F M M M M M M M M M M M M M F F F M
## [10981] M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [11017] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M F
## [11053] F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M
## [11089] F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M
## [11125] M M M M M M M M F F M M M M M M F F F F F F F F F F F F F M M M M M F F
## [11161] F F F F M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F
## [11197] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M F F
## [11233] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [11269] M M M M M M M F F F F F F F F F F F F F F F M M M M F F F F F F F F F F
## [11305] F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M
## [11341] M M M M M M M M M F F F F F M M M M M M M M M M M M M F F F F F F F F F
## [11377] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [11413] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [11449] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [11485] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [11521] M M M M M F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [11557] M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F M M M
## [11593] M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F
## [11629] F F F M M M M M M F F F F F M M M M M M M M M M M M M M M M M M M M M M
## [11665] M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F
## [11701] F M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F M
## [11737] M M M M M M M M F F F F F F F F F F F F F F F F F F F M M M M M M M M M
## [11773] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [11809] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [11845] M M M M M F F F F F F F F F F F F F F F F M M M M M M M M M M M M F F F
## [11881] F F F F F F F F F F F F F M M M M M M F F F F F F F F F F F F F F F F M
## [11917] M M M M F F F F F F F F F F F F F F F F F F F F M M M M M M M F F M M M
## [11953] M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F M M
## [11989] M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F M M M M M M
## [12025] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [12061] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [12097] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [12133] M M M M M M M M M F F F F F F F F F F F F F F M M M M M M M M M M M M M
## [12169] M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F
## [12205] F F F F F F F F F F M M M M M M M M M M M M F F F F F F F F M M M M M M
## [12241] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F
## [12277] F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M F F
## [12313] F F F F F F F F F M M M M F F F F F F F F F F F F F F F M M F F F F F F
## [12349] F F F F F F F F M M M M M M M M M M M M M M M M M M F F M M M M M M M M
## [12385] F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
## [12421] M M M M M M M M F F F F F F F F F F F F F F F F F F F F M M M M M M M M
## [12457] M M M M M M M M M M F F F F F F F F F M M M M M M M M M M M M M M M M M
## [12493] M M M M M M M M M F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [12529] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [12565] M M F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [12601] M M M M M M M M F F F F F F F F F F F F F F F F F F F M M M M M M M M M
## [12637] M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F
## [12673] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [12709] F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M
## [12745] M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F
## [12781] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M
## [12817] M M M M M M M M F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [12853] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [12889] M M M M M F F M M M M M M M M F F F F F F F F F F F F F F M M M M M M M
## [12925] M M M M M M M M M M M M F F F F F M M M M M M M M M M M M M M M M M M M
## [12961] M M M M M M M M M M M M M M F F F M M M M M M M M M M M M M M M M M M M
## [12997] M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
## [13033] M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F M M M M M M
## [13069] M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F M M M M M
## [13105] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
## [13141] F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [13177] M M M M M M M M F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [13213] M M M M M M M M M M M F F F F F F F F F F M M M M M M M M M M M M M F F
## [13249] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [13285] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [13321] F M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F M
## [13357] M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F
## [13393] F F F F F F F F F F F F F F M M M M M M F F F F F F F F F F F F F F M M
## [13429] M M M M M M M M M F F F F F F F F F F F F M M M M M F F F F F F F F F F
## [13465] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [13501] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [13537] M M M M M M M M M F F F F F M M M M M M M M M M F F F F F F F F F F F F
## [13573] F F F M M M M M M M M M M M M F F F F F F M M M M M M M M M M F F F F F
## [13609] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [13645] M M M M M M M M M M M M M M M M F F F M M M M M M F F M M M F F F F F F
## [13681] F F F F F F F F F F F F M M M M M M M M M M M F F F F F F F F M M M F F
## [13717] F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M
## [13753] M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F
## [13789] F F F F F F F F F F F M M M M M M M M M M F F F F F F M M M M M M M M M
## [13825] M M M M M M M M M M M F F F F F F M M M M M M M M F F F F F F F F F F F
## [13861] F F F F F F F F F F F F F F F F F M M M M M M M M M M M M F F F F F F F
## [13897] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
## [13933] M M M M M M M M M M M F F M M M M M M M M M M F F F F F F F F F F F F F
## [13969] F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [14005] M M M M M M M M M M M M F F F F F F F F F F F F F M M M F F F F F F F F
## [14041] F F F F F F F F F F M M M M M M M M M M M F F F F F F F F F F F F F F F
## [14077] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M
## [14113] M M M M M M M M M F F F F F F F M M M M M M M M M M M M F F F F F F F F
## [14149] F F F F F F F F F F F F F F M M F F M M M M M M F F F F F F M M M M M M
## [14185] M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M
## [14221] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [14257] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
## [14293] M M M M M M M M M M F F F F F M M M M M M M M M M M M M M M M M M M M M
## [14329] M M M M M M M M M M M M M M F F F F F F M M F F F F F M M M M M M M M M
## [14365] M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [14401] F F F F F F F F M M M M M F F F F F F F F F F F F F F M M M M M M M M M
## [14437] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [14473] F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M F F F F F
## [14509] F F M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F
## [14545] F F F F M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F
## [14581] F F F F F F F F F F F F F M M M M M M M M M M M M F F F F F F F F M M M
## [14617] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [14653] M M M M M M M M F F M M M M M M M M M M F F F F F M M M M M M M M M M M
## [14689] M M M M M M M M M M M M M M M M M M F F F F F F F F F M M M M M M M M M
## [14725] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [14761] F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M F F F
## [14797] F F F M M M M M M F F F F F F F F F F F F F F F F F F F F F F F M M M M
## [14833] M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F
## [14869] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M
## [14905] M M M M M M M M M M M M F F F F F F F F F F F F M M M M M M M F F F F F
## [14941] F F F F F F F F F F F F F F F F F F F M M F F F F F F F F F F F F F F F
## [14977] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
## [15013] M M M M M M M M M F F F F F F M M M M M M M M M M M M M M M M M M M M F
## [15049] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [15085] F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [15121] F F F F F F M M F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [15157] F F F F F F F F F F F F F F M M M M M F F F F M M M M M M M M M M M M F
## [15193] F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [15229] M M M M M M F F F F F F F F F F F F F F F F F F M M M M M M F F F F F F
## [15265] F F F F F F F F F F F F M M M F F F F F F F F F F F M M M M M M M M M M
## [15301] M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F M
## [15337] M M M M M M M M M M M M M M M M M F F F F F F F M M M M M M M M F F F F
## [15373] F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
## [15409] M M M M M M M M F F F F F F F F F M M M M M M M M M M M M M M M M M M M
## [15445] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F
## [15481] F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [15517] M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F M M M M M F
## [15553] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [15589] F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M F F F F
## [15625] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
## [15661] M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F
## [15697] F F F F F F F M M M M M M M M M M M M M M F F F F F F F F F F F F F F F
## [15733] F F F F F F F F F F F F M M F F F F F F F F F M M M M M M M M M M M M M
## [15769] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [15805] M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F
## [15841] F F F F F F F F F F F F F F F F F F F M M M M M M M M F F F F F F F F M
## [15877] M M M M M M M M M M M M M M M M M M M M M M M M F F F F F M M M M M M M
## [15913] M M M M M F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M
## [15949] M M M M M M M M M M M M M M M F F F F F F F F F F M M M M M M M M M F F
## [15985] F F F F F F F M M M M M M M M F F F F F F F F F F M M M M M F F F F F F
## [16021] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
## [16057] M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M
## [16093] M M F F F F F F F F F F F F F F F F F M M M M M F F F F F F F F F F F F
## [16129] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [16165] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [16201] F F F F F F F F F M M M M M M F F F F F F F F M M M M M M M F F F F F F
## [16237] F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M
## [16273] M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F M M M M M M
## [16309] M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F
## [16345] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
## [16381] F F F F F F M M M M M M M M M M M M M F F F F F F F F F F F F M M M M M
## [16417] M M M M M M M M M M M M M M M M M M M F F F F F F F F F F M M M M M M M
## [16453] M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F
## [16489] F F F F M M M F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [16525] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [16561] M F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M F
## [16597] F F F F F F M M M M M M M M F F F M M M M M M M M M M M M M M M M M M M
## [16633] M M F F F F F F F F F F F F F F M M M M M M M M M M M M M F F F F F F F
## [16669] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [16705] M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [16741] F F F F F F F F F F F F F F F F F F F F M M M M M M M F F F F F F F F F
## [16777] F M M M M M M M M M M M M M M M M M M M F F F F F F F F F F M M M M M M
## [16813] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M F F F F F F
## [16849] F F F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F
## [16885] F F F F M M M M M M M M M M M M M M M F F F F F M M M M M M F F F F F F
## [16921] F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M
## [16957] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [16993] M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F M
## [17029] M F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
## [17065] M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F
## [17101] F F F F F F F F F F F F F F M M M M M M M M M M F F F F F F F F F M M M
## [17137] M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F
## [17173] F F F F M M M M M F F F F F F F F F F F F F M M M M M M M M F F F F F F
## [17209] F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [17245] M M M M M M M M F F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [17281] M M M M M F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M
## [17317] M M M M M M M M M M M M M F F F F F F M M M M M M M M M M M M M M M M M
## [17353] M M M M M M M M M M M M M M M M F F F F F F F F F F F F M M M M M M M M
## [17389] M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F M
## [17425] M M M M F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M
## [17461] M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F M M M
## [17497] M M M M M M M M M M M M M M M M F F F F F F F F F F F F M M M M M M M M
## [17533] M M M F F F F F F F M M M M M M F F F F F F F F F F F F F F F F F F F F
## [17569] F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M
## [17605] M M M M M M F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
## [17641] F F F M M M F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M
## [17677] F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [17713] M M F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M F
## [17749] F F F F M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F
## [17785] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [17821] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [17857] F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M F
## [17893] F F F F F F F M M M M M M M M M M M F F F F F F F F F F F F F F F F F F
## [17929] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M F F
## [17965] F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M
## [18001] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [18037] M M M M M F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M F
## [18073] F F F M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F
## [18109] F F F F F F F F F M M M M M M M F F F F F F F F F F F F F F M M M M M M
## [18145] M M M M M M F F F F M M M M M M M M M M M M M M M M M M M M F F F F F F
## [18181] F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M
## [18217] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F F F
## [18253] M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F
## [18289] F F F F F M M F F F M M M M M M F F F F F F F F F F F F F F F F F F F F
## [18325] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M F F F
## [18361] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
## [18397] M M M M M M F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
## [18433] M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F
## [18469] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [18505] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F
## [18541] M M M M M M M M M M F F F F F F F F M M M M M M M M M F F F F F F F F F
## [18577] F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M
## [18613] M M M M M M M F F F F F F F F F F F F F F F M M M M M M M M M M M F F F
## [18649] F F F F F F F M M M M M F F F F F F F F F F F F F F F F F F F F F F F F
## [18685] F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [18721] M F F F F F F F F M M M M M M M M M M M M F F F F F F F F F F F F F F F
## [18757] F F M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F
## [18793] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M F F F
## [18829] F F F F F F F F F F F F F F F F M M M M M M F F F F F F F F F F F F F F
## [18865] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [18901] M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [18937] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [18973] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M
## [19009] M M M M M M M F F F F F F F F F M M M M M M M M M M M M M M M M M M F F
## [19045] F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M
## [19081] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F
## [19117] F F F F M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [19153] F F F F F F F F F F F F M M F F F F F F F F F F F F F M M M M M M M M M
## [19189] F F F F M M M M M M F F F F F F F F M M M M M M M M M M M M M M M M M M
## [19225] M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F
## [19261] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [19297] F F F M M M M M M M M M M M M M M F F F F F F F F F F F F F M M M M M M
## [19333] M M M M M M M M M F F F F F F F F F F F M M M M M M M M M M F F F F F F
## [19369] F F F F F F F F F F F F F F F M M M M M M F F F F F F F F F F F F F F F
## [19405] F F F F F F F F M M M M M M M M M M M M F F F F F F F F F F F M M M M M
## [19441] M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F M M M M M M
## [19477] M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F M M M
## [19513] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [19549] M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F
## [19585] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
## [19621] M M M M M M M M M M M M F F F F M M M M M M M F F F F F F F F F F F F F
## [19657] F F F F F F F M M M M M M M M M M M M M M F F F F F F F F F F F F F F F
## [19693] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
## [19729] M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F
## [19765] F F F F F F F F F F F F M M M M M M M M M M F F F F F F F F F F F F M M
## [19801] M M M M M M M M M M M M M M M M F F F F F F F F F F M M M M M M M M M M
## [19837] M F F F F F M M M M F F F F F F F F F F M M M M M M M M M M M M F F M M
## [19873] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [19909] M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M
## [19945] M M M M M M M F F F F M M M M M M M M M M M M M M M F F F F F F F F F F
## [19981] F F F F F F M M M F F F F F F F F F F F F F F F F F F F F F F M M M M M
## [20017] M F F M M M M M M M M M M M F F F F F F F F F F F F M M M M M M M M F F
## [20053] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [20089] F F F F M M F F F F F F F F F F F F F F F F F F F F F F F F M M M M M F
## [20125] F F F F F F F F F F F F M M M F F F F F F F F F F F F F F F F F F F M M
## [20161] M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F M M M M M M
## [20197] M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F
## [20233] F M M M M M M M M M M F F F F F F F F F F M M M M M M F F F F F F F F F
## [20269] F F F F M M M M M M M M F F F F F F M M M M M M M M M M M M M M M M M M
## [20305] M M M M M M M M M M F F F F F F F F F F F F F F F F M M M M M M F F F F
## [20341] F F F F F F F F F F F F F F F M M M M M M M M F F F F F F F F F F F F F
## [20377] F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M
## [20413] M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M
## [20449] M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F M M M
## [20485] M M M M M F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
## [20521] M M M M F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M
## [20557] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [20593] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M
## [20629] M M M M M M M M M M M M M M M M M M M M M M M M F F F F F M M M M M M M
## [20665] M M M M M M M M M M M M F F F F F F F F F F F F M M M M F F F F F F F F
## [20701] F F F F F F F F F F F F F M M M M M M M M M M M F F M M M M M M M M M M
## [20737] M M M M M M M M F F F F F M M M M M M M M M M M M M F F F F F F F F F F
## [20773] M M M M M M M M F F F F F F F F F F M M M M M M M M M M M M M M M M M M
## [20809] M M M M F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M
## [20845] M M M M M M F F F F F F F F M M M M M M M M M F F M M M M M M M M M M M
## [20881] M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F M M M M M M
## [20917] M M M M M M M M M M M M M M M M M M M M M F F F F F F F M M M M M F F F
## [20953] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [20989] M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [21025] F M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F M M M M
## [21061] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F
## [21097] F F F F F F F F F F F F F M M M F F F F F F F F F F F F F F F F F M M F
## [21133] F F F F F F M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F
## [21169] F F F F F F F M M M F F F F F F F F F F F F F F F F F M M M M M M M M M
## [21205] M F F F F F F F F F F F F F F F F F F F M M M M M F F F F F F F F F F F
## [21241] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [21277] F F F F F F F F M M M M M M M M M M M M M M M F F M M M M M M M M M M M
## [21313] M M F F F F F M M M M M F F F F F F F F M M M M M M M M M M M M M M M M
## [21349] M F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [21385] M M M M M F F F F F F F F F M M M M M M M F F F F F F F F F F F F F F F
## [21421] F F F F F F F F F F F F F F F F F F F F F F F F F F F M M F F F F F F F
## [21457] F F F F F F M M M M M F F F F F F F F F M M M M M M F F F M M M F F F F
## [21493] F F F F F F F F F F F F M M M M M M M M M M M M M M M F F F F F F F F F
## [21529] F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M F F F F
## [21565] F F F F F F F F F F F F F F M M M M M F F F F F F M M F F F F F M M M M
## [21601] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [21637] M M M M M M M M M M M M M M M M M M M M M M F F F M M M M M M M M M M M
## [21673] M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [21709] F F F F F F F F F F F F F F F F F F F M M M M M M M M F F F F F F F F F
## [21745] F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [21781] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
## [21817] F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M
## [21853] M M M F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M F F F
## [21889] F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M
## [21925] F F F F F F F M M M M M M M M M M M M M M M M F F M M M M M M M M M M M
## [21961] M F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M F F F F
## [21997] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [22033] F F F F M M M M M M M M M F F F F F F F F F F F F M M M M M M M M M M M
## [22069] M M M M M M M M M M F F F F M M M M M M M M M M F F F F F F F F F F F F
## [22105] F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M
## [22141] M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F M M F F F F
## [22177] F M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F
## [22213] F M M M M M F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M
## [22249] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F
## [22285] F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M
## [22321] M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
## [22357] F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M
## [22393] M M M M M M M M M M M M M M F F F F F M M M M M F F F F F M M M F F F F
## [22429] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [22465] F F F F F F F F F F F F F F M M M M F F F F M M M M M M M M M M M M M M
## [22501] M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F M M
## [22537] M M M M F F F F F M M M M M M M M M M M M M M M M M F F F F F F F M M M
## [22573] M M M M F F F F F F M M M M M M M M M M M M M M M M M F F F M M M M M M
## [22609] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
## [22645] F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [22681] M M M M M M M F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
## [22717] M M M M M F F F F F F F F F F M M M F F F F F F F F F F F F M M M M M M
## [22753] M M M M M M M M M M F F F F F F F F F F F F F F M M M M F F F F F F F F
## [22789] F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [22825] M M M M F F F F F F F M M M M M M M M M M M M M M M M M M M M M M F F F
## [22861] F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M F F F
## [22897] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
## [22933] F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F M M M M M
## [22969] M M M M M M M M M M M F F F F F M M M M M M M M M M M M M M M M M M F F
## [23005] F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [23041] M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [23077] F F F F F F F F M M M M M M M M M M M M F F F F F F F F F F F F F F F F
## [23113] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [23149] M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [23185] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [23221] M M M M M M M M M M M M M F F M M M M M M M M M M M M M M M M M M F F F
## [23257] F F F F F F F F F F M M M M M M M M M M M M M F F F F F F F F F F F M M
## [23293] M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F
## [23329] F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [23365] M M M M M M M F F F F F F M M M M M M M M M M M M M F F F F F M M M M M
## [23401] M M M M F F F F F F M M M M M M M M M M M M M M M M M M M M F F F F F F
## [23437] F F F F F F F M M M M M M M M M M M M M M F F F F F M M M M F F F F F F
## [23473] F F F F F F F F F M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [23509] F F F F F F F F F F F F M M M M M F F F F F F F F F F F F F F F F F F F
## [23545] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [23581] F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F
## [23617] F F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F F
## [23653] F F F F F F F F F M M M F F F F F F F F F F F F F F F F M M F F F F F F
## [23689] F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M F F F F F M
## [23725] M M M M M M M M F F F F F F F F F F M M M M M M M M M M F F F F F M M M
## [23761] M M M M M M M M M M M M M M M M M M F F F F F F F F F F M M M M M F F F
## [23797] M M M M M M M M M M M M M F F F F F F F F F F F F M M F F F F F F F F F
## [23833] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M
## [23869] M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F M M M M M
## [23905] M M M M M M M M M M F F F F F F F F M M M M M M M M M M M M M M M M M M
## [23941] F F F F F F F F F F F F F F F F F F M M M M M F F M M M M M M M M M M M
## [23977] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [24013] M M M M M M M M M M M M M M M M M F F F F F F F F M M M M M M M M M M M
## [24049] M M M M M M M F F F F F F F F F F F F M M M M M M M M M M M M M M F F F
## [24085] F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M
## [24121] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F
## [24157] F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M F F
## [24193] M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F
## [24229] F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
## [24265] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [24301] M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
## [24337] M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F
## [24373] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F
## [24409] F F F F F F F F F F F F F F M M M M M F F F F F F F F F F F F F F F F F
## [24445] F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [24481] M M M M M M M F F F F F F F F F F M M M M M M M M M M M M M M M M M M M
## [24517] M M M M M F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M
## [24553] M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F
## [24589] F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M
## [24625] M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F M M M M M
## [24661] M M M M M F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M
## [24697] M M M F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
## [24733] M M M M M M M M M M M M M F F F F F M M M M M M M M M M M M M M M M M M
## [24769] M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [24805] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M
## [24841] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F
## [24877] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M F F F F
## [24913] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M F
## [24949] F F F F F F F F M M M M M M M M M M M M M M M M M M M F F F F F F F F F
## [24985] F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [25021] M M F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M
## [25057] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F
## [25093] F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M F F F F F F
## [25129] F F F F F F F F F F F F F F M M M M M M M M M M M M M F F F F F F F F F
## [25165] F F M M M M F F M M M M M M M M M M M M F F F F F F F F F F F F F F F M
## [25201] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F M M M M M M M
## [25237] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F
## [25273] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M
## [25309] M M M M M M F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
## [25345] M M M M M M M M F F F F F F F F F F F F M M M M M F F F F F F M M M M M
## [25381] M M M F F F F F F M M M M M M M M M M M M M M M M M M F F F F F F F F F
## [25417] F F F F F F F F F F F F M M M M M M M F F F F F F F F F F F F F F M M M
## [25453] M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F M
## [25489] M M M M F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M F F
## [25525] F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M F F F F F
## [25561] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
## [25597] M M M M M M M M M M M M M M M M M M M F F F F F F F F F F M M M M M M M
## [25633] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F
## [25669] F F F F F F F F M M M M M F F F F F F F F F F F F F F F M M M M M M M M
## [25705] M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F
## [25741] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [25777] F F F F F F F F M M M M M M M M M M M M M M M M M M M M F F F F F F F F
## [25813] F F F F F F F F F M M M M M M M M M M M F F F F F F F M M M M M M M M M
## [25849] M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F M M M M M M
## [25885] M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [25921] F F F F F F F F M M M M M M M M F F F F F F F M M M M M M M M M M M M M
## [25957] M M M M M M M M M M M M M M M M M M M M M     F F F F F F F F F F F M M
## [25993] M M M F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M F F F
## [26029] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [26065] F F F F F F F F F F F F F F F F F F M M M M M M M M M M F F F F M M M M
## [26101] M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F M M
## [26137] M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F
## [26173] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M
## [26209] M M M M M M F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M
## [26245] M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F
## [26281] F F F F F F F F F F F F F F F F F F F F F F M M M M M F F F F F F F F F
## [26317] F F F F F F F F M M M M M M M M M M M M M M M F F F F F F F F F F F F F
## [26353] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [26389] M M M M M M F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [26425] M M F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M
## [26461] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F
## [26497] M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F
## [26533] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [26569] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [26605] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [26641] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [26677] M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F
## [26713] F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [26749] M M M M M M M M M M F F F F M M M M M M F F F M M M M M M M M M M M M M
## [26785] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
## [26821] F M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F
## [26857] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [26893] F F F F F F F F F F F F M M M M M M M F F F F F F F F F F F F M M M M M
## [26929] M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F
## [26965] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [27001] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [27037] F F F F F M M M M M M M M M M M M M M M M M M M M M M M F F M M M M M F
## [27073] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M F F F
## [27109] F F F F F F F F F F F F F M M M M M M M M M M M M M F F F M M M M M M M
## [27145] M M M M M M M M M M M M F F F F F F M M F F F F F F F F F F F F F F F F
## [27181] M M M M M M M M M M M M M M M M M M M M M M M M F F F M M M M M M M M M
## [27217] M M M M M F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M
## [27253] M M M M M M F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
## [27289] M F F F F F F F F F F M M M M M M M M M M M F F F F F F F F F F F F F F
## [27325] F M M M M M M M M M M M M M M M M F F F M M M M M M M M F F F F F F F F
## [27361] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [27397] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [27433] M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F
## [27469] F F M M M M M M F F F F F F F M M M M M F F F M M M M M M M M M M M M M
## [27505] F F F F F F F F F F F F F F F F F F M M M M M M M F F F F F F F F F F F
## [27541] F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [27577] M M M F F F F F F F F F F F F F F F F F F F F F M M M M M F F F F F F F
## [27613] F F F F F F F F F F F F F F M M M M M M F F F F F F F F F F F F F F M M
## [27649] M M M M M M M M M M M M M M M M M F F F F F F F F F F F F M M M M M M M
## [27685] M M M M M F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M
## [27721] M M M M M M M M M M M M M M F F F F F F F F F M M M M M M M M M M M M M
## [27757] M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F
## [27793] F F M M M M M M M M M M M M M M M M M M M M M M F F F F F F M M M M M M
## [27829] M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F M M M M M M
## [27865] M M M M M M M M M M M M M M F F F F F F F F M M M M M M M M M M M M M M
## [27901] M M M M M M M M M M M M F F F F F F F F F F M M M M M M M M M M M M M M
## [27937] M M M M M M M M M M M M M M M M M M M M F F F F F F F F M M M M M M F F
## [27973] F F F F F F F F F M M M M M M M M M M M M M F F F F F F F F F F M M M M
## [28009] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
## [28045] M M M M M F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M F
## [28081] F F F F F F F F F F F F F F F F F F M M M M F F F F F F F F F F F F M M
## [28117] M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F
## [28153] F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M
## [28189] M M M M M M M F F F F F M M M M M F F F F F F F F F F F F F F F F F F F
## [28225] F F F F F F F M M M M M M M M M M M M M M F F F F F F F F F F F F F M M
## [28261] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [28297] M M M M M F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [28333] M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F M
## [28369] M M M M M M M M M M M M M F F F F F F F F F F F M M M M M F F F F F F F
## [28405] M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F
## [28441] F F F F F M M M M M M M M M M M F F M M M M M M M M M M M M M F F F F F
## [28477] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M
## [28513] M M M M M M M M M M M M M M M M M M M F F F F F F F F F M M M F F F F F
## [28549] F M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F
## [28585] F F F M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [28621] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M
## [28657] M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F M M M M M M
## [28693] M M M M M M M M M M M M M M M M M M M M M F F F F F F F M M M M M M M M
## [28729] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [28765] M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F M
## [28801] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [28837] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [28873] M M M M F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M F F
## [28909] F F F F F F F M M M M M F F F F F F F F F F F F F F F F F F F F F F F M
## [28945] M M M M M M M F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
## [28981] M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F
## [29017] F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [29053] M M M M M M M F F F F F M M M M M M M M M M M M M M M M M M M M M M M M
## [29089] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [29125] M M M F F F F F F F F F F F F M M M M M M M M F F F F F F F F F F F F F
## [29161] F F F F F F F F F F F M M M M M M M F F F F F F F F F F M M F F F F F F
## [29197] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M F F F F F F F
## [29233] F F F F F F F F F F F F F M M M M M F F F M M M M M M M M F F F F M M M
## [29269] M M M M M M M M M M M M M M M F F M M M M M M M M M M M M M M M M M M M
## [29305] M M M M M M M M M M M M M M M M M M M F F F M M M M M F F F F F F F M M
## [29341] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F
## [29377] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M
## [29413] M M M M M M M F F F F F F F F F F M M F F F F F F F F F F F F F F F F F
## [29449] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M F F F F
## [29485] F M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
## [29521] F F F F F F F F M M M M M M M M M M M M M M M M M M F F F F F F F F F F
## [29557] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [29593] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [29629] F F F F F F F F F F F F F M M M M M M M M F F F F F F F F F F F F F F F
## [29665] M M M M M F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
## [29701] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M
## [29737] M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F M M M F F F
## [29773] M M M F F F F F F F M M M M M M M M M M F F F F F F F F F F F F F F F F
## [29809] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F
## [29845] F F F F M M M M M M F F F F F F F F F F F F F M M M M M M F F F F F F F
## [29881] F F F F F F F F F F F F F F M M M M M F F F F F F F F F F F F F F F F F
## [29917] F F F M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F
## [29953] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
## [29989] F F F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F
## [30025] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [30061] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [30097] F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M
## [30133] M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F
## [30169] F F F F F F F F F F F F F F M M M M M M F F F F F F F F F F F F F F F F
## [30205] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M
## [30241] M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F
## [30277] F F F F F F M M M M M M M F F F F F F F F F F M M M M M M M F F F M M M
## [30313] M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F
## [30349] F F F F F F F F F F F M M M M M M M M M M M F F F F F F F F F F F F F F
## [30385] F F F F F F F F F F F F F F F F F F M M M F F F F M M M F F F F F F F F
## [30421] F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M
## [30457] M M M M M M M M M M M M M M M M M M M M M M M M M M M F F M M M M M M M
## [30493] M M M M M F F F F F F F F F F F F M M M M M M M M F F M M M M M M M M M
## [30529] M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F
## [30565] F F F M M F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [30601] M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
## [30637] F F F F F F F F F F F F F F F F F F M M M M M M M M F F F F F F F F F F
## [30673] F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M
## [30709] M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M
## [30745] M M F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M
## [30781] M F F M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F
## [30817] F F F F F F F F F M M M M M M M M M M M M M M M M M M M F F F F F F F F
## [30853] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F
## [30889] F F F F F F F M M M M M M M M M M M M M M M M F F F F F F F F F F F F F
## [30925] F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M
## [30961] M M M M M M M M M M M F F M M M M M M M M M M M M M M F F F F F F F F F
## [30997] F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M F F F F F F
## [31033] F F F F F F F F F F M M M M M M M M M M M M M F F F F F F F F F F F F F
## [31069] F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M F F F F
## [31105] F F F F F F F F F F F F F F M M M M M M M M M M M F F M M M M M M M M M
## [31141] M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [31177] F F F F F F F F M M M F F F F F F F F F F F F F F F F F F F F F F F F F
## [31213] F F F F F F M M M M M M M F F F F F F F F F M M M M M M M M M M M M M F
## [31249] F F F F F F F F M M M M M M M M M M M M M M M M M M M F F F F F F F F F
## [31285] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [31321] F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M F F F F
## [31357] F F F F F M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [31393] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [31429] M M M F F F F F F F F F F F F F F F F F M M M M M M M M F F F F F F F F
## [31465] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [31501] F F F F F F F F F F F F F F F F F F F F F F F M M M M M M F F F F F F F
## [31537] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [31573] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F
## [31609] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [31645] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [31681] M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [31717] F F F M M M F F F F F F F F F F F F F F F F M M M M M M F F F F F F F F
## [31753] F F F F F F F M M M M F F F F F F F F F F F F F F F F F F F F F F F M M
## [31789] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [31825] M F F F M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F
## [31861] M M F F F F F F F F M M M F F F F F F F F M M M M M M M M M M M M M M M
## [31897] M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [31933] F F F F F F F F F F F F M M M M M M M M M M M M M M F F F F F F F M M M
## [31969] M M F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M
## [32005] F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M
## [32041] M M M M M F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [32077] M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F
## [32113] F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [32149] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F M M M
## [32185] M M M M M M M M M M M M M M M M M M M M M F F F F F M M M M M M M M M M
## [32221] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [32257] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F
## [32293] F F F F F F F F F F F F F F F F F F F M M M F F F F F F F F F F M M M M
## [32329] M M F F F F F F F F F F F F F F M M F F F F F F F M M M M M M F F F F F
## [32365] F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M F F F F F F
## [32401] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [32437] F F F F M M M M M M M M M M M M M M M M M M M M M F F F F F F M M F F F
## [32473] F F M M M M M M M M F F F F F F M M M M M M M M M M M M M M M M M F F F
## [32509] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M
## [32545] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [32581] M M M M M M F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M
## [32617] M M M M M M M M M M M M M M M M M M M M F F M M M M M M M M M M M M M M
## [32653] F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M
## [32689] M F F F F F F M M M M M F F F F F F F F F F F F F M M M M M M M M F F F
## [32725] F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M
## [32761] M M M M M M M F F F F F F F M M M M M M M M M M M M M M M M M M M F F F
## [32797] F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [32833] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [32869] M M F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [32905] M M M M M M M M M M M M F F F F F F F F F M M M M M M M M M M M M M M M
## [32941] M M M F F F F F F F F F F F F M M M F F F F F F F F F F F F F F F F M M
## [32977] M M M M M M M M M M M M M M F F F F M M M M M M F F F F F F F F F F F F
## [33013] F M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F
## [33049] F F F F M M M M M M M F F F F F F F F F F F F F F F F F F M M M M M M M
## [33085] M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [33121] F F F F F F F F F F F M M M M M M M M M M M M M M M M F F F F F F F F F
## [33157] F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M
## [33193] M M M M M M M M M M M M M M M M M M M F F F F F M M M M M M M M M M M M
## [33229] M M M M F F M M M M M M M M M F F F F F F F F F F F F F M M M M M M M F
## [33265] F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
## [33301] M M M M M M M M M M M M M M M M M M M M M M M M F F M M M M M F F F F F
## [33337] F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [33373] M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [33409] F F F F F F F F F F F F F F F F F F F F F F M M M M M F F F F F F F F F
## [33445] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M F F F F F F F
## [33481] F F F F F F F F F F F F F F M M M M M M M M M F F F F F F F F F F M M M
## [33517] M M M M M M M M M M F F F F F M M M M M M M M M M M M M M M M F F F M M
## [33553] M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F M M M
## [33589] M M F F F M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F
## [33625] F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M
## [33661] F F F F F F F F F F F F F F F F M M M F F F F F F F F F F F F F F F F F
## [33697] F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [33733] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [33769] M M M F F F F F F F F F F F M M F F F F F F M M F F F F F F F F F F F F
## [33805] F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [33841] M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [33877] F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M
## [33913] M M F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [33949] M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F
## [33985] F M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F
## [34021] F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M
## [34057] M M F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M
## [34093] M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [34129] F F F F F F F F M M F F F F F F F F F F F F F F F F F F M M M F F F F F
## [34165] F F F F M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F
## [34201] F F F F F F F F F M M M M M M M M M M M F F F F F F F F F F F F M M M M
## [34237] M M M M M M M M M M M M F F F F F F F F F F F F M M M M M M M M M M M M
## [34273] M M M M M M F F F F F F F F F F F M M M M M M M M M M F F F F F F F F F
## [34309] F F F F F F F F M M M M M M M M M M M M M F F F F F F F F M M M M M M M
## [34345] M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F
## [34381] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [34417] M M M F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [34453] F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [34489] M M M M M M M M M F F F F M M M M M M M M M M M M M M M F F F F M M M M
## [34525] M M M M M M M M M M M M M M M F F F F F F F F F F M M M M M M M M M M M
## [34561] M F F F F F F F F F F F F F F F F F M M M M M M F F M M M M M F F F F F
## [34597] F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M F F F F F F
## [34633] F F F F F F F F F F F F F F F F F M M M M M M M M M M M F F F F F F F F
## [34669] F F F F F F F F M M M M M M M M M F F F F F F F F F F F F F F M M M M F
## [34705] F F F F F F F F F F F F M M M M F F F F F F F F F F F F F F F F F F F F
## [34741] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [34777] M M M M M M M M M M M M M M M M F F F F F M M M M M M M M M M M M M M M
## [34813] M M M M F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M
## [34849] M M F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F
## [34885] F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M
## [34921] M M M F F F F F F F F F F F F F F M M M M M M M F F F F F F F M M M M M
## [34957] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M
## [34993] M M M M M M F F F M M M M M M M M M M M M M M M M F F F F F F F F F F F
## [35029] F F F F F F F F F F F F M M M M M M F F F F F F F F F F F F F F F F F F
## [35065] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
## [35101] M M M M F F F F F F F F F F F F F F M M M F F F F F M M M M M M M M M M
## [35137] M F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
## [35173] M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [35209] F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M F F F F M
## [35245] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [35281] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
## [35317] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [35353] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [35389] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [35425] M M M M F F F F F F M M M M M M M M M M M M M M M M M M F F F M M M M M
## [35461] M M M M M M M F F F F F F M M M M M M M M M M M M M M M M M F F F F F F
## [35497] F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M F F F M M M
## [35533] M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F M M
## [35569] M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [35605] F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M
## [35641] M M M F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M F
## [35677] F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F
## [35713] F F F F F F F F F F M M M M M M M F F F F F F F F F F F F F F F F F F F
## [35749] F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M F F F F F
## [35785] F F F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F
## [35821] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M
## [35857] M M F F F F F M M M M M M M M F F F M M M M M M M M M M F F F F F M M M
## [35893] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [35929] F F F F F F F M M M M M M M M M M M M M M M M M M M M F F F F F M M M M
## [35965] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [36001] M M F F F F F F F F F F M M M M M F F F F F F F F F F F F F M M M M M M
## [36037] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F M M M M M
## [36073] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [36109] M M M M M M F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M
## [36145] M M M F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [36181] M M M M F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
## [36217] M M M M M M M M M M M M M M M F F F F F F M M M M M F F F F F F F F F F
## [36253] M M M M M M M M M M M F F F F F F F F F F F F M M M M M M M M M M M M M
## [36289] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F
## [36325] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M
## [36361] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [36397] F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M
## [36433] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [36469] F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [36505] M M M F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M
## [36541] F F F F F M M M M M M M F F F F F F F F F F F M M M M M M M M M M M M M
## [36577] M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F M M M M M M
## [36613] M M M F F F F F F F F F M M M M M M M M M M M M M F F F F F F F M M M M
## [36649] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
## [36685] M M M M F F F F F F F F F F F F F F M M M M M M F F F F F F F F F F M M
## [36721] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
## [36757] F F F F F F F F F F F F F F F F F M M M M M F F F F F F F F F F F F F F
## [36793] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
## [36829] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F
## [36865] F F F F F F F F F F F F F F F F F F F F F M M M M M M M F F F F F F F F
## [36901] F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M
## [36937] M M M M F F F M M M M M F F F F F F F F F F M M M M M M M M M M F F F F
## [36973] F F F F F F F F F F F F F F F F F M M M M M F F F F F F F F F F M M M M
## [37009] M M M F F F F F F F F F F F F F F M M M M M M M M M M M M F F F M M M M
## [37045] M M M M F F F F F F F F F M M M M F F F F F M M M M M M M M M M M M M M
## [37081] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M
## [37117] M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M
## [37153] M M M M M M M M F F F M M M M M F F F M M M M M M M M M M M M M M M M M
## [37189] M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F M M M M M
## [37225] M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F
## [37261] F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [37297] M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M
## [37333] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [37369] M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F M M
## [37405] M M M M M M M M M F F F F F F F F F F F F M M M M M M M M M M M M M M M
## [37441] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [37477] M M M M M M M M M M M F F F M M M M M M M M M M M M M M M M M M M M M M
## [37513] M M M M M M M M M M M M M M M M M F F F F F M M M M M M M M M M M M M M
## [37549] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F
## [37585] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M
## [37621] M M M M M M M M M M M M M M M M M M M M M F F F F F F F F M M M M M M M
## [37657] M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F M
## [37693] M M M M M M M M M F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [37729] M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F
## [37765] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [37801] M M M M M M M M M M M M M F F F F F F F F F M M M M M M M M M M M M M M
## [37837] M M M M M M M M M M M F F F F F F F F F F F F F M M M M M M M M M M M M
## [37873] M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F
## [37909] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [37945] M M M M M M M M M M M M F F F F F F M M M M M M M M M M M M M M M M M M
## [37981] M M M M M M M M F F F F F M M M M M M M M M M M M M M M M M M M M M M M
## [38017] F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M F F F F F
## [38053] F F F F F F F F M M M M M M M M M M M M M M M M M M F F F F F F F F M M
## [38089] M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F
## [38125] F F F F M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F
## [38161] F F F F F F F F F F F M M M M M M M M M M M M M F F F F F F F F F F M M
## [38197] M M M F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M F F
## [38233] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F
## [38269] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [38305] M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F
## [38341] F F F F F F F F F M M M M M M M M M M M M M M M F F F F F F F F F F M M
## [38377] M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F
## [38413] F F F F M M M M M M M M M M M F F F F F F F F F F F F F M M M M M F F F
## [38449] F F F F F F F F F F F M M M M M M M M F F F F F F F F F F M M M M M M M
## [38485] M M M M M M M M M M F F F F F F F F F F F F M M M M M M M M F F F F F F
## [38521] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [38557] F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [38593] M M M M M M M M M F F F F M M M M M M M M M M M M M M M M M M M M M M M
## [38629] M M M M M M F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M
## [38665] M M M M M M M M M M M M M M M M M F F F F F F M M F F F F F F F M M M M
## [38701] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [38737] M M M F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M F F F
## [38773] F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M
## [38809] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [38845] M M F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M
## [38881] M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F
## [38917] F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M
## [38953] M M M M M M M M M M M M F F F F F F F F F F F F F F M M M M M M M M M M
## [38989] M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M
## [39025] F F F F M M F F F F F F F F F F F F F F M M M M M M M F F F F F F F F F
## [39061] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [39097] M M M M M M M M M M M M M M M M M M F F F F F F F F F F F M M M M M M M
## [39133] F F F M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F
## [39169] F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [39205] M M M M M M M F F F F F F F M M M M M M M M M M M M M M M M M M M M M M
## [39241] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F
## [39277] F F M M M M M M M M M M M M M M F F F F F F F F F F M M F F F F F F F F
## [39313] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M F
## [39349] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M
## [39385] M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F M M M M M
## [39421] M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F
## [39457] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F
## [39493] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [39529] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [39565] M F F F F F F F F F F F F F F F F F F M M M F F F F F F M M M M M M M M
## [39601] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [39637] F F F M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F
## [39673] F F F F F F F F M M M M M M M M M M M M M M M M M M M F F F F F F F F M
## [39709] M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F M M
## [39745] M M M M M M M F F F M M M M M F F F F F F F F F F F F M M M M M M M F F
## [39781] F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M
## [39817] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [39853] M M M M M F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M
## [39889] M M F F F F F F M M F F F F M M F F F F F F F F F F F F F F F F F F F F
## [39925] F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M
## [39961] M M M M M M F F F F M M M F F F F F F F M M M M M M M M M M M M M M M F
## [39997] F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M F F F F F F
## [40033] F F F F F F F F F F F F F F F F F F F F F F F F F M M M M F F F F F F F
## [40069] F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M F
## [40105] F F F F F F M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F
## [40141] M M M F F F M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F
## [40177] F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M
## [40213] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [40249] M M M M M M M M M M M M F F F F F F F F F M M M M M M M M M M M M M M M
## [40285] M M M M F F F F F F F F F F F F F F F F F F F F F F F M M M F F F F F F
## [40321] F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M F F F F
## [40357] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [40393] M M M M M M M F F F F F F F F F F F F M M M M M M M M M M M F F F F F F
## [40429] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [40465] F F F M M M M M M M M F F F F F F F F M M M M M M M M M M M M M M M M M
## [40501] M M M M M M M M M M F F F F F F F F F F F F M M M M M M M M M M M M M M
## [40537] M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F M M M M M F
## [40573] F F F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F
## [40609] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [40645] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [40681] M M M M M M M M F F F M M M M M M M M F F F F F F F F F F F F F F F F F
## [40717] F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M
## [40753] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [40789] M M M M M M F F F F F F F F F F F F F F F F F F M M M M M M F F F F F F
## [40825] F F F F F F F M M M M M M M F F F F F F F F F F F F F F F F F F F M M M
## [40861] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [40897] M M M M M M M M M M M M M F F F F F F F F F F F F F F F M M M M M M M M
## [40933] M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
## [40969] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [41005] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [41041] F F F F M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F
## [41077] F F F F F F F F F F F F F F F F F F F M M M M M M M M F F F F F F F F F
## [41113] F F F F F F F F F F M M M M M M M M M M F F F F F F F F F F F F F F F F
## [41149] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [41185] M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F
## [41221] F F F F F F F F F F F M M M M M M M M M M M M F F F M M M M M M M M M M
## [41257] M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [41293] F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M F
## [41329] F F F F F F F F F M M M M F F F F F F F F F F F F F F F F F F F F F F F
## [41365] F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [41401] M M M M M M M M M M M M F F F F F F F F F F F F M M M M M M M M M M M M
## [41437] M M M M M M M M M M M M M M M M F F F F F F F F F F F M M M M M M M M M
## [41473] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F
## [41509] F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [41545] M M M F F F F F F F F F F F F F F F F F M M F F F F F F F F F F F F F F
## [41581] F M M M M M F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M
## [41617] M M M M M M M M M F F M M M M M M M M M M M M M M M M M M M M M M M M M
## [41653] M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M
## [41689] M M M M M M M M F F F F F F F M M M M M M M M M M M M F F F F F F F F F
## [41725] F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [41761] M M M M M M M F F F F M M M M M M M M M M M M M M M M M M M M M M M M M
## [41797] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M
## [41833] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [41869] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M
## [41905] M M M M M M F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M
## [41941] M M M M M M M M M M M M M M F F F F F F F F F F F F F F F M M M M M M M
## [41977] M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [42013] F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M
## [42049] M M M M M M M M M M M M M F F F F F F F F F F F F F M M M M M M M M M M
## [42085] M M M M M M M M F F F F F F F F F F F F F F F F F F M M M M M M M M M M
## [42121] M M M M M M M M M M M M M M M M M M M F F M M M M M M M M M M M M M M M
## [42157] M M M M M M M M M F F F F F F F F F F F F M M M M M M M F F F F F F F F
## [42193] F F F F M M M M M M F F F M M M M M M M M M M M M M M M M M M M M F F F
## [42229] F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [42265] M F F F F F F F F F F F F F F M M M M M F F F F F F F F F F F F F F F F
## [42301] F F F F F F F F F F F F F F F F F F M M M M M M M M F F F F F M M M M M
## [42337] M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F M
## [42373] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [42409] M M M M M M M M F F F F F F F F F F F F F F F F F F M M M F F F F F F F
## [42445] F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [42481] M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [42517] F F F F F F F F F F F F F F F F F M M M M M F F F F F F F F F F F F F F
## [42553] F M M M F F F F F F F M M M M M M M M M M M M M M M M M M F F F F F F F
## [42589] F F F F F F F F M M M M M M M M M M M F F F F F F F F F F F F F F F F F
## [42625] M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F
## [42661] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [42697] M M M F F F F F M M M M M M M F F M M F F F F F F F F F F F F M M F F F
## [42733] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M F F F
## [42769] F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F
## [42805] F F F F F M M M M M M M M M M M M M M F F F F F F F F F F F F F M M M M
## [42841] M M M M M M M M M M M M M M M M M M M M M M M M M M F F F F F M M M M M
## [42877] M M M M M M M M M M F F F F F F F M M F F F F F F F F F F F F F F F F F
## [42913] F F F F F F F F F F F F F M M M M M M F F F F F F F F F F F F F M M M M
## [42949] M M M M M M M M M M M M M M M F F F F F F F F F M M F F F F F F F F F F
## [42985] F F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M F F F F F
## [43021] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [43057] M M M M M M M M M M M M M M M M F F F F F F F F F M M M M M M M M F F F
## [43093] F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
## [43129] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [43165] M M M M M M M M M M F F F F F F F F F F M M M M M M M M M M M M M M M M
## [43201] M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F
## [43237] F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
## [43273] M M M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F M M M
## [43309] M M M M M F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M
## [43345] M M M M M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F
## [43381] F F F M M M M M M M M M M M M M M M F F F F F M M M M M M M M M M M M M
## [43417] M M F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M M
## [43453] M M M M F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [43489] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F
## [43525] F F F M M M M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
## [43561] F F F F F F F F F F F F F F F F F M M M M M F F F F F F F F F F F F F M
## [43597] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F F F
## [43633] F F F F F F F F F F F F F F M M M M M M M M M M M M F F F F F M M M M F
## [43669] F F F F F F F F M M M F F F F F F F F F F F M M M M M M M M M M M M M M
## [43705] M M M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F
## [43741] F M M M M M M M F F F F F M M M M M M M M M M M F F F F F F F F F F F F
## [43777] F F F F F F F M M M M M M M M M M M M M M M M F F F F F F F F F F F F F
## [43813] F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [43849] M M M M M M M M M M M M F F M M M M M M M M M M M M M M M M M M M M M M
## [43885] M M M M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F
## [43921] F F F F F F F F F F F F F M M F F F F F F F F F M M M F F F F F F F F F
## [43957] F F F F F F M M M M M M M M M M M M M M M M M M M F F F F F F F F F F F
## [43993] M M M M M M M F F F F F F F F F F F F F F F F F F F F M M M M F F F F F
## [44029] F F F F F F M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F
## [44065] F F F F F F F F F F F F F M M M M M M F F F F F F F F F F F F F F F F F
## [44101] M M M M M F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M
## [44137] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [44173] M M F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M F F
## [44209] F F F F F F F M M M M M M M M M M M M M M M M M F F F F F F F F F F F F
## [44245] F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M M M M F F F
## [44281] F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M F F F F F F
## [44317] F F F F F F F F F F F F F F F F F F F F F F M M M M M M M M M M M M M M
## [44353] M M M M M F F F F F F F F F M M M F F F F F F F M M M M F F F F F F M M
## [44389] M M M M M M M M M M F F F F F F F M M M M M M F F F F F F F F M M M M M
## [44425] M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [44461] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [44497] F F F F F F F F F F M M M M M M M M F F F F F F F F F F F F F F F F F M
## [44533] M M M M M M M F F F F F F F F F F F F F F F F F F F F F F F F F F F F F
## [44569] F F F F F F M M M M M M M M M M M M M F F F F F F F F F F F F F F F M M
## [44605] M F F F F F F F F F M M M M M M M M M M M M M M M M M M M M M M M M F F
## [44641] F F F F F F F F F F F F F F F F F F F F F F F F F F F F F F M M M M M M
## [44677] M M M M M M M M F F F F M M M M M M M M M F F F F F F F F M M M M M M M
## [44713] M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M F
## [44749] F F F F F M M M M M M M M M M M M M M M M M M M M F F F F M M M M M M M
## [44785] F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [44821] M M M M F F F F M M M M M M M M F F F F F F F F F F F F F F F F F F F F
## [44857] F F F F F M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M
## [44893] F F F F F F F F F F F F F F M M M M M M M M
## Levels:  F M
sum(is.na(Customer_Final$Gender))
## [1] 0
library(dplyr)
male <- Customer_Final%>%group_by(Gender,prod_cat)%>%summarise(sum(total_amt,na.rm = TRUE))

male_customer <- male[male$Gender=="M"&male$prod_cat=="Electronics",]

male_customer
## numeric(0)

#10. How many customers have more than 10 unique transactions, after removing all transactions which have any negative amounts?

library(dplyr)

a1<- Customer_Final[Customer_Final$total_amt>0,]
a1<- a1[a1$transaction_id>10,]

unique1 <-a1%>%group_by(cust_id)%>%summarise(distinct =n_distinct(transaction_id),sum=sum(total_amt))
 
unique1

#11. For all customers aged between 25 - 35, find out:

#a. What was the total amount spent for “Electronics” and “Books” product categories?

str(Customer_Final)
## 'data.frame':    44914 obs. of  16 variables:
##  $ cust_id          : int  266783 266783 266783 266783 266783 266783 266783 266783 266783 266783 ...
##  $ prod_subcat_code : int  1 1 4 1 1 4 1 4 4 1 ...
##  $ transaction_id   : num  2.59e+10 2.59e+10 9.85e+10 2.59e+10 2.59e+10 ...
##  $ tran_date        : Date, format: "2011-09-24" "2011-09-23" ...
##  $ prod_cat_code    : int  2 2 1 2 2 1 2 1 1 2 ...
##  $ Qty              : int  -4 4 3 -4 -4 1 4 3 1 4 ...
##  $ Rate             : int  -1321 1321 93 -1321 -1321 869 1321 93 869 1321 ...
##  $ Tax              : num  554.8 554.8 29.3 554.8 554.8 ...
##  $ total_amt        : num  -5839 5839 308 -5839 -5839 ...
##  $ Store_type       : Factor w/ 4 levels "e-Shop","Flagship store",..: 1 1 4 1 1 1 1 4 1 1 ...
##  $ prod_cat         : Factor w/ 6 levels "Bags","Books",..: 3 3 1 3 3 1 3 1 1 3 ...
##  $ prod_sub_cat_code: int  4 4 1 1 3 4 3 4 1 1 ...
##  $ prod_subcat      : Factor w/ 18 levels "Academic","Audio and video",..: 13 13 13 18 11 18 11 18 13 18 ...
##  $ DOB              : Factor w/ 3721 levels "01-01-1972","01-01-1978",..: 47 47 47 47 47 47 47 47 47 47 ...
##  $ Gender           : Factor w/ 3 levels "","F","M": 3 3 3 3 3 3 3 3 3 3 ...
##  $ city_code        : int  4 4 4 4 4 4 4 4 4 4 ...
Customer_Final$DOB <- as.Date(Customer_Final$DOB,format = "%d-%m-%Y")
class(Customer_Final$DOB)
## [1] "Date"
Customer_Final$DOB
##     [1] "1974-05-01" "1974-05-01" "1974-05-01" "1974-05-01" "1974-05-01"
##     [6] "1974-05-01" "1974-05-01" "1974-05-01" "1974-05-01" "1974-05-01"
##    [11] "1991-12-13" "1991-12-13" "1985-06-29" "1985-06-29" "1985-06-29"
##    [16] "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29"
##    [21] "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29"
##    [26] "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20"
##    [31] "1972-03-20" "1972-03-20" "1972-03-20" "1971-02-28" "1971-02-28"
##    [36] "1971-02-28" "1971-02-28" "1971-02-28" "1971-02-28" "1971-02-28"
##    [41] "1971-02-28" "1971-02-28" "1971-02-28" "1971-02-28" "1971-02-28"
##    [46] "1971-02-28" "1971-02-28" "1971-02-28" "1971-02-28" "1971-02-28"
##    [51] "1971-02-28" "1971-02-28" "1971-02-28" "1971-02-28" "1971-02-28"
##    [56] "1971-02-28" "1971-02-28" "1971-02-28" "1970-03-16" "1970-03-16"
##    [61] "1970-03-16" "1970-03-16" "1970-03-16" "1970-03-16" "1988-06-23"
##    [66] "1988-06-23" "1988-06-23" "1988-06-23" "1979-07-14" "1979-07-14"
##    [71] "1979-07-14" "1979-07-14" "1979-07-14" "1979-07-14" "1991-12-08"
##    [76] "1991-12-08" "1991-12-08" "1991-12-08" "1991-12-08" "1991-12-08"
##    [81] "1991-12-08" "1991-12-08" "1991-12-08" "1991-12-08" "1988-09-13"
##    [86] "1988-09-13" "1988-09-13" "1988-09-13" "1988-09-13" "1980-02-26"
##    [91] "1980-02-26" "1980-02-26" "1980-02-26" "1980-02-26" "1980-02-26"
##    [96] "1980-02-26" "1980-02-26" "1980-02-26" "1980-02-26" "1980-02-26"
##   [101] "1980-02-26" "1980-02-26" "1980-02-26" "1980-02-26" "1981-08-16"
##   [106] "1981-08-16" "1981-08-16" "1981-08-16" "1982-10-18" "1982-10-18"
##   [111] "1982-10-18" "1973-08-07" "1973-08-07" "1974-11-15" "1974-11-15"
##   [116] "1974-11-15" "1974-11-15" "1974-11-15" "1974-11-15" "1974-11-15"
##   [121] "1974-11-15" "1974-11-15" "1980-10-28" "1980-10-28" "1980-10-28"
##   [126] "1980-10-28" "1980-10-28" "1981-10-08" "1981-10-08" "1981-10-08"
##   [131] "1981-10-08" "1981-10-08" "1981-10-08" "1981-10-08" "1981-10-08"
##   [136] "1982-07-22" "1982-07-22" "1982-07-22" "1982-07-22" "1982-07-22"
##   [141] "1982-07-22" "1982-07-22" "1982-07-22" "1978-04-16" "1978-04-16"
##   [146] "1978-04-16" "1978-04-16" "1978-04-16" "1978-04-16" "1978-04-16"
##   [151] "1978-04-16" "1978-04-16" "1978-04-16" "1978-04-16" "1978-04-16"
##   [156] "1978-04-16" "1991-12-27" "1991-12-27" "1991-12-27" "1991-12-27"
##   [161] "1991-12-27" "1991-12-27" "1991-12-27" "1991-12-27" "1991-12-27"
##   [166] "1991-12-27" "1970-09-20" "1970-09-20" "1970-09-20" "1970-09-20"
##   [171] "1970-09-20" "1970-09-20" "1970-09-20" "1970-09-20" "1970-09-20"
##   [176] "1970-09-20" "1970-09-20" "1970-09-20" "1970-09-20" "1973-06-04"
##   [181] "1973-06-04" "1973-06-04" "1973-06-04" "1973-06-04" "1973-06-04"
##   [186] "1992-11-21" "1992-11-21" "1992-11-21" "1992-11-21" "1992-11-21"
##   [191] "1992-11-21" "1992-11-21" "1992-11-21" "1992-11-21" "1992-11-21"
##   [196] "1992-11-21" "1992-11-21" "1992-11-21" "1992-11-21" "1992-11-21"
##   [201] "1992-11-21" "1992-11-21" "1992-11-21" "1992-11-21" "1992-11-21"
##   [206] "1977-11-04" "1977-11-04" "1977-11-04" "1977-11-04" "1977-11-04"
##   [211] "1977-11-04" "1977-11-04" "1977-11-04" "1977-11-04" "1977-11-04"
##   [216] "1977-11-04" "1977-11-04" "1977-11-04" "1976-06-25" "1976-06-25"
##   [221] "1976-06-25" "1976-06-25" "1976-06-25" "1985-05-13" "1985-05-13"
##   [226] "1985-05-13" "1985-05-13" "1985-05-13" "1978-10-08" "1978-10-08"
##   [231] "1978-10-08" "1987-02-16" "1987-02-16" "1987-02-16" "1987-02-16"
##   [236] "1987-02-16" "1987-02-16" "1987-02-16" "1973-11-21" "1973-11-21"
##   [241] "1973-11-21" "1973-11-21" "1973-11-21" "1973-11-21" "1973-11-21"
##   [246] "1973-11-21" "1973-11-21" "1974-11-14" "1974-11-14" "1974-11-14"
##   [251] "1991-03-02" "1991-03-02" "1991-03-02" "1991-03-02" "1991-03-02"
##   [256] "1991-03-02" "1991-03-02" "1991-03-02" "1991-03-02" "1991-03-02"
##   [261] "1991-03-02" "1991-03-02" "1991-03-02" "1991-03-02" "1991-03-02"
##   [266] "1984-05-15" "1984-05-15" "1984-05-15" "1984-05-15" "1984-05-15"
##   [271] "1984-05-15" "1984-05-15" "1987-01-02" "1987-01-02" "1987-01-02"
##   [276] "1987-01-02" "1987-01-02" "1987-01-02" "1987-01-02" "1987-01-02"
##   [281] "1986-10-03" "1986-10-03" "1986-10-03" "1990-05-19" "1990-05-19"
##   [286] "1990-05-19" "1990-05-19" "1990-05-19" "1990-05-19" "1990-05-19"
##   [291] "1990-05-19" "1990-05-19" "1990-05-19" "1990-05-19" "1979-04-24"
##   [296] "1979-04-24" "1979-04-24" "1979-04-24" "1990-01-24" "1990-01-24"
##   [301] "1990-01-24" "1990-01-24" "1990-01-24" "1990-01-24" "1987-10-07"
##   [306] "1987-10-07" "1987-10-07" "1987-10-07" "1987-10-07" "1987-10-07"
##   [311] "1979-10-12" "1979-10-12" "1990-01-15" "1990-01-15" "1990-01-15"
##   [316] "1990-01-15" "1990-01-15" "1990-01-15" "1990-01-15" "1990-01-15"
##   [321] "1990-01-15" "1990-01-15" "1990-01-15" "1990-01-15" "1990-01-15"
##   [326] "1990-09-18" "1990-09-18" "1990-09-18" "1990-09-18" "1990-09-18"
##   [331] "1990-09-18" "1990-09-18" "1990-09-18" "1990-09-18" "1990-09-18"
##   [336] "1990-09-18" "1990-09-18" "1971-09-04" "1971-09-04" "1971-09-04"
##   [341] "1971-09-04" "1971-09-04" "1971-09-04" "1971-09-04" "1971-09-04"
##   [346] "1971-09-04" "1971-09-04" "1972-06-16" "1972-06-16" "1972-06-16"
##   [351] "1972-06-16" "1972-06-16" "1972-06-16" "1972-06-16" "1972-06-16"
##   [356] "1972-06-16" "1972-06-16" "1972-06-16" "1985-10-11" "1985-10-11"
##   [361] "1985-10-11" "1985-10-11" "1985-10-11" "1985-09-18" "1985-09-18"
##   [366] "1985-09-18" "1985-09-18" "1985-09-18" "1985-09-18" "1985-09-18"
##   [371] "1985-09-18" "1985-09-18" "1985-09-18" "1985-09-18" "1985-09-18"
##   [376] "1985-09-18" "1985-09-18" "1985-09-18" "1987-02-25" "1987-02-25"
##   [381] "1987-02-25" "1987-02-25" "1991-07-18" "1991-07-18" "1991-07-18"
##   [386] "1991-07-18" "1991-07-18" "1991-07-18" "1991-07-18" "1991-07-18"
##   [391] "1991-07-18" "1991-07-18" "1978-12-14" "1978-12-14" "1970-04-24"
##   [396] "1970-04-24" "1970-04-24" "1970-04-24" "1970-04-24" "1970-04-24"
##   [401] "1970-04-24" "1972-11-17" "1972-11-17" "1972-11-17" "1972-11-17"
##   [406] "1972-11-17" "1972-11-17" "1972-11-17" "1991-05-08" "1991-05-08"
##   [411] "1991-05-08" "1991-05-08" "1991-05-08" "1991-05-08" "1991-05-08"
##   [416] "1991-05-08" "1991-05-08" "1991-05-08" "1991-05-08" "1991-05-08"
##   [421] "1991-05-08" "1991-05-08" "1991-05-08" "1991-05-08" "1991-05-08"
##   [426] "1991-05-08" "1991-05-08" "1991-05-08" "1991-05-08" "1991-05-08"
##   [431] "1991-05-08" "1984-09-15" "1984-09-15" "1984-09-15" "1984-09-15"
##   [436] "1984-09-15" "1984-09-15" "1984-09-15" "1974-04-18" "1974-04-18"
##   [441] "1974-04-18" "1974-04-18" "1974-04-18" "1984-05-21" "1984-05-21"
##   [446] "1984-05-21" "1984-05-21" "1985-07-24" "1985-07-24" "1985-07-24"
##   [451] "1987-01-10" "1987-01-10" "1987-01-10" "1987-01-10" "1987-01-10"
##   [456] "1990-12-20" "1990-12-20" "1990-12-20" "1990-12-20" "1990-12-20"
##   [461] "1990-12-20" "1985-12-15" "1985-12-15" "1985-12-15" "1985-12-15"
##   [466] "1985-12-15" "1985-12-15" "1985-12-15" "1985-12-15" "1985-12-15"
##   [471] "1985-12-15" "1985-12-15" "1982-01-27" "1982-01-27" "1982-01-27"
##   [476] "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23"
##   [481] "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23"
##   [486] "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23"
##   [491] "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23"
##   [496] "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23"
##   [501] "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23" "1984-07-23"
##   [506] "1983-10-26" "1983-10-26" "1983-10-26" "1983-10-26" "1983-10-26"
##   [511] "1983-10-26" "1983-10-26" "1983-10-26" "1983-10-26" "1983-10-26"
##   [516] "1971-02-28" "1971-02-28" "1988-02-20" "1988-02-20" "1988-02-20"
##   [521] "1988-02-20" "1988-02-20" "1988-02-20" "1988-02-20" "1988-02-20"
##   [526] "1988-02-20" "1988-02-20" "1988-02-20" "1988-02-20" "1977-04-29"
##   [531] "1977-04-29" "1977-04-29" "1988-08-19" "1988-08-19" "1988-08-19"
##   [536] "1988-08-19" "1988-08-19" "1978-06-20" "1978-06-20" "1978-06-20"
##   [541] "1978-06-20" "1978-06-20" "1978-06-20" "1978-06-20" "1990-09-13"
##   [546] "1990-09-13" "1990-09-13" "1990-09-13" "1990-09-13" "1990-09-13"
##   [551] "1970-03-12" "1970-03-12" "1970-03-12" "1970-03-12" "1970-03-12"
##   [556] "1970-03-12" "1970-03-12" "1970-03-12" "1970-03-12" "1970-03-12"
##   [561] "1970-03-12" "1970-03-12" "1970-03-12" "1970-03-12" "1970-03-12"
##   [566] "1970-03-12" "1970-03-12" "1974-08-14" "1974-08-14" "1974-08-14"
##   [571] "1974-08-14" "1974-08-14" "1974-08-14" "1974-08-14" "1974-08-14"
##   [576] "1974-08-14" "1974-08-14" "1975-05-29" "1975-05-29" "1975-05-29"
##   [581] "1988-10-27" "1988-10-27" "1988-10-27" "1988-10-27" "1988-10-27"
##   [586] "1988-10-27" "1988-10-27" "1988-10-27" "1988-10-27" "1988-10-27"
##   [591] "1988-10-27" "1988-10-27" "1988-10-27" "1988-10-27" "1988-10-27"
##   [596] "1988-10-27" "1987-04-08" "1987-04-08" "1987-04-08" "1987-04-08"
##   [601] "1987-04-08" "1987-04-08" "1987-04-08" "1987-04-08" "1987-04-08"
##   [606] "1987-04-08" "1987-04-08" "1987-04-08" "1987-04-08" "1992-08-28"
##   [611] "1992-08-28" "1992-08-28" "1992-08-28" "1992-08-28" "1992-08-28"
##   [616] "1992-08-28" "1992-08-28" "1992-08-28" "1992-08-28" "1977-02-10"
##   [621] "1977-02-10" "1977-02-10" "1977-02-10" "1977-02-10" "1977-02-10"
##   [626] "1977-02-10" "1980-04-21" "1980-04-21" "1980-04-21" "1980-04-21"
##   [631] "1980-04-21" "1980-04-21" "1980-04-21" "1980-04-21" "1980-04-21"
##   [636] "1980-04-21" "1991-08-16" "1991-08-16" "1991-08-16" "1991-08-16"
##   [641] "1991-08-16" "1991-08-16" "1991-08-16" "1991-08-16" "1991-08-16"
##   [646] "1991-08-16" "1991-08-16" "1991-08-16" "1991-08-16" "1991-08-16"
##   [651] "1991-08-16" "1991-08-16" "1992-03-23" "1992-03-23" "1992-03-23"
##   [656] "1992-03-23" "1988-09-28" "1988-09-28" "1988-09-28" "1988-09-28"
##   [661] "1988-09-28" "1988-09-28" "1988-09-28" "1988-09-28" "1988-09-28"
##   [666] "1988-09-28" "1988-09-28" "1988-09-28" "1988-09-28" "1988-09-28"
##   [671] "1988-09-28" "1988-09-28" "1988-09-28" "1988-06-16" "1988-06-16"
##   [676] "1988-06-16" "1988-06-16" "1988-06-16" "1979-03-04" "1979-03-04"
##   [681] "1979-03-04" "1979-03-04" "1979-03-04" "1979-03-04" "1975-07-04"
##   [686] "1975-07-04" "1975-07-04" "1975-07-04" "1975-07-04" "1975-07-04"
##   [691] "1975-07-04" "1975-07-04" "1975-07-04" "1975-07-04" "1975-07-04"
##   [696] "1975-07-04" "1975-07-04" "1976-05-07" "1976-05-07" "1976-05-07"
##   [701] "1976-05-07" "1976-05-07" "1976-05-07" "1976-05-07" "1976-05-07"
##   [706] "1976-05-07" "1976-05-07" "1976-09-23" "1976-09-23" "1976-09-23"
##   [711] "1976-09-23" "1976-09-23" "1973-11-11" "1973-11-11" "1973-11-11"
##   [716] "1973-11-11" "1973-11-11" "1973-11-11" "1973-11-11" "1973-11-11"
##   [721] "1973-11-11" "1973-11-11" "1973-11-11" "1973-11-11" "1973-11-11"
##   [726] "1973-11-11" "1979-05-13" "1979-05-13" "1979-05-13" "1979-05-13"
##   [731] "1979-05-13" "1979-05-13" "1979-05-13" "1979-05-13" "1979-05-13"
##   [736] "1979-05-13" "1986-02-26" "1986-02-26" "1986-02-26" "1986-02-26"
##   [741] "1986-02-26" "1986-02-26" "1986-02-26" "1986-02-26" "1986-02-26"
##   [746] "1982-08-21" "1982-08-21" "1982-08-21" "1982-08-21" "1982-08-21"
##   [751] "1982-08-21" "1988-12-07" "1988-12-07" "1988-12-07" "1988-12-07"
##   [756] "1971-05-29" "1971-05-29" "1971-05-29" "1971-05-29" "1971-05-29"
##   [761] "1971-05-29" "1971-05-29" "1971-05-29" "1971-05-29" "1971-05-29"
##   [766] "1971-05-29" "1971-05-29" "1971-05-29" "1971-05-29" "1971-05-29"
##   [771] "1971-05-29" "1974-06-07" "1974-06-07" "1974-06-07" "1974-06-07"
##   [776] "1974-06-07" "1974-06-07" "1974-06-07" "1974-06-07" "1974-06-07"
##   [781] "1974-06-07" "1974-06-07" "1983-10-03" "1983-10-03" "1983-10-03"
##   [786] "1983-10-03" "1983-10-03" "1983-10-03" "1983-10-03" "1983-10-03"
##   [791] "1984-01-19" "1984-01-19" "1984-01-19" "1984-01-19" "1984-01-19"
##   [796] "1984-01-19" "1984-01-19" "1984-01-19" "1984-01-19" "1984-01-19"
##   [801] "1992-02-09" "1992-02-09" "1992-02-09" "1992-02-09" "1992-02-09"
##   [806] "1989-07-16" "1989-07-16" "1989-07-16" "1989-07-16" "1989-07-16"
##   [811] "1989-07-16" "1989-07-16" "1989-07-16" "1989-07-16" "1989-07-16"
##   [816] "1989-07-16" "1989-07-16" "1989-07-16" "1989-07-16" "1989-07-16"
##   [821] "1989-07-16" "1989-07-16" "1979-03-16" "1979-03-16" "1979-03-16"
##   [826] "1976-08-03" "1976-08-03" "1976-08-03" "1976-08-03" "1976-08-03"
##   [831] "1976-08-03" "1976-08-03" "1981-06-05" "1981-06-05" "1981-06-05"
##   [836] "1981-06-05" "1981-06-05" "1981-06-05" "1981-06-05" "1987-11-13"
##   [841] "1987-11-13" "1987-11-13" "1987-11-13" "1987-11-13" "1987-11-13"
##   [846] "1987-11-13" "1987-11-13" "1987-11-13" "1987-11-13" "1974-10-25"
##   [851] "1974-10-25" "1974-10-25" "1974-10-25" "1974-10-25" "1974-10-25"
##   [856] "1974-10-25" "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20"
##   [861] "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20"
##   [866] "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20"
##   [871] "1980-04-20" "1980-04-20" "1975-06-26" "1975-06-26" "1975-06-26"
##   [876] "1975-06-26" "1975-06-26" "1982-10-04" "1982-10-04" "1982-10-04"
##   [881] "1982-10-04" "1982-10-04" "1982-10-04" "1982-10-04" "1982-10-04"
##   [886] "1982-10-04" "1982-10-04" "1982-10-04" "1982-10-04" "1982-10-04"
##   [891] "1982-10-04" "1982-10-04" "1982-10-04" "1982-10-04" "1982-10-04"
##   [896] "1982-10-04" "1982-10-04" "1982-10-04" "1982-10-04" "1982-10-04"
##   [901] "1982-10-04" "1982-10-04" "1982-10-04" "1982-10-04" "1974-06-22"
##   [906] "1974-06-22" "1974-06-22" "1974-06-22" "1974-06-22" "1974-06-22"
##   [911] "1974-06-22" "1974-06-22" "1974-06-22" "1974-06-22" "1974-06-22"
##   [916] "1988-02-01" "1988-02-01" "1988-02-01" "1988-02-01" "1988-02-01"
##   [921] "1988-02-01" "1988-02-01" "1988-02-01" "1988-02-01" "1988-02-01"
##   [926] "1970-09-13" "1970-09-13" "1970-09-13" "1970-09-13" "1970-09-13"
##   [931] "1970-09-13" "1970-09-13" "1970-09-13" "1982-06-05" "1982-06-05"
##   [936] "1982-06-05" "1982-06-05" "1982-06-05" "1982-06-05" "1982-06-05"
##   [941] "1980-02-07" "1980-02-07" "1980-02-07" "1980-02-07" "1980-02-07"
##   [946] "1980-02-07" "1980-02-07" "1980-02-07" "1980-02-07" "1980-02-07"
##   [951] "1980-02-07" "1980-02-07" "1980-02-07" "1980-02-07" "1980-02-07"
##   [956] "1980-02-07" "1980-02-07" "1980-02-07" "1980-02-07" "1980-02-07"
##   [961] "1980-02-07" "1980-02-07" "1970-10-21" "1970-10-21" "1970-10-21"
##   [966] "1970-10-21" "1970-10-21" "1970-10-21" "1979-10-28" "1979-10-28"
##   [971] "1979-10-28" "1979-10-28" "1979-10-28" "1979-10-28" "1979-10-28"
##   [976] "1979-10-28" "1979-10-28" "1979-10-28" "1972-09-27" "1972-09-27"
##   [981] "1972-09-27" "1972-09-27" "1972-09-27" "1972-09-27" "1972-09-27"
##   [986] "1972-09-27" "1972-09-27" "1972-09-27" "1972-09-27" "1972-09-27"
##   [991] "1990-05-11" "1990-05-11" "1990-05-11" "1973-06-22" "1973-06-22"
##   [996] "1973-06-22" "1973-06-22" "1973-06-22" "1977-07-11" "1977-07-11"
##  [1001] "1977-07-11" "1977-07-11" "1977-07-11" "1991-09-29" "1991-09-29"
##  [1006] "1991-09-29" "1991-09-29" "1991-09-29" "1991-09-29" "1984-04-08"
##  [1011] "1984-04-08" "1984-04-08" "1983-04-23" "1983-04-23" "1983-04-23"
##  [1016] "1983-04-23" "1983-04-23" "1983-04-23" "1983-04-23" "1970-01-23"
##  [1021] "1970-01-23" "1970-01-23" "1970-01-23" "1970-01-23" "1970-01-23"
##  [1026] "1970-01-23" "1970-01-23" "1970-01-23" "1970-01-23" "1989-02-01"
##  [1031] "1989-02-01" "1989-02-01" "1989-02-01" "1989-02-01" "1989-02-01"
##  [1036] "1989-02-01" "1989-02-01" "1989-01-13" "1989-01-13" "1989-01-13"
##  [1041] "1989-01-13" "1984-02-06" "1984-02-06" "1984-02-06" "1984-02-06"
##  [1046] "1984-02-06" "1984-02-06" "1984-02-06" "1984-02-06" "1984-02-06"
##  [1051] "1984-02-06" "1984-02-06" "1984-02-06" "1984-02-06" "1984-02-06"
##  [1056] "1984-02-06" "1984-02-06" "1984-02-06" "1984-02-06" "1984-02-06"
##  [1061] "1984-02-06" "1984-02-06" "1971-06-27" "1971-06-27" "1971-06-27"
##  [1066] "1986-08-19" "1986-08-19" "1986-08-19" "1986-08-19" "1986-08-19"
##  [1071] "1986-08-19" "1986-08-19" "1986-08-19" "1986-08-19" "1986-08-19"
##  [1076] "1986-08-19" "1986-08-19" "1985-08-24" "1985-08-24" "1985-08-24"
##  [1081] "1985-08-24" "1985-08-24" "1988-12-27" "1988-12-27" "1988-12-27"
##  [1086] "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27" "1990-01-11"
##  [1091] "1990-01-11" "1990-01-11" "1990-01-11" "1990-01-11" "1990-01-11"
##  [1096] "1990-01-11" "1990-01-11" "1990-01-11" "1990-01-11" "1990-01-11"
##  [1101] "1971-12-18" "1971-12-18" "1971-12-18" "1971-12-18" "1971-12-18"
##  [1106] "1971-12-18" "1971-12-18" "1980-06-29" "1980-06-29" "1978-05-08"
##  [1111] "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08"
##  [1116] "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08"
##  [1121] "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08"
##  [1126] "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08"
##  [1131] "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08"
##  [1136] "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08"
##  [1141] "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08" "1978-05-08"
##  [1146] "1978-05-08" "1978-05-08" "1980-01-02" "1980-01-02" "1980-01-02"
##  [1151] "1980-01-02" "1980-01-02" "1990-05-08" "1990-05-08" "1990-05-08"
##  [1156] "1990-05-08" "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17"
##  [1161] "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17"
##  [1166] "1981-09-17" "1981-09-17" "1981-09-17" "1982-06-12" "1982-06-12"
##  [1171] "1982-06-12" "1982-06-12" "1982-06-12" "1982-06-12" "1982-06-12"
##  [1176] "1982-06-12" "1989-09-02" "1989-09-02" "1989-09-02" "1989-09-02"
##  [1181] "1989-09-02" "1989-09-02" "1989-09-02" "1989-09-02" "1974-12-26"
##  [1186] "1974-12-26" "1974-12-26" "1974-12-26" "1974-12-26" "1974-12-26"
##  [1191] "1974-12-26" "1974-12-26" "1974-12-26" "1974-12-26" "1974-12-26"
##  [1196] "1974-12-26" "1982-09-21" "1982-09-21" "1982-09-21" "1982-09-21"
##  [1201] "1982-09-21" "1982-09-21" "1982-09-21" "1982-09-21" "1982-09-21"
##  [1206] "1988-12-28" "1988-12-28" "1988-12-28" "1988-12-28" "1988-12-28"
##  [1211] "1989-12-13" "1989-12-13" "1989-12-13" "1989-12-13" "1989-12-13"
##  [1216] "1989-12-13" "1989-12-13" "1989-12-13" "1989-12-13" "1976-08-12"
##  [1221] "1976-08-12" "1976-08-12" "1976-08-12" "1976-08-12" "1976-08-12"
##  [1226] "1976-08-12" "1976-08-12" "1976-08-12" "1976-08-12" "1976-08-12"
##  [1231] "1976-08-12" "1976-08-12" "1976-08-12" "1992-10-06" "1992-10-06"
##  [1236] "1992-10-06" "1992-10-06" "1992-10-06" "1992-10-06" "1992-10-06"
##  [1241] "1981-12-08" "1981-12-08" "1981-12-08" "1971-04-21" "1971-04-21"
##  [1246] "1971-04-21" "1971-04-21" "1971-04-21" "1971-04-21" "1971-04-21"
##  [1251] "1971-04-21" "1971-04-21" "1971-04-21" "1971-04-21" "1971-04-21"
##  [1256] "1988-09-02" "1988-09-02" "1970-07-23" "1970-07-23" "1970-07-23"
##  [1261] "1970-07-23" "1970-07-23" "1970-07-23" "1970-07-23" "1970-07-23"
##  [1266] "1970-07-23" "1970-07-23" "1970-07-23" "1970-07-23" "1970-07-23"
##  [1271] "1970-07-23" "1984-10-04" "1984-10-04" "1984-10-04" "1984-10-04"
##  [1276] "1984-10-04" "1984-10-04" "1985-06-16" "1985-06-16" "1985-06-16"
##  [1281] "1989-02-05" "1989-02-05" "1989-02-05" "1989-02-05" "1989-02-05"
##  [1286] "1989-02-05" "1989-02-05" "1989-02-05" "1989-02-05" "1989-02-05"
##  [1291] "1989-02-05" "1989-02-05" "1989-02-05" "1989-02-05" "1989-02-05"
##  [1296] "1989-02-05" "1987-07-03" "1987-07-03" "1987-07-03" "1987-07-03"
##  [1301] "1987-07-03" "1987-07-03" "1988-02-08" "1988-02-08" "1988-02-08"
##  [1306] "1988-02-08" "1988-02-08" "1988-02-08" "1988-02-08" "1988-02-08"
##  [1311] "1988-02-08" "1988-02-08" "1988-02-08" "1988-02-08" "1984-09-28"
##  [1316] "1984-09-28" "1984-09-28" "1984-09-28" "1984-09-28" "1984-09-28"
##  [1321] "1984-09-28" "1984-09-28" "1984-09-28" "1984-09-28" "1982-11-19"
##  [1326] "1982-11-19" "1982-11-19" "1982-11-19" "1982-11-19" "1982-11-19"
##  [1331] "1982-11-19" "1982-09-20" "1982-09-20" "1982-09-20" "1982-09-20"
##  [1336] "1982-09-20" "1982-09-20" "1982-09-20" "1982-09-20" "1982-09-20"
##  [1341] "1982-09-20" "1982-09-20" "1982-09-20" "1989-04-06" "1989-04-06"
##  [1346] "1992-02-06" "1992-02-06" "1992-02-06" "1992-02-06" "1992-02-06"
##  [1351] "1992-02-06" "1992-02-06" "1992-02-06" "1992-02-06" "1992-02-06"
##  [1356] "1992-02-06" "1981-01-19" "1981-01-19" "1981-01-19" "1981-01-19"
##  [1361] "1981-01-19" "1981-01-19" "1981-01-19" "1981-01-19" "1981-01-19"
##  [1366] "1981-01-19" "1981-01-19" "1970-06-25" "1970-06-25" "1970-06-25"
##  [1371] "1970-06-25" "1970-06-25" "1991-11-01" "1991-11-01" "1991-11-01"
##  [1376] "1991-11-01" "1991-11-01" "1991-11-01" "1991-11-01" "1991-11-01"
##  [1381] "1991-11-01" "1991-11-01" "1991-11-01" "1991-11-01" "1979-12-04"
##  [1386] "1979-12-04" "1979-12-04" "1979-12-04" "1979-12-04" "1979-12-04"
##  [1391] "1979-12-04" "1979-12-04" "1979-12-04" "1979-12-04" "1979-12-04"
##  [1396] "1979-12-04" "1985-06-12" "1985-06-12" "1985-06-12" "1985-06-12"
##  [1401] "1985-06-12" "1989-12-18" "1989-12-18" "1989-12-18" "1989-12-18"
##  [1406] "1989-12-18" "1989-12-18" "1989-12-18" "1977-05-03" "1977-05-03"
##  [1411] "1977-05-03" "1977-05-03" "1977-05-03" "1977-05-03" "1977-05-03"
##  [1416] "1977-05-03" "1977-05-03" "1982-12-23" "1982-12-23" "1982-12-23"
##  [1421] "1982-12-23" "1982-12-23" "1982-12-23" "1982-12-23" "1982-12-23"
##  [1426] "1982-12-23" "1982-12-23" "1970-07-17" "1970-07-17" "1970-07-17"
##  [1431] "1970-07-17" "1970-07-17" "1980-10-15" "1980-10-15" "1980-10-15"
##  [1436] "1980-10-15" "1980-10-15" "1978-03-27" "1978-03-27" "1978-03-27"
##  [1441] "1978-03-27" "1978-03-27" "1978-03-27" "1978-03-27" "1978-03-27"
##  [1446] "1978-03-27" "1978-03-27" "1978-03-27" "1978-03-27" "1978-03-27"
##  [1451] "1978-03-27" "1978-03-27" "1978-03-27" "1978-03-27" "1978-03-27"
##  [1456] "1978-03-27" "1978-03-27" "1978-03-27" "1978-03-27" "1978-06-13"
##  [1461] "1978-06-13" "1978-06-13" "1979-05-14" "1979-05-14" "1979-05-14"
##  [1466] "1979-05-14" "1979-05-14" "1980-07-01" "1980-07-01" "1980-07-01"
##  [1471] "1980-07-01" "1980-07-01" "1980-07-01" "1980-07-01" "1980-07-01"
##  [1476] "1979-10-01" "1979-10-01" "1979-10-01" "1979-10-01" "1979-10-01"
##  [1481] "1972-10-08" "1972-10-08" "1972-10-08" "1989-06-21" "1989-06-21"
##  [1486] "1989-06-21" "1989-06-21" "1989-06-21" "1992-11-24" "1992-11-24"
##  [1491] "1992-11-24" "1992-11-24" "1992-11-24" "1992-11-24" "1992-11-24"
##  [1496] "1992-11-24" "1992-11-24" "1992-11-24" "1992-11-24" "1992-11-24"
##  [1501] "1992-11-24" "1992-11-24" "1992-11-24" "1992-11-24" "1973-05-05"
##  [1506] "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05"
##  [1511] "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05" "1971-04-27"
##  [1516] "1971-04-27" "1971-04-27" "1989-02-25" "1989-02-25" "1989-02-25"
##  [1521] "1989-02-25" "1989-02-25" "1989-02-25" "1989-02-25" "1989-02-25"
##  [1526] "1989-02-25" "1989-02-25" "1989-02-25" "1989-02-25" "1989-02-25"
##  [1531] "1989-02-25" "1989-02-25" "1989-02-25" "1989-02-25" "1989-02-25"
##  [1536] "1989-02-25" "1989-02-25" "1989-02-25" "1989-02-25" "1989-02-25"
##  [1541] "1989-02-25" "1989-02-25" "1992-10-26" "1992-10-26" "1992-10-26"
##  [1546] "1992-10-26" "1992-10-26" "1992-10-26" "1992-10-26" "1987-03-05"
##  [1551] "1987-03-05" "1987-03-05" "1987-03-05" "1987-03-05" "1987-03-05"
##  [1556] "1987-03-05" "1987-03-05" "1987-03-05" "1987-03-05" "1987-03-05"
##  [1561] "1987-03-05" "1987-03-05" "1987-03-05" "1987-03-05" "1987-03-05"
##  [1566] "1987-03-05" "1987-03-05" "1987-03-05" "1987-03-05" "1987-03-05"
##  [1571] "1987-03-05" "1987-03-05" "1987-03-05" "1986-11-22" "1986-11-22"
##  [1576] "1986-11-22" "1986-11-22" "1986-11-22" "1986-11-22" "1986-11-22"
##  [1581] "1986-11-22" "1986-11-22" "1986-11-22" "1983-03-19" "1983-03-19"
##  [1586] "1983-03-19" "1983-03-19" "1983-03-19" "1977-07-27" "1977-07-27"
##  [1591] "1977-07-27" "1977-07-27" "1977-07-27" "1977-07-27" "1977-07-27"
##  [1596] "1984-01-13" "1984-01-13" "1984-01-13" "1984-01-13" "1984-01-13"
##  [1601] "1984-01-13" "1984-01-13" "1984-01-13" "1984-01-13" "1984-01-13"
##  [1606] "1984-01-13" "1987-10-18" "1987-10-18" "1987-10-18" "1987-10-18"
##  [1611] "1987-10-18" "1987-10-18" "1987-10-18" "1972-10-22" "1972-10-22"
##  [1616] "1972-10-22" "1972-10-22" "1972-10-22" "1972-10-22" "1972-10-22"
##  [1621] "1975-11-04" "1975-11-04" "1975-11-04" "1975-11-04" "1975-11-04"
##  [1626] "1975-11-04" "1975-11-04" "1973-07-07" "1973-07-07" "1973-07-07"
##  [1631] "1973-07-07" "1973-07-07" "1973-07-07" "1973-07-07" "1973-07-07"
##  [1636] "1973-07-07" "1973-07-07" "1978-01-21" "1978-01-21" "1978-01-21"
##  [1641] "1978-01-21" "1978-01-21" "1978-01-21" "1978-01-21" "1978-01-21"
##  [1646] "1978-01-21" "1978-01-21" "1978-01-21" "1978-01-21" "1978-01-21"
##  [1651] "1978-01-21" "1978-01-21" "1983-11-07" "1983-11-07" "1984-06-27"
##  [1656] "1984-06-27" "1984-06-27" "1984-06-27" "1984-06-27" "1974-08-21"
##  [1661] "1974-08-21" "1974-08-21" "1974-08-21" "1974-08-21" "1974-08-21"
##  [1666] "1974-08-21" "1974-08-21" "1981-06-11" "1981-06-11" "1981-06-11"
##  [1671] "1981-06-11" "1981-06-11" "1981-06-11" "1981-06-11" "1981-06-11"
##  [1676] "1981-06-11" "1981-06-11" "1981-06-11" "1981-06-11" "1981-06-11"
##  [1681] "1981-06-11" "1981-06-11" "1981-06-11" "1981-06-11" "1981-06-11"
##  [1686] "1981-06-11" "1981-06-11" "1981-06-11" "1981-06-11" "1981-06-11"
##  [1691] "1981-06-11" "1981-06-11" "1973-02-09" "1973-02-09" "1973-02-09"
##  [1696] "1973-02-09" "1973-02-09" "1973-02-09" "1973-02-09" "1973-02-09"
##  [1701] "1973-02-09" "1973-02-09" "1973-02-09" "1973-02-09" "1973-02-09"
##  [1706] "1973-02-09" "1978-05-13" "1978-05-13" "1978-05-13" "1978-05-13"
##  [1711] "1978-05-13" "1978-05-13" "1978-05-13" "1978-05-13" "1992-09-14"
##  [1716] "1992-09-14" "1992-09-14" "1992-09-14" "1992-09-14" "1992-09-14"
##  [1721] "1992-09-14" "1992-09-14" "1992-09-14" "1992-09-14" "1992-09-14"
##  [1726] "1992-09-14" "1992-09-14" "1992-09-14" "1977-07-18" "1977-07-18"
##  [1731] "1977-07-18" "1978-04-20" "1978-04-20" "1978-04-20" "1986-11-05"
##  [1736] "1986-11-05" "1986-11-05" "1986-11-05" "1986-11-05" "1989-08-06"
##  [1741] "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06"
##  [1746] "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06"
##  [1751] "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06" "1982-01-07"
##  [1756] "1982-01-07" "1982-01-07" "1982-01-07" "1982-01-07" "1982-01-07"
##  [1761] "1982-01-07" "1982-01-07" "1982-01-07" "1982-01-07" "1990-11-08"
##  [1766] "1990-11-08" "1990-11-08" "1990-11-08" "1987-12-04" "1987-12-04"
##  [1771] "1987-12-04" "1987-12-04" "1975-06-15" "1975-06-15" "1975-06-15"
##  [1776] "1975-06-15" "1975-06-15" "1975-06-15" "1975-06-15" "1990-12-29"
##  [1781] "1990-12-29" "1990-12-29" "1990-12-29" "1990-12-29" "1990-12-29"
##  [1786] "1990-12-29" "1987-04-24" "1987-04-24" "1987-04-24" "1987-04-24"
##  [1791] "1987-04-24" "1987-04-24" "1987-04-24" "1987-04-24" "1987-04-24"
##  [1796] "1987-04-24" "1987-04-24" "1987-04-24" "1987-04-24" "1987-04-24"
##  [1801] "1987-04-24" "1987-04-24" "1982-06-24" "1982-06-24" "1982-06-24"
##  [1806] "1982-06-24" "1982-06-24" "1982-06-24" "1982-06-24" "1982-06-24"
##  [1811] "1982-06-24" "1982-06-24" "1982-06-24" "1982-06-24" "1982-06-24"
##  [1816] "1982-06-24" "1982-06-24" "1982-06-24" "1982-06-24" "1982-06-24"
##  [1821] "1982-06-24" "1982-06-24" "1982-06-24" "1982-06-24" "1990-11-10"
##  [1826] "1990-11-10" "1990-11-10" "1990-11-10" "1990-11-10" "1991-10-02"
##  [1831] "1991-10-02" "1991-10-02" "1991-10-02" "1991-10-02" "1991-10-02"
##  [1836] "1991-10-02" "1991-10-02" "1990-12-18" "1990-12-18" "1990-12-18"
##  [1841] "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14"
##  [1846] "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14"
##  [1851] "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14"
##  [1856] "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14"
##  [1861] "1974-05-14" "1974-01-19" "1974-01-19" "1974-01-19" "1974-01-19"
##  [1866] "1974-01-19" "1981-05-08" "1981-05-08" "1978-04-26" "1978-04-26"
##  [1871] "1978-04-26" "1978-04-26" "1978-04-26" "1978-04-26" "1978-04-26"
##  [1876] "1978-04-26" "1978-04-26" "1978-04-26" "1978-04-26" "1989-11-25"
##  [1881] "1989-11-25" "1989-11-25" "1989-11-25" "1989-11-25" "1989-11-25"
##  [1886] "1989-11-25" "1989-11-25" "1989-11-25" "1989-11-25" "1989-11-25"
##  [1891] "1989-11-25" "1989-11-25" "1989-11-25" "1989-11-25" "1989-11-25"
##  [1896] "1989-11-25" "1989-11-25" "1978-09-17" "1978-09-17" "1978-09-17"
##  [1901] "1978-09-17" "1986-05-16" "1986-05-16" "1986-05-16" "1986-05-16"
##  [1906] "1986-05-16" "1986-05-16" "1986-05-16" "1986-05-16" "1986-05-16"
##  [1911] "1986-05-16" "1986-05-16" "1986-05-16" "1986-05-16" "1986-05-16"
##  [1916] "1986-05-16" "1986-05-16" "1986-05-16" "1970-02-22" "1970-02-22"
##  [1921] "1970-02-22" "1970-02-22" "1970-02-22" "1970-02-22" "1992-10-26"
##  [1926] "1992-10-26" "1992-10-26" "1992-10-26" "1992-10-26" "1992-10-26"
##  [1931] "1992-10-26" "1992-10-26" "1992-10-26" "1992-10-26" "1989-10-12"
##  [1936] "1989-10-12" "1989-10-12" "1989-10-12" "1989-10-12" "1989-10-12"
##  [1941] "1989-10-12" "1989-10-12" "1989-10-12" "1989-10-12" "1989-10-12"
##  [1946] "1990-03-25" "1990-03-25" "1990-03-25" "1990-03-25" "1990-03-25"
##  [1951] "1972-11-16" "1972-11-16" "1972-11-16" "1972-11-16" "1972-11-16"
##  [1956] "1972-11-16" "1972-11-16" "1972-11-16" "1972-11-16" "1972-11-16"
##  [1961] "1972-11-16" "1972-11-16" "1978-06-24" "1978-06-24" "1978-06-24"
##  [1966] "1978-06-24" "1978-06-24" "1978-06-24" "1978-06-24" "1978-06-24"
##  [1971] "1978-06-24" "1978-06-24" "1978-06-24" "1979-01-17" "1979-01-17"
##  [1976] "1979-01-17" "1979-01-17" "1979-01-17" "1979-01-17" "1979-01-17"
##  [1981] "1979-01-17" "1982-09-28" "1982-09-28" "1982-09-28" "1982-09-28"
##  [1986] "1982-09-28" "1982-09-28" "1989-02-12" "1989-02-12" "1989-10-18"
##  [1991] "1989-10-18" "1989-10-18" "1989-10-18" "1989-10-18" "1989-10-18"
##  [1996] "1989-10-23" "1989-10-23" "1989-10-23" "1989-10-23" "1989-10-23"
##  [2001] "1989-10-23" "1989-10-23" "1989-10-23" "1990-02-18" "1990-02-18"
##  [2006] "1990-02-18" "1990-02-18" "1990-02-18" "1990-02-18" "1990-02-18"
##  [2011] "1990-02-18" "1990-02-18" "1990-02-18" "1990-02-18" "1990-02-18"
##  [2016] "1990-02-18" "1977-05-23" "1977-05-23" "1977-05-23" "1977-05-23"
##  [2021] "1977-05-23" "1977-05-23" "1977-05-23" "1977-05-23" "1977-05-23"
##  [2026] "1990-08-11" "1990-08-11" "1990-08-11" "1990-08-11" "1990-08-11"
##  [2031] "1990-08-11" "1990-08-11" "1972-11-27" "1972-11-27" "1985-12-08"
##  [2036] "1985-12-08" "1985-12-08" "1985-12-08" "1985-12-08" "1985-12-08"
##  [2041] "1985-12-08" "1985-12-08" "1970-02-14" "1970-02-14" "1970-02-14"
##  [2046] "1970-02-14" "1970-02-14" "1970-02-14" "1970-02-14" "1970-02-14"
##  [2051] "1970-02-14" "1970-02-14" "1970-02-14" "1970-02-14" "1970-02-14"
##  [2056] "1970-02-14" "1970-02-14" "1987-02-01" "1987-02-01" "1987-02-01"
##  [2061] "1987-02-01" "1987-02-01" "1989-10-11" "1989-10-11" "1989-10-11"
##  [2066] "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11"
##  [2071] "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11"
##  [2076] "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11"
##  [2081] "1989-10-11" "1989-10-11" "1989-10-11" "1988-12-19" "1988-12-19"
##  [2086] "1988-12-19" "1988-12-19" "1988-12-19" "1988-12-19" "1988-12-19"
##  [2091] "1977-09-02" "1977-09-02" "1977-09-02" "1977-09-02" "1977-09-02"
##  [2096] "1977-09-02" "1974-04-15" "1974-04-15" "1982-05-03" "1982-05-03"
##  [2101] "1982-05-03" "1982-05-03" "1982-05-03" "1982-05-03" "1982-05-03"
##  [2106] "1982-05-03" "1988-01-15" "1988-01-15" "1988-01-15" "1988-01-15"
##  [2111] "1988-01-15" "1988-01-15" "1988-01-15" "1988-01-15" "1988-01-15"
##  [2116] "1988-01-15" "1988-01-15" "1988-01-15" "1988-01-15" "1988-01-15"
##  [2121] "1988-01-15" "1988-01-15" "1988-01-15" "1983-06-15" "1983-06-15"
##  [2126] "1973-08-25" "1973-08-25" "1973-08-25" "1973-08-25" "1973-08-25"
##  [2131] "1973-08-25" "1973-08-25" "1973-08-25" "1973-08-25" "1973-08-25"
##  [2136] "1981-11-29" "1981-11-29" "1981-11-29" "1987-03-23" "1987-03-23"
##  [2141] "1987-03-23" "1987-03-23" "1987-03-23" "1987-03-23" "1987-03-23"
##  [2146] "1987-03-23" "1987-03-23" "1987-03-23" "1987-03-23" "1986-07-23"
##  [2151] "1986-07-23" "1986-07-23" "1986-07-23" "1986-07-23" "1986-07-23"
##  [2156] "1986-07-23" "1986-07-23" "1986-07-23" "1986-07-23" "1986-07-23"
##  [2161] "1986-07-23" "1986-07-23" "1986-07-23" "1986-02-03" "1986-02-03"
##  [2166] "1973-08-26" "1973-08-26" "1973-08-26" "1973-08-26" "1973-08-26"
##  [2171] "1973-08-26" "1973-08-26" "1973-08-26" "1973-08-26" "1973-08-26"
##  [2176] "1973-08-26" "1983-06-09" "1983-06-09" "1983-06-09" "1983-06-09"
##  [2181] "1983-06-09" "1983-06-09" "1983-06-09" "1983-06-09" "1971-04-14"
##  [2186] "1971-04-14" "1971-04-14" "1971-04-14" "1971-04-14" "1971-04-14"
##  [2191] "1971-04-14" "1971-04-14" "1971-04-14" "1971-04-14" "1971-04-14"
##  [2196] "1971-04-14" "1991-08-15" "1991-08-15" "1991-08-15" "1991-08-15"
##  [2201] "1991-08-15" "1991-08-15" "1991-08-15" "1991-08-15" "1991-08-15"
##  [2206] "1976-06-10" "1976-06-10" "1976-06-10" "1976-06-10" "1976-06-10"
##  [2211] "1976-06-10" "1976-06-10" "1976-06-10" "1976-06-10" "1983-08-25"
##  [2216] "1983-08-25" "1983-08-25" "1983-08-25" "1983-08-25" "1983-08-25"
##  [2221] "1983-08-25" "1983-08-25" "1983-08-25" "1983-08-25" "1987-08-21"
##  [2226] "1987-08-21" "1987-08-21" "1987-08-21" "1987-08-21" "1987-08-21"
##  [2231] "1987-08-21" "1987-08-21" "1987-08-21" "1987-08-21" "1987-08-21"
##  [2236] "1987-08-21" "1987-08-21" "1989-01-13" "1989-01-13" "1989-01-13"
##  [2241] "1989-01-13" "1989-01-13" "1989-01-13" "1988-05-08" "1988-05-08"
##  [2246] "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08" "1981-10-08"
##  [2251] "1981-10-08" "1981-10-08" "1981-10-08" "1981-10-08" "1981-10-08"
##  [2256] "1981-10-08" "1981-10-08" "1981-10-08" "1981-10-08" "1979-01-01"
##  [2261] "1979-01-01" "1979-01-01" "1979-02-12" "1979-02-12" "1979-02-12"
##  [2266] "1979-02-12" "1979-02-12" "1979-02-12" "1971-03-29" "1971-03-29"
##  [2271] "1971-03-29" "1971-03-29" "1971-03-29" "1971-03-29" "1971-03-29"
##  [2276] "1971-03-29" "1971-03-29" "1971-03-29" "1985-01-11" "1985-01-11"
##  [2281] "1985-01-11" "1985-01-11" "1985-01-11" "1985-01-11" "1990-03-19"
##  [2286] "1990-03-19" "1990-03-19" "1990-03-19" "1990-03-19" "1990-03-19"
##  [2291] "1990-03-19" "1990-03-19" "1990-03-19" "1977-06-16" "1977-06-16"
##  [2296] "1987-12-05" "1987-12-05" "1987-12-05" "1987-12-05" "1987-12-05"
##  [2301] "1987-12-05" "1987-12-05" "1987-12-05" "1987-12-05" "1987-12-05"
##  [2306] "1987-12-05" "1987-12-05" "1987-12-05" "1987-12-05" "1987-12-05"
##  [2311] "1987-12-05" "1979-03-04" "1979-03-04" "1979-03-04" "1990-04-18"
##  [2316] "1990-04-18" "1990-04-18" "1990-04-18" "1990-04-18" "1990-04-18"
##  [2321] "1990-04-18" "1990-04-18" "1990-04-18" "1990-04-18" "1986-09-29"
##  [2326] "1986-09-29" "1986-09-29" "1986-09-29" "1986-09-29" "1986-09-29"
##  [2331] "1980-10-29" "1980-10-29" "1980-10-29" "1980-10-29" "1977-01-04"
##  [2336] "1977-01-04" "1977-01-04" "1977-01-04" "1977-01-04" "1977-01-04"
##  [2341] "1977-01-04" "1977-01-04" "1977-01-04" "1977-01-04" "1977-01-04"
##  [2346] "1977-01-04" "1977-01-04" "1985-06-02" "1985-06-02" "1985-06-02"
##  [2351] "1985-06-02" "1985-06-02" "1977-07-09" "1977-07-09" "1977-07-09"
##  [2356] "1977-07-09" "1977-07-09" "1977-07-09" "1977-07-09" "1977-07-09"
##  [2361] "1977-07-09" "1977-07-09" "1972-12-26" "1972-12-26" "1972-12-26"
##  [2366] "1972-12-26" "1972-12-26" "1972-12-26" "1972-12-26" "1972-12-26"
##  [2371] "1972-12-26" "1972-12-26" "1972-12-26" "1972-12-26" "1982-11-10"
##  [2376] "1982-11-10" "1982-11-10" "1979-05-03" "1979-05-03" "1979-05-03"
##  [2381] "1979-05-03" "1979-05-03" "1979-05-03" "1979-05-03" "1979-05-03"
##  [2386] "1989-09-20" "1989-09-20" "1989-09-20" "1989-09-20" "1989-09-20"
##  [2391] "1989-09-20" "1989-09-20" "1989-09-20" "1989-04-25" "1989-04-25"
##  [2396] "1989-04-25" "1989-04-25" "1989-04-25" "1989-04-25" "1989-04-25"
##  [2401] "1989-04-25" "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14"
##  [2406] "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14"
##  [2411] "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14"
##  [2416] "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14"
##  [2421] "1986-05-21" "1986-05-21" "1986-05-21" "1986-05-21" "1986-05-21"
##  [2426] "1986-05-21" "1986-05-21" "1986-05-21" "1985-12-21" "1985-12-21"
##  [2431] "1985-12-21" "1971-03-21" "1971-03-21" "1971-03-21" "1971-03-21"
##  [2436] "1971-03-21" "1971-03-21" "1971-03-21" "1971-03-21" "1971-03-21"
##  [2441] "1971-03-21" "1971-03-21" "1971-03-21" "1971-03-21" "1971-03-21"
##  [2446] "1971-03-21" "1971-03-21" "1971-03-21" "1971-03-21" "1971-03-21"
##  [2451] "1971-03-21" "1971-03-21" "1971-03-21" "1972-12-16" "1972-12-16"
##  [2456] "1972-12-16" "1972-12-16" "1972-12-16" "1983-08-20" "1983-08-20"
##  [2461] "1983-08-20" "1983-08-20" "1983-08-20" "1983-08-20" "1974-03-27"
##  [2466] "1974-03-27" "1974-03-27" "1974-03-27" "1974-03-27" "1974-03-27"
##  [2471] "1974-03-27" "1974-03-27" "1974-03-27" "1974-03-27" "1974-03-27"
##  [2476] "1974-03-27" "1974-03-27" "1974-03-27" "1974-03-27" "1983-06-29"
##  [2481] "1983-06-29" "1983-06-29" "1983-06-29" "1974-05-18" "1974-05-18"
##  [2486] "1981-05-24" "1981-05-24" "1981-05-24" "1981-05-24" "1981-05-24"
##  [2491] "1981-05-24" "1981-05-24" "1981-05-24" "1981-05-24" "1981-05-24"
##  [2496] "1970-08-02" "1970-08-02" "1970-08-02" "1975-07-01" "1975-07-01"
##  [2501] "1975-07-01" "1975-02-26" "1975-02-26" "1975-02-26" "1975-02-26"
##  [2506] "1975-02-26" "1975-02-26" "1975-02-26" "1975-02-26" "1984-04-20"
##  [2511] "1984-04-20" "1984-04-20" "1984-04-20" "1984-04-20" "1980-12-19"
##  [2516] "1980-12-19" "1980-12-19" "1980-12-19" "1980-12-19" "1980-12-19"
##  [2521] "1980-12-19" "1980-12-19" "1980-12-19" "1979-11-24" "1979-11-24"
##  [2526] "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24"
##  [2531] "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24"
##  [2536] "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24"
##  [2541] "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24"
##  [2546] "1979-01-03" "1979-01-03" "1979-01-03" "1979-01-03" "1979-01-03"
##  [2551] "1974-07-16" "1974-07-16" "1974-07-16" "1974-07-16" "1984-07-22"
##  [2556] "1984-07-22" "1984-07-22" "1984-07-22" "1984-07-22" "1972-03-18"
##  [2561] "1972-03-18" "1972-03-18" "1972-03-18" "1972-03-18" "1972-03-18"
##  [2566] "1972-03-18" "1972-03-18" "1972-03-18" "1972-03-18" "1972-03-18"
##  [2571] "1972-03-18" "1972-03-18" "1972-03-18" "1972-03-18" "1972-03-18"
##  [2576] "1972-03-18" "1972-03-18" "1972-03-18" "1972-03-18" "1988-01-19"
##  [2581] "1988-01-19" "1975-09-26" "1975-09-26" "1975-09-26" "1975-09-26"
##  [2586] "1975-09-26" "1975-09-26" "1975-09-26" "1975-09-26" "1975-09-26"
##  [2591] "1975-09-26" "1975-09-26" "1975-09-26" "1975-09-26" "1975-09-26"
##  [2596] "1975-09-26" "1975-09-26" "1975-09-26" "1976-01-04" "1976-01-04"
##  [2601] "1976-01-04" "1976-01-04" "1981-07-24" "1981-07-24" "1990-08-12"
##  [2606] "1990-08-12" "1990-08-12" "1990-08-12" "1990-08-12" "1990-08-12"
##  [2611] "1990-08-12" "1990-08-12" "1990-08-12" "1973-07-19" "1973-07-19"
##  [2616] "1973-07-19" "1973-07-19" "1973-07-19" "1973-07-19" "1973-07-19"
##  [2621] "1973-07-19" "1973-07-19" "1973-07-19" "1973-07-19" "1981-12-07"
##  [2626] "1981-12-07" "1981-12-07" "1981-12-07" "1981-12-07" "1981-12-07"
##  [2631] "1981-12-07" "1970-08-03" "1970-08-03" "1970-08-03" "1970-08-03"
##  [2636] "1970-08-03" "1970-08-03" "1970-08-03" "1970-08-03" "1991-05-13"
##  [2641] "1991-05-13" "1991-05-13" "1991-05-13" "1991-05-13" "1991-05-13"
##  [2646] "1991-05-13" "1979-11-14" "1979-11-14" "1979-11-14" "1979-11-14"
##  [2651] "1979-11-14" "1979-11-14" "1987-02-02" "1987-02-02" "1987-02-02"
##  [2656] "1987-02-02" "1987-02-02" "1987-02-02" "1987-02-02" "1987-02-02"
##  [2661] "1987-02-02" "1973-04-08" "1973-04-08" "1973-04-08" "1973-04-08"
##  [2666] "1973-04-08" "1973-04-08" "1973-04-08" "1973-04-08" "1992-02-22"
##  [2671] "1992-02-22" "1992-02-22" "1992-02-22" "1992-02-22" "1992-02-22"
##  [2676] "1992-02-22" "1992-02-22" "1992-02-22" "1992-02-22" "1992-02-22"
##  [2681] "1980-05-08" "1980-05-08" "1980-05-08" "1980-05-08" "1980-05-08"
##  [2686] "1980-05-08" "1980-05-08" "1980-05-08" "1980-05-08" "1980-05-08"
##  [2691] "1973-02-25" "1973-02-25" "1973-02-25" "1973-02-25" "1973-02-25"
##  [2696] "1973-02-25" "1973-02-25" "1973-02-25" "1973-02-25" "1973-02-25"
##  [2701] "1973-02-25" "1973-02-25" "1973-02-25" "1977-01-10" "1977-01-10"
##  [2706] "1977-01-10" "1977-01-10" "1977-01-10" "1977-01-10" "1977-01-10"
##  [2711] "1977-01-10" "1977-01-10" "1977-01-10" "1990-01-27" "1990-01-27"
##  [2716] "1990-01-27" "1990-01-27" "1990-01-27" "1990-01-27" "1990-01-27"
##  [2721] "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26"
##  [2726] "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26"
##  [2731] "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26"
##  [2736] "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26"
##  [2741] "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26"
##  [2746] "1981-07-05" "1981-07-05" "1981-07-05" "1981-07-05" "1987-05-13"
##  [2751] "1987-05-13" "1987-05-13" "1987-05-13" "1987-05-13" "1987-05-13"
##  [2756] "1973-06-22" "1973-06-22" "1973-06-22" "1973-06-22" "1973-06-22"
##  [2761] "1973-06-22" "1973-06-22" "1973-06-22" "1973-06-22" "1973-06-22"
##  [2766] "1973-06-22" "1973-06-22" "1973-06-22" "1973-06-22" "1974-02-11"
##  [2771] "1974-02-11" "1974-02-11" "1974-02-11" "1974-02-11" "1974-02-11"
##  [2776] "1974-02-11" "1974-02-11" "1974-02-11" "1974-02-11" "1974-02-11"
##  [2781] "1981-09-22" "1981-09-22" "1981-09-22" "1981-09-22" "1981-09-22"
##  [2786] "1981-09-22" "1981-09-22" "1981-09-22" "1981-09-22" "1981-09-22"
##  [2791] "1981-09-22" "1989-06-20" "1989-06-20" "1989-06-20" "1989-06-20"
##  [2796] "1989-06-20" "1989-06-20" "1989-06-20" "1989-06-20" "1989-06-20"
##  [2801] "1982-08-23" "1982-08-23" "1983-03-08" "1983-03-08" "1983-03-08"
##  [2806] "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08"
##  [2811] "1983-03-08" "1983-01-01" "1983-01-01" "1983-01-01" "1983-01-01"
##  [2816] "1983-01-01" "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11"
##  [2821] "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11"
##  [2826] "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11" "1986-12-17"
##  [2831] "1986-12-17" "1986-12-17" "1986-12-17" "1986-12-17" "1986-12-17"
##  [2836] "1986-12-17" "1986-12-17" "1986-12-17" "1986-12-17" "1986-12-17"
##  [2841] "1986-12-17" "1986-12-17" "1986-12-17" "1986-12-17" "1986-12-17"
##  [2846] "1986-12-17" "1986-12-17" "1977-03-10" "1977-03-10" "1977-03-10"
##  [2851] "1977-03-10" "1987-02-28" "1987-02-28" "1987-02-28" "1978-06-12"
##  [2856] "1978-06-12" "1978-06-12" "1978-06-12" "1978-06-12" "1978-06-12"
##  [2861] "1978-06-12" "1978-06-12" "1978-06-12" "1978-06-12" "1978-06-12"
##  [2866] "1978-06-12" "1978-06-12" "1978-06-12" "1990-01-22" "1990-01-22"
##  [2871] "1990-01-22" "1975-09-02" "1975-09-02" "1975-09-02" "1975-09-02"
##  [2876] "1975-09-02" "1975-09-02" "1975-09-02" "1975-09-02" "1975-09-02"
##  [2881] "1975-09-02" "1975-09-02" "1975-09-02" "1975-09-02" "1975-09-02"
##  [2886] "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19"
##  [2891] "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19"
##  [2896] "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19"
##  [2901] "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19"
##  [2906] "1981-08-15" "1981-08-15" "1981-08-15" "1981-08-15" "1981-08-15"
##  [2911] "1981-08-15" "1981-08-15" "1978-02-27" "1978-02-27" "1978-02-27"
##  [2916] "1978-02-27" "1978-02-27" "1978-02-27" "1978-02-27" "1978-02-27"
##  [2921] "1978-02-27" "1978-02-27" "1978-02-27" "1978-02-27" "1978-02-27"
##  [2926] "1987-07-06" "1987-07-06" "1987-07-06" "1987-07-06" "1987-07-06"
##  [2931] "1987-07-06" "1987-07-06" "1987-07-06" "1987-07-06" "1987-07-06"
##  [2936] "1987-07-06" "1971-04-01" "1971-04-01" "1971-04-01" "1971-04-01"
##  [2941] "1991-03-22" "1991-03-22" "1991-03-22" "1991-03-22" "1980-07-22"
##  [2946] "1980-07-22" "1980-07-22" "1980-07-22" "1980-07-22" "1980-07-22"
##  [2951] "1980-07-22" "1980-07-22" "1971-01-08" "1971-01-08" "1971-01-08"
##  [2956] "1971-01-08" "1971-01-08" "1971-01-08" "1971-01-08" "1971-01-08"
##  [2961] "1971-01-08" "1971-01-08" "1971-01-08" "1991-02-10" "1991-02-10"
##  [2966] "1991-02-10" "1991-02-10" "1991-02-10" "1991-02-10" "1991-02-10"
##  [2971] "1991-02-10" "1991-02-10" "1991-02-10" "1987-04-12" "1987-04-12"
##  [2976] "1987-04-12" "1987-04-12" "1987-04-12" "1987-04-12" "1987-04-12"
##  [2981] "1987-04-12" "1987-04-12" "1987-04-12" "1980-10-21" "1980-10-21"
##  [2986] "1980-10-21" "1980-10-21" "1980-10-21" "1980-10-21" "1980-10-21"
##  [2991] "1980-10-21" "1980-10-21" "1980-10-21" "1980-10-21" "1991-05-02"
##  [2996] "1991-05-02" "1991-05-02" "1991-05-02" "1991-05-02" "1991-05-02"
##  [3001] "1991-05-02" "1991-05-02" "1975-09-23" "1975-09-23" "1975-09-23"
##  [3006] "1975-09-23" "1975-09-23" "1983-09-14" "1983-09-14" "1978-09-17"
##  [3011] "1978-09-17" "1988-07-13" "1988-07-13" "1988-07-13" "1988-07-13"
##  [3016] "1988-07-13" "1988-07-13" "1988-07-13" "1988-07-13" "1988-07-13"
##  [3021] "1988-07-13" "1988-07-13" "1988-07-13" "1988-07-13" "1988-07-13"
##  [3026] "1988-07-13" "1988-07-13" "1988-07-13" "1975-07-17" "1975-07-17"
##  [3031] "1975-07-17" "1975-07-17" "1975-07-17" "1975-07-17" "1975-07-17"
##  [3036] "1975-07-17" "1975-07-17" "1982-12-29" "1982-12-29" "1982-12-29"
##  [3041] "1982-12-29" "1982-12-29" "1973-11-20" "1973-11-20" "1973-11-20"
##  [3046] "1973-11-20" "1973-11-20" "1973-11-20" "1973-11-20" "1973-11-20"
##  [3051] "1973-11-20" "1973-11-20" "1973-11-20" "1975-09-03" "1975-09-03"
##  [3056] "1975-09-03" "1975-09-03" "1975-09-03" "1970-03-21" "1970-03-21"
##  [3061] "1970-03-21" "1970-03-21" "1970-03-21" "1970-03-21" "1970-03-21"
##  [3066] "1970-03-21" "1970-03-21" "1970-03-21" "1970-03-21" "1972-06-19"
##  [3071] "1972-06-19" "1984-05-24" "1984-05-24" "1984-05-24" "1984-05-24"
##  [3076] "1984-05-24" "1978-07-29" "1978-07-29" "1978-07-29" "1978-07-29"
##  [3081] "1978-07-29" "1978-07-29" "1978-07-29" "1978-07-29" "1978-07-29"
##  [3086] "1978-07-29" "1978-01-19" "1978-01-19" "1978-01-19" "1978-01-19"
##  [3091] "1978-01-19" "1978-01-19" "1978-01-19" "1978-01-19" "1978-01-19"
##  [3096] "1970-05-15" "1970-05-15" "1970-05-15" "1970-05-15" "1970-05-15"
##  [3101] "1973-01-11" "1973-01-11" "1973-01-11" "1973-01-11" "1973-01-11"
##  [3106] "1973-01-11" "1973-01-11" "1973-01-11" "1973-01-11" "1975-06-27"
##  [3111] "1975-06-27" "1975-06-27" "1975-06-27" "1975-06-27" "1975-06-27"
##  [3116] "1975-06-27" "1975-06-27" "1975-06-27" "1975-06-27" "1975-06-27"
##  [3121] "1975-06-27" "1975-06-27" "1971-06-24" "1971-06-24" "1971-06-24"
##  [3126] "1971-06-24" "1971-06-24" "1971-06-24" "1971-06-24" "1971-06-24"
##  [3131] "1971-06-24" "1971-06-24" "1971-06-24" "1970-11-13" "1970-11-13"
##  [3136] "1970-11-13" "1970-11-13" "1970-11-13" "1970-11-13" "1976-09-22"
##  [3141] "1976-09-22" "1976-09-22" "1976-09-22" "1976-09-22" "1976-09-22"
##  [3146] "1989-03-09" "1989-03-09" "1989-03-09" "1989-03-09" "1989-03-09"
##  [3151] "1989-03-09" "1989-03-09" "1989-03-09" "1989-03-09" "1989-03-09"
##  [3156] "1989-03-09" "1989-03-09" "1989-03-09" "1989-03-09" "1989-03-09"
##  [3161] "1989-03-09" "1990-05-04" "1990-05-04" "1990-05-04" "1990-05-04"
##  [3166] "1990-05-04" "1989-11-13" "1989-11-13" "1989-11-13" "1989-11-13"
##  [3171] "1989-11-13" "1989-11-13" "1989-11-13" "1989-11-13" "1985-09-21"
##  [3176] "1985-09-21" "1985-09-21" "1984-09-11" "1984-09-11" "1984-09-11"
##  [3181] "1984-09-11" "1984-09-11" "1987-05-29" "1987-05-29" "1992-11-11"
##  [3186] "1992-11-11" "1992-11-11" "1992-11-11" "1992-11-11" "1992-11-11"
##  [3191] "1992-11-11" "1992-11-11" "1974-05-21" "1974-05-21" "1974-05-21"
##  [3196] "1974-05-21" "1974-05-21" "1974-05-21" "1974-05-21" "1974-05-21"
##  [3201] "1974-05-21" "1974-05-21" "1974-05-21" "1986-03-17" "1986-03-17"
##  [3206] "1986-03-17" "1986-03-17" "1986-03-17" "1986-03-17" "1986-03-17"
##  [3211] "1986-03-17" "1986-03-17" "1986-03-17" "1986-03-17" "1986-03-17"
##  [3216] "1986-03-17" "1986-03-17" "1986-03-17" "1986-03-17" "1977-07-17"
##  [3221] "1977-07-17" "1977-07-17" "1977-07-17" "1977-07-17" "1977-07-17"
##  [3226] "1977-07-17" "1977-07-17" "1977-07-17" "1976-11-28" "1976-11-28"
##  [3231] "1976-11-28" "1976-11-28" "1976-11-28" "1976-11-28" "1976-11-28"
##  [3236] "1976-11-28" "1976-11-28" "1976-11-28" "1976-11-28" "1976-11-28"
##  [3241] "1976-11-28" "1976-11-28" "1976-11-28" "1976-11-28" "1976-11-28"
##  [3246] "1976-11-28" "1985-09-22" "1985-09-22" "1985-09-22" "1985-09-22"
##  [3251] "1985-09-22" "1985-09-22" "1985-09-22" "1985-09-22" "1985-09-22"
##  [3256] "1985-09-22" "1985-09-22" "1985-09-22" "1985-09-22" "1985-09-22"
##  [3261] "1985-09-22" "1985-09-22" "1985-09-22" "1985-09-22" "1985-09-22"
##  [3266] "1984-06-03" "1984-06-03" "1984-06-03" "1984-06-03" "1984-06-03"
##  [3271] "1984-06-03" "1984-06-03" "1984-06-03" "1970-09-22" "1970-09-22"
##  [3276] "1970-09-22" "1970-09-22" "1970-09-22" "1970-09-22" "1970-09-22"
##  [3281] "1970-09-22" "1970-09-22" "1970-09-22" "1970-09-22" "1970-09-22"
##  [3286] "1970-09-22" "1970-09-22" "1970-09-22" "1987-05-03" "1987-05-03"
##  [3291] "1987-05-03" "1987-05-03" "1987-05-03" "1987-05-03" "1987-05-03"
##  [3296] "1987-05-03" "1987-05-03" "1987-05-03" "1987-05-03" "1987-05-03"
##  [3301] "1987-05-03" "1987-05-03" "1987-05-03" "1987-05-03" "1987-05-03"
##  [3306] "1981-11-18" "1981-11-18" "1981-11-18" "1972-11-29" "1972-11-29"
##  [3311] "1972-11-29" "1972-11-29" "1972-11-29" "1972-11-29" "1972-11-29"
##  [3316] "1972-11-29" "1972-11-29" "1972-11-29" "1972-11-29" "1982-08-18"
##  [3321] "1982-08-18" "1982-08-18" "1982-08-18" "1982-08-18" "1982-08-18"
##  [3326] "1982-08-18" "1982-08-18" "1982-08-18" "1982-08-18" "1982-08-18"
##  [3331] "1982-08-18" "1982-08-18" "1982-08-18" "1982-08-18" "1982-08-18"
##  [3336] "1982-08-18" "1973-05-07" "1973-05-07" "1973-05-07" "1973-05-07"
##  [3341] "1973-05-07" "1973-05-07" "1973-05-07" "1973-05-07" "1973-05-07"
##  [3346] "1973-05-07" "1989-09-24" "1989-09-24" "1989-09-24" "1989-09-24"
##  [3351] "1989-09-24" "1989-09-24" "1977-09-10" "1977-09-10" "1977-09-10"
##  [3356] "1977-09-10" "1977-09-10" "1977-09-10" "1977-09-10" "1977-09-10"
##  [3361] "1977-09-10" "1977-09-10" "1977-09-10" "1977-09-10" "1977-09-10"
##  [3366] "1977-09-10" "1977-09-23" "1977-09-23" "1977-09-23" "1977-09-23"
##  [3371] "1977-09-23" "1977-09-23" "1977-09-23" "1977-09-23" "1977-09-23"
##  [3376] "1977-09-23" "1977-09-23" "1977-09-23" "1977-09-23" "1977-09-23"
##  [3381] "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27"
##  [3386] "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27"
##  [3391] "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27"
##  [3396] "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27"
##  [3401] "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27" "1989-06-16"
##  [3406] "1989-06-16" "1989-06-16" "1989-06-16" "1989-06-16" "1989-06-16"
##  [3411] "1989-06-16" "1989-06-16" "1989-06-16" "1989-06-16" "1989-06-16"
##  [3416] "1989-06-16" "1989-06-16" "1989-06-16" "1989-06-16" "1989-06-16"
##  [3421] "1989-06-16" "1989-06-16" "1989-06-16" "1989-06-16" "1989-06-16"
##  [3426] "1989-06-16" "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16"
##  [3431] "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16"
##  [3436] "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16"
##  [3441] "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16" "1983-04-04"
##  [3446] "1983-04-04" "1983-04-04" "1983-04-04" "1983-04-04" "1983-04-04"
##  [3451] "1983-04-04" "1983-04-04" "1983-04-04" "1983-04-04" "1983-04-04"
##  [3456] "1974-02-15" "1974-02-15" "1974-02-15" "1974-02-15" "1974-02-15"
##  [3461] "1974-02-15" "1974-02-15" "1974-02-15" "1991-06-17" "1991-06-17"
##  [3466] "1991-06-17" "1991-06-17" "1991-06-17" "1971-06-24" "1971-06-24"
##  [3471] "1971-06-24" "1971-06-24" "1971-06-24" "1971-06-24" "1971-06-24"
##  [3476] "1971-06-24" "1971-06-24" "1971-06-24" "1971-06-24" "1971-06-24"
##  [3481] "1975-12-05" "1975-12-05" "1975-12-05" "1975-12-05" "1975-12-05"
##  [3486] "1975-12-05" "1975-12-05" "1975-12-05" "1975-12-05" "1982-09-27"
##  [3491] "1982-09-27" "1982-09-27" "1982-09-27" "1982-09-27" "1982-09-27"
##  [3496] "1982-09-27" "1982-09-27" "1982-09-27" "1988-01-11" "1988-01-11"
##  [3501] "1988-01-11" "1988-01-11" "1988-01-11" "1988-01-11" "1988-01-11"
##  [3506] "1988-01-11" "1971-04-22" "1971-04-22" "1971-04-22" "1971-04-22"
##  [3511] "1971-04-22" "1971-04-22" "1971-04-22" "1971-04-22" "1977-05-16"
##  [3516] "1977-05-16" "1977-05-16" "1977-05-16" "1977-05-16" "1977-05-16"
##  [3521] "1977-05-16" "1977-05-16" "1977-05-16" "1977-05-16" "1977-05-16"
##  [3526] "1977-05-16" "1990-03-13" "1990-03-13" "1990-03-13" "1990-03-13"
##  [3531] "1990-03-13" "1990-03-13" "1990-03-13" "1990-03-13" "1990-03-13"
##  [3536] "1990-03-13" "1990-03-13" "1990-03-13" "1990-03-13" "1990-03-13"
##  [3541] "1990-03-13" "1990-03-13" "1990-03-13" "1987-08-06" "1987-08-06"
##  [3546] "1987-08-06" "1987-08-06" "1987-08-06" "1987-08-06" "1987-08-06"
##  [3551] "1987-08-06" "1987-08-06" "1991-01-10" "1991-01-10" "1991-01-10"
##  [3556] "1991-01-10" "1991-01-10" "1991-01-10" "1991-01-10" "1991-01-10"
##  [3561] "1991-01-10" "1973-10-06" "1973-10-06" "1973-10-06" "1973-10-06"
##  [3566] "1973-10-06" "1973-10-06" "1973-10-06" "1973-10-06" "1973-10-06"
##  [3571] "1973-10-06" "1985-02-24" "1985-02-24" "1985-02-24" "1985-02-24"
##  [3576] "1985-02-24" "1985-02-24" "1985-02-24" "1987-07-25" "1987-07-25"
##  [3581] "1987-07-25" "1987-07-25" "1984-10-12" "1984-10-12" "1984-10-12"
##  [3586] "1984-10-12" "1984-10-12" "1980-01-24" "1980-01-24" "1980-01-24"
##  [3591] "1980-01-24" "1983-05-13" "1983-05-13" "1983-05-13" "1977-12-16"
##  [3596] "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16"
##  [3601] "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16"
##  [3606] "1977-12-16" "1977-12-16" "1992-11-29" "1992-11-29" "1992-11-29"
##  [3611] "1992-11-29" "1992-11-29" "1992-11-29" "1992-11-29" "1992-11-29"
##  [3616] "1992-11-29" "1992-11-29" "1992-11-29" "1992-11-29" "1992-11-29"
##  [3621] "1992-11-29" "1992-11-29" "1992-11-29" "1986-03-11" "1986-03-11"
##  [3626] "1986-03-11" "1986-03-11" "1986-03-11" "1986-03-11" "1986-03-11"
##  [3631] "1978-07-29" "1978-07-29" "1978-07-29" "1978-07-29" "1978-07-29"
##  [3636] "1978-07-29" "1978-07-29" "1989-04-08" "1989-04-08" "1989-04-08"
##  [3641] "1989-04-08" "1989-04-08" "1989-04-08" "1989-04-08" "1989-04-08"
##  [3646] "1989-04-08" "1986-07-12" "1986-07-12" "1986-07-12" "1986-07-12"
##  [3651] "1986-07-12" "1986-07-12" "1986-07-12" "1986-07-12" "1987-03-15"
##  [3656] "1987-03-15" "1987-03-15" "1987-03-15" "1987-03-15" "1987-03-15"
##  [3661] "1987-03-15" "1987-03-15" "1987-03-15" "1987-03-15" "1987-03-15"
##  [3666] "1987-03-15" "1987-03-15" "1987-03-15" "1987-03-15" "1987-03-15"
##  [3671] "1987-03-15" "1990-06-21" "1990-06-21" "1990-06-21" "1990-06-21"
##  [3676] "1990-06-21" "1990-06-21" "1990-06-21" "1990-06-21" "1990-06-21"
##  [3681] "1990-06-21" "1990-06-21" "1990-06-21" "1990-06-21" "1990-06-21"
##  [3686] "1990-06-21" "1990-06-21" "1990-06-21" "1990-06-21" "1990-06-21"
##  [3691] "1990-06-21" "1990-06-21" "1990-06-21" "1990-06-21" "1970-09-09"
##  [3696] "1970-09-09" "1970-09-09" "1970-09-09" "1970-09-09" "1970-09-09"
##  [3701] "1970-09-09" "1970-09-09" "1970-09-09" "1970-09-09" "1970-09-09"
##  [3706] "1970-09-09" "1970-09-09" "1970-09-09" "1970-09-09" "1980-03-15"
##  [3711] "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15" "1988-06-13"
##  [3716] "1988-06-13" "1988-06-13" "1988-06-13" "1988-06-13" "1988-06-13"
##  [3721] "1988-06-13" "1988-06-13" "1988-06-13" "1988-06-13" "1988-06-13"
##  [3726] "1988-06-13" "1988-06-13" "1988-06-13" "1988-06-13" "1988-06-13"
##  [3731] "1991-02-10" "1991-02-10" "1988-08-07" "1988-08-07" "1988-08-07"
##  [3736] "1988-08-07" "1988-08-07" "1988-08-07" "1988-08-07" "1988-08-07"
##  [3741] "1988-08-07" "1988-08-07" "1988-08-07" "1988-08-07" "1988-08-07"
##  [3746] "1988-08-07" "1987-07-18" "1987-07-18" "1987-07-18" "1987-07-18"
##  [3751] "1987-07-18" "1987-07-18" "1987-07-18" "1987-07-18" "1987-07-18"
##  [3756] "1987-07-18" "1987-07-18" "1987-07-18" "1987-07-18" "1987-07-18"
##  [3761] "1987-07-18" "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21"
##  [3766] "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21"
##  [3771] "1988-07-21" "1974-02-01" "1974-02-01" "1974-02-01" "1974-02-01"
##  [3776] "1974-02-01" "1974-02-01" "1974-02-01" "1974-02-01" "1974-02-01"
##  [3781] "1974-02-01" "1974-02-01" "1974-02-01" "1974-02-01" "1974-02-01"
##  [3786] "1974-02-01" "1974-02-01" "1985-01-19" "1985-01-19" "1985-01-19"
##  [3791] "1985-01-19" "1985-01-19" "1985-01-19" "1985-01-19" "1992-08-26"
##  [3796] "1992-08-26" "1992-08-26" "1992-08-26" "1992-08-26" "1983-09-11"
##  [3801] "1983-09-11" "1983-09-11" "1983-09-11" "1983-09-11" "1983-09-11"
##  [3806] "1983-09-11" "1983-09-11" "1983-09-11" "1983-09-11" "1983-09-11"
##  [3811] "1971-01-07" "1971-01-07" "1971-01-07" "1971-01-07" "1971-01-07"
##  [3816] "1971-01-07" "1987-09-14" "1987-09-14" "1987-09-14" "1987-09-14"
##  [3821] "1987-09-14" "1987-09-14" "1987-09-14" "1987-09-14" "1987-09-14"
##  [3826] "1987-09-14" "1987-09-14" "1987-09-14" "1987-09-14" "1987-09-14"
##  [3831] "1976-02-28" "1976-02-28" "1976-02-28" "1976-02-28" "1976-02-28"
##  [3836] "1976-02-28" "1976-02-28" "1976-02-28" "1976-02-28" "1976-02-28"
##  [3841] "1976-02-28" "1976-02-28" "1976-02-28" "1976-02-28" "1976-02-28"
##  [3846] "1976-02-28" "1976-02-28" "1976-02-28" "1976-02-28" "1976-02-28"
##  [3851] "1976-02-28" "1976-02-28" "1976-02-28" "1975-10-19" "1975-10-19"
##  [3856] "1975-10-19" "1975-10-19" "1975-10-19" "1975-02-25" "1975-02-25"
##  [3861] "1975-02-25" "1975-02-25" "1975-02-25" "1975-02-25" "1975-02-25"
##  [3866] "1975-02-25" "1975-02-25" "1975-02-25" "1975-02-25" "1975-02-25"
##  [3871] "1975-02-25" "1985-09-14" "1985-09-14" "1970-05-09" "1970-05-09"
##  [3876] "1970-05-09" "1970-05-09" "1970-05-09" "1970-05-09" "1970-05-09"
##  [3881] "1988-09-03" "1988-09-03" "1988-09-03" "1988-09-03" "1988-09-03"
##  [3886] "1988-09-03" "1988-09-03" "1988-09-03" "1970-09-10" "1970-09-10"
##  [3891] "1970-09-10" "1970-09-10" "1970-09-10" "1970-09-10" "1970-09-10"
##  [3896] "1970-09-10" "1970-09-10" "1970-09-10" "1970-09-10" "1991-02-03"
##  [3901] "1991-02-03" "1991-02-03" "1991-02-03" "1991-02-03" "1979-11-03"
##  [3906] "1979-11-03" "1979-11-03" "1979-11-03" "1979-11-03" "1979-11-03"
##  [3911] "1979-11-03" "1979-11-03" "1979-11-03" "1979-11-03" "1979-11-03"
##  [3916] "1979-11-03" "1979-11-03" "1979-11-03" "1979-11-03" "1979-11-03"
##  [3921] "1979-11-03" "1979-11-03" "1979-11-03" "1991-08-25" "1991-08-25"
##  [3926] "1991-08-25" "1991-08-25" "1991-08-25" "1991-08-25" "1978-03-21"
##  [3931] "1978-03-21" "1978-03-21" "1978-03-21" "1972-07-24" "1972-07-24"
##  [3936] "1972-07-24" "1984-10-12" "1984-10-12" "1984-10-12" "1984-10-12"
##  [3941] "1984-10-12" "1971-10-09" "1971-10-09" "1971-10-09" "1971-10-09"
##  [3946] "1971-10-09" "1985-03-08" "1985-03-08" "1985-03-08" "1985-03-08"
##  [3951] "1985-03-08" "1987-11-24" "1987-11-24" "1987-11-24" "1987-11-24"
##  [3956] "1987-11-24" "1987-11-24" "1987-11-24" "1987-11-24" "1987-11-24"
##  [3961] "1987-11-24" "1987-11-24" "1987-11-24" "1987-11-24" "1987-11-24"
##  [3966] "1987-11-24" "1987-11-24" "1987-11-24" "1987-11-24" "1987-11-24"
##  [3971] "1987-11-24" "1987-11-24" "1987-11-24" "1974-07-07" "1974-07-07"
##  [3976] "1974-07-07" "1974-07-07" "1974-07-07" "1974-07-07" "1987-09-04"
##  [3981] "1987-09-04" "1987-09-04" "1987-09-04" "1987-09-04" "1987-09-04"
##  [3986] "1987-09-04" "1987-09-04" "1987-09-04" "1987-09-04" "1987-09-04"
##  [3991] "1975-08-08" "1975-08-08" "1975-08-08" "1975-08-08" "1975-08-08"
##  [3996] "1975-08-08" "1975-08-08" "1975-08-08" "1975-08-08" "1975-08-08"
##  [4001] "1975-08-08" "1975-08-08" "1987-11-04" "1987-11-04" "1987-11-04"
##  [4006] "1987-11-04" "1987-11-04" "1987-11-04" "1987-11-04" "1987-11-04"
##  [4011] "1987-11-04" "1987-11-04" "1984-11-22" "1984-11-22" "1984-11-22"
##  [4016] "1984-11-22" "1984-11-22" "1984-11-22" "1989-05-09" "1989-05-09"
##  [4021] "1989-05-09" "1971-01-17" "1971-01-17" "1982-02-03" "1982-02-03"
##  [4026] "1982-02-03" "1982-02-03" "1982-02-03" "1982-02-03" "1982-02-03"
##  [4031] "1982-02-03" "1982-02-03" "1982-02-03" "1982-02-03" "1982-02-03"
##  [4036] "1982-02-03" "1982-02-03" "1982-09-19" "1982-09-19" "1982-09-19"
##  [4041] "1982-09-19" "1982-09-19" "1982-09-19" "1983-03-29" "1983-03-29"
##  [4046] "1983-03-29" "1983-03-29" "1983-03-29" "1988-03-07" "1988-03-07"
##  [4051] "1988-03-07" "1988-03-07" "1988-03-07" "1988-03-07" "1988-03-07"
##  [4056] "1988-03-07" "1988-03-07" "1988-03-07" "1988-03-07" "1988-03-07"
##  [4061] "1988-03-07" "1988-03-07" "1988-03-07" "1992-07-23" "1992-07-23"
##  [4066] "1992-07-23" "1992-07-23" "1980-08-27" "1980-08-27" "1980-08-27"
##  [4071] "1980-08-27" "1980-08-27" "1980-08-27" "1980-08-27" "1980-08-27"
##  [4076] "1980-08-27" "1980-08-27" "1992-09-08" "1992-09-08" "1992-09-08"
##  [4081] "1992-09-08" "1992-09-08" "1992-09-08" "1992-09-08" "1992-09-08"
##  [4086] "1992-09-08" "1992-09-08" "1992-09-08" "1982-08-26" "1982-08-26"
##  [4091] "1982-08-26" "1982-08-26" "1982-08-26" "1982-08-26" "1982-08-26"
##  [4096] "1982-08-26" "1982-08-26" "1982-08-26" "1982-08-26" "1982-08-26"
##  [4101] "1982-08-26" "1982-08-26" "1982-08-26" "1982-08-26" "1982-08-26"
##  [4106] "1982-08-26" "1982-08-26" "1982-08-26" "1982-08-26" "1982-08-26"
##  [4111] "1982-08-26" "1982-08-26" "1981-11-24" "1981-11-24" "1981-11-24"
##  [4116] "1981-11-24" "1981-11-24" "1981-11-24" "1989-02-05" "1989-02-05"
##  [4121] "1989-02-05" "1983-08-14" "1983-08-14" "1983-08-14" "1983-08-14"
##  [4126] "1983-08-14" "1972-11-21" "1972-11-21" "1972-11-21" "1972-11-21"
##  [4131] "1972-11-21" "1972-11-21" "1972-11-21" "1972-11-21" "1973-09-25"
##  [4136] "1973-09-25" "1988-06-28" "1988-06-28" "1988-06-28" "1988-06-28"
##  [4141] "1988-06-28" "1973-05-04" "1973-05-04" "1973-05-04" "1973-05-04"
##  [4146] "1973-05-04" "1973-05-04" "1973-05-04" "1973-05-04" "1973-05-04"
##  [4151] "1973-05-04" "1973-05-04" "1973-05-04" "1973-05-04" "1973-05-04"
##  [4156] "1970-11-24" "1970-11-24" "1990-06-03" "1990-06-03" "1990-06-03"
##  [4161] "1990-06-03" "1990-06-03" "1990-06-03" "1990-06-03" "1990-06-03"
##  [4166] "1990-06-03" "1990-06-03" "1990-06-03" "1990-06-03" "1990-06-03"
##  [4171] "1990-06-03" "1990-06-03" "1990-06-03" "1990-06-03" "1990-06-03"
##  [4176] "1990-06-03" "1977-10-28" "1977-10-28" "1977-10-28" "1977-10-28"
##  [4181] "1977-10-28" "1977-10-28" "1977-10-28" "1977-10-28" "1977-10-28"
##  [4186] "1977-10-28" "1977-10-28" "1977-03-23" "1977-03-23" "1977-03-23"
##  [4191] "1977-03-23" "1977-03-23" "1984-07-19" "1984-07-19" "1984-07-19"
##  [4196] "1984-07-19" "1984-07-19" "1984-07-19" "1984-07-19" "1984-07-19"
##  [4201] "1984-07-19" "1976-08-22" "1976-08-22" "1976-08-22" "1989-03-21"
##  [4206] "1989-03-21" "1989-03-21" "1989-03-21" "1989-03-21" "1989-03-21"
##  [4211] "1989-03-21" "1989-03-21" "1989-03-21" "1984-05-17" "1984-05-17"
##  [4216] "1984-05-17" "1984-05-17" "1984-05-17" "1984-05-17" "1984-05-17"
##  [4221] "1970-11-06" "1970-11-06" "1970-11-06" "1970-11-06" "1970-11-06"
##  [4226] "1981-07-09" "1981-07-09" "1981-07-09" "1981-07-09" "1981-07-09"
##  [4231] "1981-07-09" "1981-07-09" "1981-07-09" "1981-07-09" "1981-07-09"
##  [4236] "1981-07-09" "1979-05-20" "1979-05-20" "1979-05-20" "1979-05-20"
##  [4241] "1979-05-20" "1979-05-20" "1979-05-20" "1979-05-20" "1979-05-20"
##  [4246] "1979-05-20" "1979-05-20" "1992-09-20" "1992-09-20" "1992-09-20"
##  [4251] "1992-09-20" "1970-02-18" "1970-02-18" "1970-02-18" "1970-02-18"
##  [4256] "1970-02-18" "1970-02-18" "1970-02-18" "1970-02-18" "1970-02-18"
##  [4261] "1970-02-18" "1970-02-18" "1989-03-25" "1989-03-25" "1989-03-25"
##  [4266] "1989-03-25" "1989-03-25" "1989-03-25" "1970-09-15" "1970-09-15"
##  [4271] "1970-09-15" "1970-09-15" "1970-09-15" "1970-09-15" "1982-10-03"
##  [4276] "1982-10-03" "1982-10-03" "1982-10-03" "1982-10-03" "1982-10-03"
##  [4281] "1982-10-03" "1983-12-21" "1983-12-21" "1983-12-21" "1983-12-21"
##  [4286] "1983-12-21" "1983-12-21" "1983-12-21" "1983-12-21" "1983-12-21"
##  [4291] "1983-12-21" "1983-12-21" "1983-12-21" "1983-12-21" "1983-12-21"
##  [4296] "1983-12-21" "1971-01-08" "1971-01-08" "1971-01-08" "1971-01-08"
##  [4301] "1971-01-08" "1971-01-08" "1971-01-08" "1971-01-08" "1971-01-08"
##  [4306] "1971-01-08" "1971-01-08" "1971-01-08" "1971-01-08" "1992-05-24"
##  [4311] "1992-05-24" "1992-05-24" "1992-05-24" "1992-05-24" "1992-05-24"
##  [4316] "1992-05-24" "1992-05-24" "1992-05-24" "1992-05-24" "1992-05-24"
##  [4321] "1992-05-24" "1971-10-26" "1971-10-26" "1971-10-26" "1971-10-26"
##  [4326] "1971-10-26" "1971-10-26" "1971-10-26" "1971-10-26" "1971-10-26"
##  [4331] "1971-10-26" "1978-09-17" "1978-09-17" "1978-09-17" "1978-09-17"
##  [4336] "1978-09-17" "1978-09-17" "1978-09-17" "1978-09-17" "1978-09-17"
##  [4341] "1979-03-01" "1979-03-01" "1979-03-01" "1991-12-10" "1991-12-10"
##  [4346] "1991-12-10" "1986-12-02" "1986-12-02" "1986-12-02" "1986-12-02"
##  [4351] "1986-12-02" "1986-12-02" "1986-12-02" "1986-12-02" "1986-12-02"
##  [4356] "1986-12-02" "1986-12-02" "1987-05-18" "1987-05-18" "1987-05-18"
##  [4361] "1987-05-18" "1987-05-18" "1987-05-18" "1987-05-18" "1987-05-18"
##  [4366] "1987-05-18" "1987-05-18" "1987-05-18" "1987-05-18" "1987-05-18"
##  [4371] "1987-05-18" "1987-05-18" "1987-05-18" "1971-07-11" "1971-07-11"
##  [4376] "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11"
##  [4381] "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11"
##  [4386] "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11"
##  [4391] "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11" "1985-05-20"
##  [4396] "1985-05-20" "1985-05-20" "1985-05-20" "1985-05-20" "1985-05-20"
##  [4401] "1985-05-20" "1981-05-13" "1981-05-13" "1973-04-07" "1973-04-07"
##  [4406] "1985-04-01" "1985-04-01" "1985-04-01" "1985-04-01" "1985-04-01"
##  [4411] "1985-04-01" "1985-04-01" "1985-04-01" "1985-04-01" "1985-04-01"
##  [4416] "1971-06-07" "1971-06-07" "1971-06-07" "1971-06-07" "1971-06-07"
##  [4421] "1990-03-09" "1990-03-09" "1990-03-09" "1990-03-09" "1990-03-09"
##  [4426] "1987-05-09" "1987-05-09" "1987-05-09" "1987-05-09" "1987-05-09"
##  [4431] "1987-05-09" "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12"
##  [4436] "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12"
##  [4441] "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12" "1981-02-02"
##  [4446] "1981-02-02" "1981-02-02" "1981-02-02" "1981-02-02" "1981-02-02"
##  [4451] "1981-02-02" "1981-02-02" "1991-06-19" "1991-06-19" "1991-06-19"
##  [4456] "1991-06-19" "1991-06-19" "1991-06-19" "1991-06-19" "1991-06-19"
##  [4461] "1991-06-19" "1991-06-19" "1991-06-19" "1991-06-19" "1991-06-19"
##  [4466] "1991-06-19" "1991-06-19" "1992-04-06" "1992-04-06" "1992-04-06"
##  [4471] "1992-04-06" "1992-04-06" "1992-04-06" "1992-04-06" "1992-04-06"
##  [4476] "1992-04-06" "1992-04-06" "1991-04-20" "1991-04-20" "1991-04-20"
##  [4481] "1991-04-20" "1991-04-20" "1991-04-20" "1991-04-20" "1991-04-20"
##  [4486] "1991-04-20" "1991-04-20" "1991-04-20" "1980-06-08" "1980-06-08"
##  [4491] "1987-10-14" "1987-10-14" "1987-10-14" "1987-10-14" "1987-10-14"
##  [4496] "1987-10-14" "1987-10-14" "1987-10-14" "1987-10-14" "1991-12-07"
##  [4501] "1991-12-07" "1991-12-07" "1991-12-07" "1991-12-07" "1985-02-15"
##  [4506] "1985-02-15" "1991-07-15" "1991-07-15" "1991-07-15" "1991-07-15"
##  [4511] "1991-07-15" "1991-07-15" "1991-07-15" "1991-07-15" "1991-07-15"
##  [4516] "1991-07-15" "1991-07-15" "1991-07-15" "1991-07-15" "1991-07-15"
##  [4521] "1991-07-15" "1991-07-15" "1991-07-15" "1991-07-15" "1991-07-15"
##  [4526] "1991-07-15" "1991-07-15" "1991-07-15" "1991-07-15" "1991-07-15"
##  [4531] "1991-07-15" "1970-01-29" "1970-01-29" "1970-01-29" "1970-01-29"
##  [4536] "1970-01-29" "1970-01-29" "1970-01-29" "1970-01-29" "1970-01-29"
##  [4541] "1970-01-29" "1970-01-29" "1970-01-29" "1970-01-29" "1970-01-29"
##  [4546] "1970-01-29" "1976-07-20" "1976-07-20" "1976-07-20" "1976-07-20"
##  [4551] "1976-07-20" "1976-07-20" "1976-07-20" "1976-07-20" "1976-07-20"
##  [4556] "1976-07-20" "1976-07-20" "1976-07-20" "1976-07-20" "1976-07-20"
##  [4561] "1976-07-20" "1976-05-19" "1976-05-19" "1976-05-19" "1976-05-19"
##  [4566] "1976-05-19" "1976-05-19" "1976-05-19" "1971-12-22" "1971-12-22"
##  [4571] "1971-12-22" "1971-12-22" "1971-12-22" "1971-12-22" "1971-12-22"
##  [4576] "1971-12-22" "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27"
##  [4581] "1988-12-27" "1988-12-27" "1988-12-27" "1992-12-24" "1992-12-24"
##  [4586] "1992-12-24" "1992-12-24" "1992-12-24" "1992-12-24" "1992-12-24"
##  [4591] "1992-12-24" "1980-01-05" "1980-01-05" "1979-09-10" "1979-09-10"
##  [4596] "1979-09-10" "1979-09-10" "1981-08-23" "1981-08-23" "1981-08-23"
##  [4601] "1992-05-19" "1992-05-19" "1992-05-19" "1992-05-19" "1992-05-19"
##  [4606] "1992-05-19" "1992-05-19" "1992-05-19" "1992-05-19" "1992-05-19"
##  [4611] "1992-05-19" "1992-05-19" "1992-05-19" "1992-05-19" "1992-05-19"
##  [4616] "1992-05-19" "1992-05-19" "1992-05-19" "1992-05-19" "1992-05-19"
##  [4621] "1992-05-19" "1987-01-17" "1987-01-17" "1987-01-17" "1987-01-17"
##  [4626] "1987-01-17" "1987-01-17" "1989-01-01" "1989-01-01" "1989-01-01"
##  [4631] "1989-01-01" "1989-01-01" "1989-01-01" "1989-01-01" "1989-01-01"
##  [4636] "1989-01-01" "1989-01-01" "1989-01-01" "1989-04-19" "1989-04-19"
##  [4641] "1989-04-19" "1989-04-19" "1989-04-19" "1989-04-19" "1989-04-19"
##  [4646] "1989-04-19" "1989-04-19" "1989-04-19" "1989-04-19" "1989-04-19"
##  [4651] "1989-04-19" "1989-04-19" "1989-04-19" "1989-04-19" "1981-08-05"
##  [4656] "1981-08-05" "1981-08-05" "1981-08-05" "1981-08-05" "1981-08-05"
##  [4661] "1981-08-05" "1981-08-05" "1981-08-05" "1981-08-05" "1985-02-26"
##  [4666] "1985-02-26" "1985-02-26" "1985-02-26" "1985-02-26" "1985-02-26"
##  [4671] "1985-02-26" "1985-02-26" "1985-02-26" "1985-02-26" "1985-02-26"
##  [4676] "1985-02-26" "1985-02-26" "1985-02-26" "1985-02-26" "1980-04-23"
##  [4681] "1980-04-23" "1980-04-23" "1980-04-23" "1980-04-23" "1988-09-25"
##  [4686] "1988-09-25" "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17"
##  [4691] "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17"
##  [4696] "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17"
##  [4701] "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17"
##  [4706] "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17"
##  [4711] "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17" "1981-09-17"
##  [4716] "1981-09-17" "1980-08-22" "1980-08-22" "1980-08-22" "1980-08-22"
##  [4721] "1980-08-22" "1980-08-22" "1980-08-22" "1980-08-22" "1980-08-22"
##  [4726] "1980-08-22" "1980-08-22" "1980-08-22" "1980-08-22" "1980-08-22"
##  [4731] "1974-11-22" "1974-11-22" "1974-11-22" "1973-03-09" "1973-03-09"
##  [4736] "1975-05-13" "1975-05-13" "1975-05-13" "1976-11-24" "1976-11-24"
##  [4741] "1976-11-24" "1976-11-24" "1976-11-24" "1976-11-24" "1976-11-24"
##  [4746] "1976-11-24" "1986-01-16" "1986-01-16" "1986-01-16" "1986-01-16"
##  [4751] "1986-01-16" "1986-01-16" "1986-01-16" "1992-05-18" "1992-05-18"
##  [4756] "1992-05-18" "1992-05-18" "1992-05-18" "1992-05-18" "1992-05-18"
##  [4761] "1992-05-18" "1992-05-18" "1992-05-18" "1992-05-18" "1992-05-18"
##  [4766] "1992-05-18" "1992-05-18" "1992-05-18" "1974-10-29" "1974-10-29"
##  [4771] "1974-10-29" "1974-10-29" "1974-10-29" "1974-10-29" "1974-10-29"
##  [4776] "1974-10-29" "1974-10-29" "1974-10-29" "1983-07-22" "1983-07-22"
##  [4781] "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22"
##  [4786] "1983-07-22" "1982-03-09" "1982-03-09" "1982-03-09" "1970-10-02"
##  [4791] "1970-10-02" "1970-10-02" "1970-10-02" "1970-10-02" "1970-10-02"
##  [4796] "1970-10-02" "1970-10-02" "1970-10-02" "1970-10-02" "1970-10-02"
##  [4801] "1970-10-02" "1970-10-02" "1970-10-02" "1970-10-02" "1970-10-02"
##  [4806] "1970-10-02" "1970-10-02" "1970-10-02" "1986-08-19" "1986-08-19"
##  [4811] "1975-12-25" "1975-12-25" "1975-12-25" "1970-09-03" "1970-09-03"
##  [4816] "1970-09-03" "1970-09-03" "1970-09-03" "1970-09-03" "1970-09-03"
##  [4821] "1970-09-03" "1970-09-03" "1970-09-03" "1988-05-22" "1988-05-22"
##  [4826] "1988-05-22" "1988-05-22" "1988-05-22" "1988-05-22" "1988-05-22"
##  [4831] "1988-05-22" "1988-05-22" "1988-05-22" "1988-05-22" "1988-05-22"
##  [4836] "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10"
##  [4841] "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10"
##  [4846] "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10"
##  [4851] "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10"
##  [4856] "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10" "1982-06-28"
##  [4861] "1982-06-28" "1973-02-19" "1973-02-19" "1973-02-19" "1973-02-19"
##  [4866] "1973-02-19" "1973-02-19" "1973-02-19" "1973-02-19" "1973-02-19"
##  [4871] "1973-02-19" "1973-02-19" "1978-02-05" "1978-02-05" "1978-02-05"
##  [4876] "1978-02-05" "1978-02-05" "1978-02-05" "1972-07-22" "1972-07-22"
##  [4881] "1972-07-22" "1972-07-22" "1972-07-22" "1972-07-22" "1972-07-22"
##  [4886] "1974-12-28" "1974-12-28" "1984-05-26" "1984-05-26" "1984-05-26"
##  [4891] "1984-05-26" "1984-05-26" "1984-05-26" "1984-05-26" "1984-05-26"
##  [4896] "1985-12-10" "1985-12-10" "1985-12-10" "1985-12-10" "1985-12-10"
##  [4901] "1985-12-10" "1985-12-10" "1985-12-10" "1985-12-10" "1977-04-28"
##  [4906] "1977-04-28" "1977-04-28" "1977-04-28" "1977-04-28" "1977-04-28"
##  [4911] "1977-04-28" "1977-04-28" "1977-04-28" "1977-04-28" "1977-04-28"
##  [4916] "1977-04-28" "1977-04-28" "1977-04-28" "1977-04-28" "1977-04-28"
##  [4921] "1977-04-28" "1977-04-28" "1977-04-28" "1977-04-28" "1977-04-28"
##  [4926] "1977-04-28" "1977-04-28" "1977-04-28" "1989-04-23" "1989-04-23"
##  [4931] "1989-04-23" "1989-04-23" "1989-04-23" "1990-08-07" "1990-08-07"
##  [4936] "1990-08-07" "1990-08-07" "1990-08-07" "1990-08-07" "1990-08-07"
##  [4941] "1990-08-07" "1990-08-07" "1983-03-10" "1983-03-10" "1983-03-10"
##  [4946] "1983-03-10" "1983-03-10" "1983-03-10" "1983-03-10" "1983-03-10"
##  [4951] "1977-01-21" "1977-01-21" "1977-01-21" "1977-01-21" "1977-01-21"
##  [4956] "1971-03-08" "1971-03-08" "1971-03-08" "1971-03-08" "1971-03-08"
##  [4961] "1971-03-08" "1971-03-08" "1971-03-08" "1971-03-08" "1971-03-08"
##  [4966] "1971-03-08" "1971-03-08" "1971-03-08" "1972-03-13" "1972-03-13"
##  [4971] "1972-03-13" "1972-03-13" "1972-03-13" "1972-03-13" "1972-03-13"
##  [4976] "1976-02-21" "1976-02-21" "1976-02-21" "1976-02-21" "1976-02-21"
##  [4981] "1972-06-02" "1972-06-02" "1972-06-02" "1972-06-02" "1972-06-02"
##  [4986] "1972-06-02" "1972-06-02" "1972-06-02" "1972-06-02" "1972-06-02"
##  [4991] "1972-06-02" "1981-05-29" "1981-05-29" "1981-05-29" "1981-05-29"
##  [4996] "1981-05-29" "1981-05-29" "1981-05-29" "1981-05-29" "1981-05-29"
##  [5001] "1981-05-29" "1973-10-11" "1973-10-11" "1973-10-11" "1973-10-11"
##  [5006] "1973-10-11" "1986-10-13" "1986-10-13" "1986-10-13" "1986-10-13"
##  [5011] "1986-10-13" "1986-10-13" "1974-07-20" "1974-07-20" "1974-07-20"
##  [5016] "1974-07-20" "1974-07-20" "1974-07-20" "1974-07-20" "1977-04-11"
##  [5021] "1977-04-11" "1977-04-11" "1977-04-11" "1977-04-11" "1977-04-11"
##  [5026] "1977-04-11" "1977-04-11" "1977-04-11" "1977-04-11" "1977-04-11"
##  [5031] "1977-04-11" "1977-04-11" "1983-03-08" "1983-03-08" "1983-03-08"
##  [5036] "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08"
##  [5041] "1983-03-08" "1983-03-08" "1983-03-08" "1979-07-12" "1979-07-12"
##  [5046] "1979-07-12" "1979-07-12" "1979-07-12" "1979-07-12" "1979-07-12"
##  [5051] "1979-07-12" "1979-07-12" "1979-07-12" "1979-07-12" "1979-07-12"
##  [5056] "1979-07-12" "1988-03-02" "1988-03-02" "1988-03-02" "1988-03-02"
##  [5061] "1988-03-02" "1988-03-02" "1988-03-02" "1988-03-02" "1988-03-02"
##  [5066] "1988-03-02" "1988-03-02" "1988-03-02" "1988-03-02" "1988-03-02"
##  [5071] "1978-05-29" "1978-05-29" "1978-05-29" "1978-05-29" "1978-05-29"
##  [5076] "1979-11-12" "1979-11-12" "1979-11-12" "1984-08-09" "1984-08-09"
##  [5081] "1984-08-09" "1984-08-09" "1984-08-09" "1984-08-09" "1981-12-20"
##  [5086] "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20"
##  [5091] "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20"
##  [5096] "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20"
##  [5101] "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20"
##  [5106] "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20" "1989-07-25"
##  [5111] "1989-07-25" "1989-07-25" "1989-07-25" "1989-07-25" "1989-07-25"
##  [5116] "1989-07-25" "1989-07-25" "1989-07-25" "1983-06-04" "1983-06-04"
##  [5121] "1983-06-04" "1983-06-04" "1983-06-04" "1979-06-29" "1979-06-29"
##  [5126] "1979-06-29" "1979-06-29" "1979-06-29" "1982-02-08" "1982-02-08"
##  [5131] "1982-02-08" "1982-02-08" "1982-02-08" "1982-02-08" "1982-02-08"
##  [5136] "1981-09-08" "1981-09-08" "1981-09-08" "1981-09-08" "1981-09-08"
##  [5141] "1981-09-08" "1987-09-03" "1987-09-03" "1987-09-03" "1987-09-03"
##  [5146] "1987-09-03" "1987-09-03" "1987-09-03" "1987-09-03" "1987-09-03"
##  [5151] "1972-03-11" "1972-03-11" "1972-03-11" "1972-03-11" "1972-03-11"
##  [5156] "1972-03-11" "1972-03-11" "1972-03-11" "1972-03-11" "1972-03-11"
##  [5161] "1972-03-11" "1972-03-11" "1972-03-11" "1972-03-11" "1972-03-11"
##  [5166] "1972-03-11" "1972-03-11" "1972-03-11" "1972-03-11" "1972-03-11"
##  [5171] "1982-07-24" "1982-07-24" "1982-07-24" "1982-07-24" "1982-07-24"
##  [5176] "1982-07-24" "1982-07-24" "1982-07-24" "1982-07-24" "1982-07-24"
##  [5181] "1982-07-24" "1982-07-24" "1982-07-24" "1982-07-24" "1982-07-24"
##  [5186] "1982-07-24" "1982-07-24" "1982-07-24" "1982-07-24" "1982-07-24"
##  [5191] "1982-07-24" "1982-07-24" "1982-07-24" "1982-07-24" "1982-07-24"
##  [5196] "1982-07-24" "1992-03-19" "1992-03-19" "1992-03-19" "1992-03-19"
##  [5201] "1992-03-19" "1992-03-19" "1979-04-07" "1979-04-07" "1979-04-07"
##  [5206] "1979-04-07" "1979-04-07" "1979-04-07" "1979-04-07" "1979-04-07"
##  [5211] "1979-04-07" "1979-04-07" "1979-04-07" "1979-04-07" "1979-04-07"
##  [5216] "1979-04-07" "1979-04-07" "1979-04-07" "1979-04-07" "1979-04-07"
##  [5221] "1979-04-07" "1979-04-07" "1975-02-09" "1975-02-09" "1975-02-09"
##  [5226] "1975-02-09" "1975-02-09" "1975-02-09" "1975-02-09" "1975-02-09"
##  [5231] "1975-02-09" "1975-02-09" "1979-04-27" "1979-04-27" "1979-04-27"
##  [5236] "1980-02-13" "1980-02-13" "1980-02-13" "1980-02-13" "1980-02-13"
##  [5241] "1980-02-13" "1980-02-13" "1980-02-13" "1980-02-13" "1980-02-13"
##  [5246] "1980-02-13" "1980-02-13" "1980-02-13" "1980-02-13" "1985-06-07"
##  [5251] "1985-06-07" "1985-06-07" "1985-06-07" "1985-06-07" "1985-06-07"
##  [5256] "1985-06-07" "1985-06-07" "1985-06-07" "1985-06-07" "1985-06-07"
##  [5261] "1985-06-07" "1985-06-07" "1985-06-07" "1985-06-07" "1985-06-07"
##  [5266] "1985-06-07" "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29"
##  [5271] "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29"
##  [5276] "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29"
##  [5281] "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29"
##  [5286] "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29"
##  [5291] "1990-02-07" "1990-02-07" "1990-02-07" "1990-02-07" "1990-02-07"
##  [5296] "1990-02-07" "1990-02-07" "1990-02-07" "1990-02-07" "1990-02-07"
##  [5301] "1990-02-07" "1989-12-21" "1989-12-21" "1989-12-21" "1989-12-21"
##  [5306] "1989-12-21" "1989-12-21" "1988-08-10" "1988-08-10" "1988-08-10"
##  [5311] "1988-08-10" "1988-08-10" "1986-12-07" "1986-12-07" "1986-12-07"
##  [5316] "1986-12-07" "1981-10-27" "1981-10-27" "1981-10-27" "1981-10-27"
##  [5321] "1981-10-27" "1981-10-27" "1981-10-27" "1981-10-27" "1981-10-27"
##  [5326] "1981-10-27" "1981-10-27" "1981-10-27" "1981-10-27" "1984-12-29"
##  [5331] "1984-12-29" "1984-12-29" "1984-12-29" "1984-12-29" "1984-12-29"
##  [5336] "1984-12-29" "1985-07-25" "1985-07-25" "1985-07-25" "1991-09-25"
##  [5341] "1991-09-25" "1991-09-25" "1991-09-25" "1991-09-25" "1991-09-25"
##  [5346] "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07"
##  [5351] "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07"
##  [5356] "1981-02-07" "1981-02-07" "1971-09-11" "1971-09-11" "1971-09-11"
##  [5361] "1971-09-11" "1971-09-11" "1971-09-11" "1971-09-11" "1971-09-11"
##  [5366] "1971-09-11" "1971-09-11" "1971-09-11" "1971-09-11" "1971-09-11"
##  [5371] "1989-10-08" "1989-10-08" "1989-10-08" "1989-10-08" "1989-10-08"
##  [5376] "1989-10-08" "1989-10-08" "1989-10-08" "1989-10-08" "1989-10-08"
##  [5381] "1989-10-08" "1989-10-08" "1992-02-15" "1992-02-15" "1992-02-15"
##  [5386] "1992-02-15" "1992-02-15" "1992-02-15" "1992-12-04" "1992-12-04"
##  [5391] "1990-12-15" "1990-12-15" "1990-12-15" "1977-03-17" "1977-03-17"
##  [5396] "1977-03-17" "1977-03-17" "1977-03-17" "1977-03-17" "1977-03-17"
##  [5401] "1977-03-17" "1977-03-17" "1977-03-17" "1977-03-17" "1977-03-17"
##  [5406] "1977-03-17" "1977-03-17" "1977-03-17" "1977-03-17" "1977-03-17"
##  [5411] "1977-03-17" "1977-03-17" "1977-03-17" "1971-07-26" "1971-07-26"
##  [5416] "1971-07-26" "1971-07-26" "1971-07-26" "1971-07-26" "1971-07-26"
##  [5421] "1992-01-21" "1992-01-21" "1992-01-21" "1992-01-21" "1970-05-10"
##  [5426] "1970-05-10" "1970-05-10" "1970-05-10" "1970-05-10" "1970-05-10"
##  [5431] "1970-05-10" "1984-10-16" "1984-10-16" "1984-10-16" "1984-10-16"
##  [5436] "1984-10-16" "1984-10-16" "1984-10-16" "1984-10-16" "1984-10-16"
##  [5441] "1984-10-16" "1970-08-24" "1970-08-24" "1970-08-24" "1970-08-24"
##  [5446] "1970-08-24" "1970-08-24" "1970-08-24" "1970-08-24" "1970-08-24"
##  [5451] "1970-08-24" "1970-08-24" "1970-08-24" "1970-08-24" "1970-08-24"
##  [5456] "1970-08-24" "1970-08-24" "1970-08-24" "1970-08-24" "1970-08-24"
##  [5461] "1970-08-24" "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20"
##  [5466] "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20"
##  [5471] "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20"
##  [5476] "1972-03-20" "1972-03-20" "1972-03-20" "1976-05-07" "1976-05-07"
##  [5481] "1976-05-07" "1976-05-07" "1976-05-07" "1973-12-06" "1973-12-06"
##  [5486] "1973-12-06" "1973-12-06" "1973-12-06" "1973-12-06" "1973-12-06"
##  [5491] "1973-12-06" "1979-10-04" "1979-10-04" "1979-10-04" "1979-10-04"
##  [5496] "1979-10-04" "1979-10-04" "1979-10-04" "1979-10-04" "1979-10-04"
##  [5501] "1979-10-04" "1979-10-04" "1979-10-04" "1979-10-04" "1979-10-04"
##  [5506] "1979-10-04" "1979-10-04" "1979-10-04" "1979-10-04" "1988-12-05"
##  [5511] "1988-12-05" "1988-12-05" "1988-12-05" "1980-04-15" "1980-04-15"
##  [5516] "1980-04-15" "1980-04-15" "1992-08-16" "1992-08-16" "1992-08-16"
##  [5521] "1992-08-16" "1992-08-16" "1992-08-16" "1992-08-16" "1992-08-16"
##  [5526] "1992-08-16" "1992-08-16" "1985-12-06" "1985-12-06" "1985-12-06"
##  [5531] "1985-12-06" "1974-11-18" "1974-11-18" "1974-11-18" "1974-11-18"
##  [5536] "1974-11-18" "1974-11-18" "1974-11-18" "1974-11-18" "1974-11-18"
##  [5541] "1978-06-23" "1978-06-23" "1978-06-23" "1978-06-23" "1978-06-23"
##  [5546] "1978-06-23" "1978-06-23" "1978-06-23" "1978-06-23" "1978-06-23"
##  [5551] "1978-06-23" "1976-10-10" "1976-10-10" "1976-10-10" "1976-10-10"
##  [5556] "1976-10-10" "1976-10-10" "1976-10-10" "1976-10-10" "1976-10-10"
##  [5561] "1976-10-10" "1976-10-10" "1976-10-10" "1987-07-11" "1987-07-11"
##  [5566] "1987-07-11" "1987-07-11" "1987-07-11" "1987-07-11" "1987-07-11"
##  [5571] "1987-07-11" "1987-07-11" "1987-07-11" "1971-06-17" "1971-06-17"
##  [5576] "1970-12-13" "1970-12-13" "1970-12-13" "1970-12-13" "1970-12-13"
##  [5581] "1971-06-07" "1971-06-07" "1971-06-07" "1971-06-07" "1971-06-07"
##  [5586] "1971-06-07" "1971-06-07" "1971-06-07" "1971-06-07" "1971-06-07"
##  [5591] "1971-06-07" "1971-06-07" "1971-06-07" "1971-06-07" "1974-12-18"
##  [5596] "1974-12-18" "1985-08-23" "1985-08-23" "1973-10-01" "1973-10-01"
##  [5601] "1973-10-01" "1973-10-01" "1973-10-01" "1973-10-01" "1973-10-01"
##  [5606] "1973-10-01" "1973-10-01" "1973-10-01" "1973-10-01" "1973-10-01"
##  [5611] "1973-10-01" "1973-10-01" "1973-10-01" "1973-10-01" "1973-10-01"
##  [5616] "1973-10-01" "1973-10-01" "1973-10-01" "1973-10-01" "1973-10-01"
##  [5621] "1973-10-01" "1973-10-01" "1992-07-12" "1992-07-12" "1988-11-29"
##  [5626] "1988-11-29" "1988-11-29" "1988-11-29" "1988-11-29" "1982-12-21"
##  [5631] "1982-12-21" "1982-12-21" "1982-12-21" "1982-12-21" "1990-11-17"
##  [5636] "1990-11-17" "1990-11-17" "1990-11-17" "1990-11-17" "1990-11-17"
##  [5641] "1990-11-17" "1990-11-17" "1990-11-17" "1986-03-25" "1986-03-25"
##  [5646] "1986-03-25" "1972-02-02" "1972-02-02" "1972-02-02" "1972-02-02"
##  [5651] "1972-02-02" "1974-06-05" "1974-06-05" "1974-06-05" "1974-06-05"
##  [5656] "1974-06-05" "1974-06-05" "1972-12-18" "1972-12-18" "1972-12-18"
##  [5661] "1972-12-18" "1972-12-18" "1972-12-18" "1972-12-18" "1972-12-18"
##  [5666] "1982-11-12" "1982-11-12" "1982-11-12" "1982-11-12" "1982-11-12"
##  [5671] "1982-11-12" "1977-12-24" "1977-12-24" "1979-06-20" "1979-06-20"
##  [5676] "1979-06-20" "1979-06-20" "1979-06-20" "1982-04-03" "1982-04-03"
##  [5681] "1982-04-03" "1982-04-03" "1982-04-03" "1982-04-03" "1985-02-13"
##  [5686] "1985-02-13" "1985-02-13" "1985-02-13" "1985-02-13" "1985-02-13"
##  [5691] "1985-02-13" "1985-02-13" "1985-02-13" "1985-02-13" "1985-02-13"
##  [5696] "1985-02-13" "1985-02-13" "1985-05-23" "1985-05-23" "1985-05-23"
##  [5701] "1985-05-23" "1985-05-23" "1985-05-23" "1985-05-23" "1985-05-23"
##  [5706] "1985-05-23" "1985-05-23" "1985-05-23" "1985-05-23" "1985-05-23"
##  [5711] "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12"
##  [5716] "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12"
##  [5721] "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12"
##  [5726] "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12"
##  [5731] "1973-07-12" "1973-07-12" "1975-11-27" "1975-11-27" "1975-11-27"
##  [5736] "1975-11-27" "1975-11-27" "1975-11-27" "1975-11-27" "1975-11-27"
##  [5741] "1987-11-05" "1987-11-05" "1987-11-05" "1987-11-05" "1987-11-05"
##  [5746] "1989-06-19" "1989-06-19" "1989-06-19" "1989-06-19" "1989-06-19"
##  [5751] "1989-06-19" "1989-06-19" "1989-06-19" "1989-06-19" "1989-06-19"
##  [5756] "1989-06-19" "1989-06-19" "1989-06-19" "1989-06-19" "1989-06-19"
##  [5761] "1989-06-19" "1989-06-19" "1973-03-27" "1973-03-27" "1973-03-27"
##  [5766] "1973-03-27" "1973-03-27" "1973-03-27" "1973-03-27" "1972-10-25"
##  [5771] "1972-10-25" "1972-10-25" "1972-10-25" "1972-10-25" "1972-10-25"
##  [5776] "1972-10-25" "1972-10-25" "1972-10-25" "1972-10-25" "1972-10-25"
##  [5781] "1972-10-25" "1972-10-25" "1972-10-25" "1972-10-25" "1972-10-25"
##  [5786] "1972-10-25" "1972-10-25" "1972-10-25" "1988-01-27" "1988-01-27"
##  [5791] "1988-01-27" "1984-07-14" "1984-07-14" "1984-07-14" "1984-07-14"
##  [5796] "1984-07-14" "1984-07-14" "1984-07-14" "1984-07-14" "1984-07-14"
##  [5801] "1984-07-14" "1984-07-10" "1984-07-10" "1984-07-10" "1984-07-10"
##  [5806] "1984-07-10" "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08"
##  [5811] "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08"
##  [5816] "1990-02-08" "1990-02-08" "1990-02-08" "1990-12-04" "1990-12-04"
##  [5821] "1990-12-04" "1990-12-04" "1990-12-04" "1990-12-04" "1990-12-04"
##  [5826] "1972-10-12" "1972-10-12" "1980-07-24" "1980-07-24" "1980-07-24"
##  [5831] "1980-07-24" "1980-07-24" "1992-07-22" "1992-07-22" "1992-07-22"
##  [5836] "1975-04-17" "1975-04-17" "1975-04-17" "1975-04-17" "1975-04-17"
##  [5841] "1992-01-08" "1992-01-08" "1992-01-08" "1992-01-08" "1992-01-08"
##  [5846] "1992-01-08" "1992-01-08" "1992-01-08" "1992-01-08" "1992-01-08"
##  [5851] "1992-01-08" "1992-01-08" "1971-08-06" "1971-08-06" "1971-08-06"
##  [5856] "1971-08-06" "1971-08-06" "1971-08-06" "1971-08-06" "1971-08-06"
##  [5861] "1974-04-25" "1974-04-25" "1974-04-25" "1974-04-25" "1974-04-25"
##  [5866] "1974-04-25" "1974-04-25" "1974-04-25" "1974-04-25" "1974-04-25"
##  [5871] "1974-04-25" "1974-04-25" "1974-04-25" "1974-04-25" "1974-04-25"
##  [5876] "1974-04-25" "1974-04-25" "1974-04-25" "1974-04-25" "1974-04-25"
##  [5881] "1974-04-25" "1974-04-25" "1974-04-25" "1980-10-17" "1980-10-17"
##  [5886] "1980-10-17" "1980-10-17" "1980-10-17" "1980-10-17" "1980-10-17"
##  [5891] "1980-10-17" "1980-10-17" "1980-10-17" "1980-10-17" "1991-05-05"
##  [5896] "1991-05-05" "1991-05-05" "1991-05-05" "1991-05-05" "1991-05-05"
##  [5901] "1977-01-26" "1977-01-26" "1977-01-26" "1977-01-26" "1977-01-26"
##  [5906] "1977-01-26" "1977-01-26" "1977-01-26" "1977-01-26" "1977-01-26"
##  [5911] "1977-01-26" "1985-06-18" "1985-06-18" "1985-06-18" "1985-06-18"
##  [5916] "1985-06-18" "1985-06-18" "1985-06-18" "1985-06-18" "1985-06-18"
##  [5921] "1985-02-27" "1985-02-27" "1980-12-12" "1980-12-12" "1980-12-12"
##  [5926] "1980-12-12" "1980-12-12" "1980-12-12" "1980-12-12" "1973-02-06"
##  [5931] "1973-02-06" "1973-02-06" "1986-03-09" "1986-03-09" "1986-03-09"
##  [5936] "1986-03-09" "1986-03-09" "1986-03-09" "1986-03-09" "1986-03-09"
##  [5941] "1981-04-03" "1981-04-03" "1981-04-03" "1981-04-03" "1981-04-03"
##  [5946] "1981-04-03" "1981-04-03" "1981-04-03" "1981-04-03" "1981-04-03"
##  [5951] "1981-04-03" "1981-04-03" "1981-04-03" "1981-04-03" "1981-04-03"
##  [5956] "1981-04-03" "1981-04-03" "1981-04-03" "1981-04-03" "1981-04-03"
##  [5961] "1981-04-03" "1981-04-03" "1981-04-03" "1979-07-29" "1979-07-29"
##  [5966] "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29"
##  [5971] "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29"
##  [5976] "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29"
##  [5981] "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29"
##  [5986] "1979-07-29" "1977-04-08" "1977-04-08" "1977-04-08" "1977-04-08"
##  [5991] "1977-04-08" "1977-04-08" "1977-04-08" "1977-04-08" "1977-04-08"
##  [5996] "1977-04-08" "1977-04-08" "1977-04-08" "1977-04-08" "1977-04-08"
##  [6001] "1977-04-08" "1977-04-08" "1977-04-08" "1977-04-08" "1977-04-08"
##  [6006] "1977-04-08" "1977-04-08" "1977-04-08" "1977-04-08" "1977-04-08"
##  [6011] "1985-03-18" "1985-03-18" "1985-03-18" "1985-03-18" "1985-03-18"
##  [6016] "1985-03-18" "1985-03-18" "1985-03-18" "1985-03-18" "1985-03-18"
##  [6021] "1985-03-18" "1979-06-09" "1979-06-09" "1979-06-09" "1979-06-09"
##  [6026] "1979-06-09" "1979-06-09" "1979-06-09" "1979-06-09" "1979-06-09"
##  [6031] "1979-06-09" "1979-06-09" "1979-06-09" "1979-06-09" "1981-04-17"
##  [6036] "1981-04-17" "1981-04-17" "1981-04-17" "1981-04-17" "1981-04-17"
##  [6041] "1981-04-17" "1981-04-17" "1981-04-17" "1981-04-17" "1981-04-17"
##  [6046] "1981-04-17" "1981-04-17" "1981-04-17" "1981-04-17" "1979-07-10"
##  [6051] "1979-07-10" "1989-06-27" "1989-06-27" "1989-06-27" "1989-06-27"
##  [6056] "1989-06-27" "1989-06-27" "1989-06-27" "1989-06-27" "1989-06-27"
##  [6061] "1989-06-27" "1992-06-24" "1992-06-24" "1970-10-12" "1970-10-12"
##  [6066] "1970-10-12" "1970-10-12" "1970-10-12" "1970-10-12" "1980-10-16"
##  [6071] "1980-10-16" "1980-10-16" "1980-10-16" "1980-10-16" "1980-10-16"
##  [6076] "1980-10-16" "1980-10-16" "1980-10-16" "1980-10-16" "1980-10-16"
##  [6081] "1980-10-16" "1980-10-16" "1980-10-16" "1980-10-16" "1980-10-16"
##  [6086] "1980-10-16" "1980-10-16" "1980-10-16" "1980-10-16" "1980-10-16"
##  [6091] "1980-10-16" "1980-10-16" "1980-10-16" "1973-07-12" "1973-07-12"
##  [6096] "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12"
##  [6101] "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12"
##  [6106] "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12" "1973-07-12"
##  [6111] "1973-07-12" "1983-04-11" "1983-04-11" "1989-05-16" "1989-05-16"
##  [6116] "1989-05-16" "1989-05-16" "1989-05-16" "1989-05-16" "1976-07-12"
##  [6121] "1976-07-12" "1976-07-12" "1976-07-12" "1976-07-12" "1976-07-12"
##  [6126] "1976-07-12" "1976-07-12" "1976-07-12" "1976-07-12" "1976-07-12"
##  [6131] "1976-07-12" "1976-07-12" "1976-07-12" "1976-07-12" "1976-07-12"
##  [6136] "1976-07-12" "1976-07-12" "1976-07-12" "1976-07-12" "1976-07-12"
##  [6141] "1976-07-12" "1976-07-12" "1976-07-12" "1990-09-02" "1990-09-02"
##  [6146] "1990-09-02" "1990-09-02" "1990-09-02" "1990-09-02" "1990-09-02"
##  [6151] "1990-09-02" "1990-09-02" "1990-09-02" "1990-09-02" "1990-09-02"
##  [6156] "1974-05-04" "1974-05-04" "1974-05-04" "1974-05-04" "1974-05-04"
##  [6161] "1974-05-04" "1973-10-12" "1973-10-12" "1973-10-12" "1973-10-12"
##  [6166] "1973-10-12" "1973-10-12" "1973-10-12" "1973-10-12" "1973-10-12"
##  [6171] "1973-10-12" "1973-10-12" "1973-10-12" "1983-12-14" "1983-12-14"
##  [6176] "1983-12-14" "1983-12-14" "1983-12-14" "1983-12-14" "1983-12-14"
##  [6181] "1983-12-14" "1983-12-14" "1971-03-11" "1971-03-11" "1971-03-11"
##  [6186] "1971-03-11" "1971-03-11" "1971-03-11" "1991-11-27" "1991-11-27"
##  [6191] "1991-11-27" "1991-11-27" "1991-11-27" "1991-11-27" "1991-11-27"
##  [6196] "1991-11-27" "1991-11-27" "1991-11-27" "1991-11-27" "1991-11-27"
##  [6201] "1991-11-27" "1992-08-10" "1992-08-10" "1992-08-10" "1992-08-10"
##  [6206] "1992-08-10" "1992-08-10" "1992-08-10" "1992-08-10" "1992-08-10"
##  [6211] "1992-08-10" "1992-08-10" "1992-08-10" "1992-08-10" "1983-09-28"
##  [6216] "1983-09-28" "1983-09-28" "1983-09-28" "1983-09-28" "1983-09-28"
##  [6221] "1983-09-28" "1985-10-27" "1985-10-27" "1985-10-27" "1976-08-19"
##  [6226] "1976-08-19" "1976-08-19" "1976-08-19" "1976-08-19" "1976-08-19"
##  [6231] "1988-11-18" "1988-11-18" "1988-11-18" "1988-11-18" "1988-11-18"
##  [6236] "1988-11-18" "1988-11-18" "1988-11-18" "1988-11-18" "1988-11-18"
##  [6241] "1992-06-09" "1992-06-09" "1974-11-18" "1974-11-18" "1974-11-18"
##  [6246] "1974-11-18" "1974-11-18" "1974-11-18" "1974-11-18" "1974-11-18"
##  [6251] "1974-11-18" "1974-11-18" "1974-11-18" "1985-06-29" "1985-06-29"
##  [6256] "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29"
##  [6261] "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29"
##  [6266] "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29"
##  [6271] "1985-06-29" "1971-06-04" "1971-06-04" "1971-06-04" "1971-06-04"
##  [6276] "1971-06-04" "1971-06-04" "1971-06-04" "1971-06-04" "1971-06-04"
##  [6281] "1971-06-04" "1971-06-04" "1971-06-04" "1976-09-02" "1976-09-02"
##  [6286] "1976-09-02" "1976-09-02" "1976-09-02" "1976-09-02" "1976-09-02"
##  [6291] "1976-09-02" "1976-09-02" "1976-09-02" "1991-05-02" "1991-05-02"
##  [6296] "1991-05-29" "1991-05-29" "1991-05-29" "1991-05-29" "1991-05-29"
##  [6301] "1991-05-29" "1989-10-03" "1989-10-03" "1989-10-03" "1989-10-03"
##  [6306] "1989-10-03" "1979-11-02" "1979-11-02" "1979-11-02" "1979-11-02"
##  [6311] "1979-11-02" "1979-11-02" "1979-11-02" "1979-11-02" "1979-11-02"
##  [6316] "1979-11-02" "1979-11-02" "1979-11-02" "1979-11-02" "1979-11-02"
##  [6321] "1979-11-02" "1979-11-02" "1979-11-02" "1986-04-13" "1986-04-13"
##  [6326] "1986-04-13" "1983-03-08" "1983-03-08" "1978-06-15" "1978-06-15"
##  [6331] "1978-06-15" "1978-06-15" "1978-06-15" "1978-06-15" "1978-06-15"
##  [6336] "1978-06-15" "1978-06-15" "1978-06-15" "1978-06-15" "1978-06-15"
##  [6341] "1978-06-15" "1978-06-15" "1978-06-15" "1976-08-13" "1976-08-13"
##  [6346] "1976-08-13" "1977-11-25" "1977-11-25" "1977-11-25" "1977-11-25"
##  [6351] "1977-11-25" "1985-02-04" "1985-02-04" "1985-02-04" "1985-02-04"
##  [6356] "1985-02-04" "1985-02-04" "1985-02-04" "1985-02-04" "1984-08-20"
##  [6361] "1984-08-20" "1984-08-20" "1988-09-28" "1988-09-28" "1988-09-28"
##  [6366] "1988-09-28" "1988-09-28" "1984-05-23" "1984-05-23" "1984-05-23"
##  [6371] "1984-05-23" "1984-05-23" "1984-05-23" "1984-05-23" "1984-05-23"
##  [6376] "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08"
##  [6381] "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08" "1991-04-28"
##  [6386] "1991-04-28" "1991-04-28" "1991-04-28" "1991-04-28" "1991-04-28"
##  [6391] "1991-04-28" "1991-04-28" "1991-04-28" "1991-04-28" "1991-04-28"
##  [6396] "1991-04-28" "1991-04-28" "1991-04-28" "1991-04-28" "1991-04-28"
##  [6401] "1986-10-23" "1986-10-23" "1986-10-23" "1986-10-23" "1986-10-23"
##  [6406] "1986-10-23" "1986-10-23" "1971-10-18" "1971-10-18" "1971-10-18"
##  [6411] "1971-10-18" "1971-10-18" "1971-10-18" "1989-05-26" "1989-05-26"
##  [6416] "1989-05-26" "1989-05-26" "1989-05-26" "1985-12-28" "1985-12-28"
##  [6421] "1985-12-28" "1985-12-28" "1985-12-28" "1985-12-28" "1985-12-28"
##  [6426] "1985-12-28" "1985-12-28" "1985-12-28" "1985-12-28" "1985-12-28"
##  [6431] "1985-12-28" "1985-12-28" "1985-12-28" "1985-12-28" "1985-12-28"
##  [6436] "1976-07-14" "1976-07-14" "1976-07-14" "1976-07-14" "1976-07-14"
##  [6441] "1976-07-14" "1977-06-19" "1977-06-19" "1977-06-19" "1977-06-19"
##  [6446] "1977-06-19" "1977-06-19" "1977-06-19" "1980-06-03" "1980-06-03"
##  [6451] "1980-06-03" "1980-06-03" "1980-06-03" "1980-06-03" "1986-11-24"
##  [6456] "1986-11-24" "1979-02-17" "1979-02-17" "1979-02-17" "1979-02-17"
##  [6461] "1979-02-17" "1979-02-17" "1979-02-17" "1979-02-17" "1979-02-17"
##  [6466] "1979-02-17" "1979-02-17" "1979-02-17" "1979-02-17" "1979-02-17"
##  [6471] "1979-02-17" "1975-11-02" "1975-11-02" "1975-11-02" "1975-11-02"
##  [6476] "1975-11-02" "1975-11-02" "1975-11-02" "1975-11-02" "1975-11-02"
##  [6481] "1987-06-10" "1987-06-10" "1987-06-10" "1987-06-10" "1987-06-10"
##  [6486] "1989-05-01" "1989-05-01" "1989-05-01" "1989-05-01" "1989-05-01"
##  [6491] "1989-05-01" "1989-05-01" "1989-05-01" "1989-05-01" "1986-09-11"
##  [6496] "1986-09-11" "1986-09-11" "1986-09-11" "1986-09-11" "1986-09-11"
##  [6501] "1986-09-11" "1976-09-20" "1976-09-20" "1976-09-20" "1976-09-20"
##  [6506] "1976-09-20" "1976-09-20" "1976-09-20" "1976-09-20" "1976-09-20"
##  [6511] "1976-09-20" "1976-09-20" "1976-09-20" "1976-09-20" "1975-05-20"
##  [6516] "1975-05-20" "1975-05-20" "1975-05-20" "1975-05-20" "1975-05-20"
##  [6521] "1975-05-20" "1975-05-20" "1975-05-20" "1975-05-20" "1975-05-20"
##  [6526] "1975-05-20" "1975-05-20" "1985-05-28" "1985-05-28" "1985-05-28"
##  [6531] "1985-05-28" "1985-05-28" "1985-05-28" "1985-05-28" "1992-04-14"
##  [6536] "1992-04-14" "1992-04-14" "1992-04-14" "1992-04-14" "1992-04-14"
##  [6541] "1992-04-14" "1992-04-14" "1992-04-14" "1986-12-20" "1986-12-20"
##  [6546] "1978-03-14" "1978-03-14" "1978-03-14" "1978-03-14" "1978-03-14"
##  [6551] "1978-03-14" "1978-03-14" "1978-03-14" "1978-03-14" "1992-08-12"
##  [6556] "1992-08-12" "1992-08-12" "1988-12-18" "1988-12-18" "1988-12-18"
##  [6561] "1988-12-18" "1988-12-18" "1977-03-26" "1977-03-26" "1977-03-26"
##  [6566] "1977-03-26" "1977-03-26" "1977-03-26" "1977-03-26" "1977-03-26"
##  [6571] "1977-03-26" "1977-03-26" "1973-01-20" "1973-01-20" "1973-01-20"
##  [6576] "1988-03-26" "1988-03-26" "1992-02-03" "1992-02-03" "1992-02-03"
##  [6581] "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03" "1987-12-17"
##  [6586] "1987-12-17" "1987-12-17" "1987-12-17" "1987-12-17" "1987-12-17"
##  [6591] "1987-12-17" "1987-12-17" "1987-12-17" "1987-12-17" "1987-12-17"
##  [6596] "1987-12-17" "1973-12-23" "1973-12-23" "1973-12-23" "1973-12-23"
##  [6601] "1973-12-23" "1973-12-23" "1973-12-23" "1973-12-23" "1973-12-23"
##  [6606] "1973-12-23" "1973-12-23" "1973-12-23" "1982-09-20" "1982-09-20"
##  [6611] "1982-09-20" "1982-09-20" "1982-09-20" "1982-09-20" "1982-09-20"
##  [6616] "1990-10-02" "1990-10-02" "1990-10-02" "1990-10-02" "1990-10-02"
##  [6621] "1978-02-14" "1978-02-14" "1978-02-14" "1978-02-14" "1978-02-14"
##  [6626] "1982-07-14" "1982-07-14" "1982-07-14" "1982-07-14" "1982-07-14"
##  [6631] "1979-10-14" "1979-10-14" "1979-10-14" "1979-10-14" "1976-09-08"
##  [6636] "1976-09-08" "1976-09-08" "1976-09-08" "1976-09-08" "1976-09-08"
##  [6641] "1976-09-08" "1976-09-08" "1976-09-08" "1976-09-08" "1976-09-08"
##  [6646] "1974-06-20" "1974-06-20" "1974-06-20" "1974-06-20" "1974-06-20"
##  [6651] "1974-06-20" "1974-06-20" "1974-06-20" "1974-06-20" "1974-06-20"
##  [6656] "1982-10-12" "1982-10-12" "1982-10-12" "1982-10-12" "1982-10-12"
##  [6661] "1982-10-12" "1970-01-11" "1970-01-11" "1970-01-11" "1970-01-11"
##  [6666] "1970-01-11" "1970-01-11" "1970-01-11" "1970-01-11" "1970-01-11"
##  [6671] "1970-01-11" "1970-01-11" "1970-01-11" "1970-01-11" "1970-01-11"
##  [6676] "1971-11-21" "1971-11-21" "1971-11-21" "1971-11-21" "1971-11-21"
##  [6681] "1971-11-21" "1971-11-21" "1978-08-07" "1978-08-07" "1978-08-07"
##  [6686] "1978-08-07" "1978-08-07" "1978-08-07" "1978-08-07" "1978-08-07"
##  [6691] "1978-08-07" "1978-08-07" "1978-08-07" "1978-08-07" "1978-08-07"
##  [6696] "1978-08-07" "1978-08-07" "1978-08-07" "1978-08-07" "1978-08-07"
##  [6701] "1978-08-07" "1978-08-07" "1978-08-07" "1978-08-07" "1978-08-07"
##  [6706] "1977-08-03" "1977-08-03" "1977-08-03" "1977-08-03" "1977-08-03"
##  [6711] "1977-08-03" "1977-08-03" "1977-08-03" "1977-08-03" "1977-08-03"
##  [6716] "1975-12-19" "1975-12-19" "1975-12-19" "1975-12-19" "1975-12-19"
##  [6721] "1975-12-19" "1975-12-19" "1975-12-19" "1975-12-19" "1975-12-19"
##  [6726] "1990-10-03" "1990-10-03" "1990-10-03" "1990-10-03" "1990-10-03"
##  [6731] "1990-10-03" "1990-10-03" "1990-10-03" "1990-10-03" "1990-10-03"
##  [6736] "1990-10-03" "1990-10-03" "1990-10-03" "1990-10-03" "1984-11-03"
##  [6741] "1984-11-03" "1970-11-18" "1970-11-18" "1970-11-18" "1974-04-19"
##  [6746] "1974-04-19" "1974-04-19" "1974-04-19" "1974-04-19" "1974-04-19"
##  [6751] "1974-04-19" "1981-12-07" "1981-12-07" "1985-11-29" "1985-11-29"
##  [6756] "1985-11-29" "1985-11-29" "1985-11-29" "1985-11-29" "1985-11-29"
##  [6761] "1985-11-29" "1985-11-29" "1985-11-29" "1985-11-29" "1985-11-29"
##  [6766] "1985-11-29" "1985-11-29" "1985-11-29" "1985-11-29" "1985-11-29"
##  [6771] "1985-11-29" "1985-11-29" "1984-01-20" "1984-01-20" "1984-01-20"
##  [6776] "1984-01-20" "1984-01-20" "1984-01-20" "1984-01-20" "1984-01-20"
##  [6781] "1984-01-20" "1984-01-20" "1984-01-20" "1984-01-20" "1984-01-20"
##  [6786] "1984-01-20" "1984-01-20" "1984-01-20" "1984-01-20" "1988-02-11"
##  [6791] "1988-02-11" "1988-02-11" "1988-02-11" "1988-02-11" "1988-02-11"
##  [6796] "1988-02-11" "1988-02-11" "1988-02-11" "1988-02-11" "1988-02-11"
##  [6801] "1988-02-11" "1988-02-11" "1989-10-15" "1989-10-15" "1989-10-15"
##  [6806] "1989-10-15" "1989-10-15" "1989-10-15" "1989-10-15" "1989-10-15"
##  [6811] "1989-10-15" "1989-10-15" "1989-10-15" "1989-10-15" "1989-10-15"
##  [6816] "1989-10-15" "1989-10-15" "1989-10-15" "1989-10-15" "1989-10-15"
##  [6821] "1989-10-15" "1989-10-15" "1988-09-08" "1988-09-08" "1988-09-08"
##  [6826] "1988-09-08" "1988-09-08" "1992-12-15" "1992-12-15" "1992-12-15"
##  [6831] "1992-12-15" "1992-12-15" "1992-12-15" "1992-12-15" "1992-12-15"
##  [6836] "1992-12-15" "1992-12-15" "1992-12-15" "1992-12-15" "1992-12-15"
##  [6841] "1992-12-15" "1978-07-12" "1978-07-12" "1978-07-12" "1978-07-12"
##  [6846] "1978-07-12" "1978-07-12" "1978-07-12" "1978-07-12" "1978-07-12"
##  [6851] "1978-07-12" "1978-07-12" "1978-07-12" "1978-07-12" "1978-07-12"
##  [6856] "1978-07-12" "1971-09-01" "1971-09-01" "1971-09-01" "1971-09-01"
##  [6861] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26"
##  [6866] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26"
##  [6871] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26"
##  [6876] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26"
##  [6881] "1991-02-26" "1991-02-26" "1972-06-25" "1972-06-25" "1990-01-22"
##  [6886] "1990-01-22" "1990-01-22" "1979-04-26" "1979-04-26" "1979-04-26"
##  [6891] "1979-04-26" "1979-04-26" "1979-04-26" "1979-04-26" "1979-04-26"
##  [6896] "1979-04-26" "1988-04-26" "1988-04-26" "1988-04-26" "1988-04-26"
##  [6901] "1988-04-26" "1988-04-26" "1988-04-26" "1988-04-26" "1988-04-26"
##  [6906] "1988-04-26" "1988-04-26" "1990-12-16" "1990-12-16" "1990-12-16"
##  [6911] "1990-12-16" "1990-12-16" "1971-09-03" "1971-09-03" "1971-09-03"
##  [6916] "1971-09-03" "1971-09-03" "1971-09-03" "1971-09-03" "1971-09-03"
##  [6921] "1971-09-03" "1971-09-03" "1971-09-03" "1971-09-03" "1971-09-03"
##  [6926] "1971-09-03" "1971-09-03" "1971-09-03" "1971-09-03" "1971-09-03"
##  [6931] "1971-09-03" "1971-09-03" "1971-09-03" "1971-09-03" "1971-09-03"
##  [6936] "1985-05-22" "1985-05-22" "1985-05-22" "1985-05-22" "1985-05-22"
##  [6941] "1985-05-22" "1985-05-22" "1985-05-22" "1976-03-06" "1976-03-06"
##  [6946] "1976-03-06" "1976-03-06" "1976-03-06" "1976-03-06" "1976-03-06"
##  [6951] "1988-02-13" "1988-02-13" "1988-02-13" "1988-02-13" "1988-02-13"
##  [6956] "1988-02-13" "1988-02-13" "1988-02-13" "1988-08-21" "1988-08-21"
##  [6961] "1988-08-21" "1988-08-21" "1988-08-21" "1988-08-21" "1975-09-12"
##  [6966] "1975-09-12" "1975-09-12" "1975-09-12" "1975-09-12" "1975-09-12"
##  [6971] "1975-09-12" "1975-09-12" "1975-09-12" "1975-09-12" "1975-09-12"
##  [6976] "1975-09-12" "1975-09-12" "1975-09-12" "1975-09-12" "1975-09-12"
##  [6981] "1975-09-12" "1975-09-12" "1975-09-12" "1975-09-12" "1984-09-23"
##  [6986] "1984-09-23" "1984-09-23" "1982-08-07" "1982-08-07" "1982-08-07"
##  [6991] "1982-08-07" "1982-08-07" "1982-08-07" "1982-08-07" "1982-08-07"
##  [6996] "1982-08-07" "1982-08-07" "1979-05-11" "1979-05-11" "1979-05-11"
##  [7001] "1979-05-11" "1979-05-11" "1979-05-11" "1979-05-11" "1979-05-11"
##  [7006] "1979-05-11" "1979-05-11" "1979-05-11" "1982-12-04" "1982-12-04"
##  [7011] "1982-12-04" "1982-12-04" "1982-12-04" "1978-01-23" "1978-01-23"
##  [7016] "1978-01-23" "1974-09-13" "1974-09-13" "1974-09-13" "1974-09-13"
##  [7021] "1974-09-13" "1974-09-13" "1974-09-13" "1974-09-13" "1974-09-13"
##  [7026] "1991-01-19" "1991-01-19" "1991-01-19" "1991-01-19" "1991-01-19"
##  [7031] "1980-06-23" "1980-06-23" "1980-06-23" "1980-06-23" "1980-06-23"
##  [7036] "1980-06-23" "1980-06-23" "1980-06-23" "1980-06-23" "1980-06-23"
##  [7041] "1980-06-23" "1980-06-23" "1980-06-23" "1980-06-23" "1980-06-23"
##  [7046] "1980-06-23" "1980-06-23" "1980-06-23" "1980-06-23" "1980-06-23"
##  [7051] "1980-06-23" "1980-06-23" "1980-06-23" "1980-06-23" "1980-06-23"
##  [7056] "1987-03-21" "1987-03-21" "1987-03-21" "1987-03-21" "1987-03-21"
##  [7061] "1987-03-21" "1987-03-21" "1987-03-21" "1987-03-21" "1987-03-21"
##  [7066] "1987-03-21" "1987-03-21" "1987-03-21" "1987-03-21" "1987-03-21"
##  [7071] "1987-03-21" "1987-03-21" "1987-03-21" "1987-03-21" "1987-03-21"
##  [7076] "1987-03-21" "1974-04-23" "1974-04-23" "1974-04-23" "1974-04-23"
##  [7081] "1974-04-23" "1974-04-23" "1974-04-23" "1974-04-23" "1974-04-23"
##  [7086] "1974-04-23" "1989-09-12" "1989-09-12" "1989-09-12" "1980-10-14"
##  [7091] "1980-10-14" "1980-10-14" "1980-10-14" "1980-10-14" "1980-10-14"
##  [7096] "1980-10-14" "1980-10-14" "1987-11-27" "1987-11-27" "1987-11-27"
##  [7101] "1987-11-27" "1987-11-27" "1987-11-27" "1987-11-27" "1987-11-27"
##  [7106] "1977-06-27" "1977-06-27" "1977-06-27" "1977-06-27" "1977-06-27"
##  [7111] "1977-06-27" "1977-06-27" "1977-06-27" "1977-06-27" "1977-06-27"
##  [7116] "1977-06-27" "1977-06-27" "1977-06-27" "1977-06-27" "1977-06-27"
##  [7121] "1977-06-27" "1977-06-27" "1977-06-27" "1977-06-27" "1977-06-27"
##  [7126] "1977-06-27" "1977-06-27" "1980-07-10" "1980-07-10" "1980-07-10"
##  [7131] "1992-01-05" "1992-01-05" "1992-01-05" "1992-01-05" "1992-01-05"
##  [7136] "1992-01-05" "1992-01-05" "1992-01-05" "1992-01-05" "1992-01-05"
##  [7141] "1978-12-21" "1978-12-21" "1978-12-21" "1978-12-21" "1978-12-21"
##  [7146] "1978-12-21" "1980-06-10" "1980-06-10" "1980-06-10" "1980-06-10"
##  [7151] "1980-06-10" "1980-06-10" "1980-06-10" "1980-06-10" "1980-06-10"
##  [7156] "1980-06-10" "1980-06-10" "1984-05-15" "1984-05-15" "1984-05-15"
##  [7161] "1984-05-15" "1984-05-15" "1984-05-15" "1984-05-15" "1986-12-20"
##  [7166] "1986-12-20" "1986-12-20" "1986-12-20" "1986-12-20" "1986-12-20"
##  [7171] "1986-12-20" "1986-12-20" "1986-12-20" "1986-12-20" "1986-12-20"
##  [7176] "1986-12-20" "1986-12-20" "1986-12-20" "1986-12-20" "1986-12-20"
##  [7181] "1986-12-20" "1974-11-27" "1974-11-27" "1979-06-14" "1979-06-14"
##  [7186] "1979-06-14" "1979-06-14" "1979-06-14" "1979-06-14" "1979-06-14"
##  [7191] "1979-06-14" "1979-06-14" "1979-06-14" "1979-06-14" "1979-06-14"
##  [7196] "1979-06-14" "1979-06-14" "1979-06-14" "1979-06-14" "1979-06-14"
##  [7201] "1970-01-08" "1970-01-08" "1970-01-08" "1970-01-08" "1970-01-08"
##  [7206] "1970-01-08" "1970-01-08" "1970-01-08" "1970-01-08" "1970-01-08"
##  [7211] "1970-01-08" "1970-01-08" "1970-01-08" "1972-03-29" "1972-03-29"
##  [7216] "1972-03-29" "1972-03-29" "1972-03-29" "1972-03-29" "1972-03-29"
##  [7221] "1972-03-29" "1972-03-29" "1972-03-29" "1979-06-25" "1979-06-25"
##  [7226] "1979-06-25" "1979-06-25" "1979-06-25" "1980-10-22" "1980-10-22"
##  [7231] "1980-10-22" "1987-10-29" "1987-10-29" "1987-10-29" "1987-10-29"
##  [7236] "1987-10-29" "1987-10-29" "1987-10-29" "1987-10-29" "1987-10-29"
##  [7241] "1987-10-29" "1987-10-29" "1985-01-08" "1985-01-08" "1985-01-08"
##  [7246] "1985-01-08" "1987-06-20" "1987-06-20" "1987-06-20" "1987-06-20"
##  [7251] "1987-06-20" "1987-06-20" "1987-06-20" "1987-06-20" "1987-06-20"
##  [7256] "1987-06-20" "1987-06-20" "1987-06-20" "1987-06-20" "1987-06-20"
##  [7261] "1987-06-20" "1980-11-16" "1980-11-16" "1972-12-22" "1972-12-22"
##  [7266] "1972-12-22" "1973-09-06" "1973-09-06" "1973-09-06" "1973-09-06"
##  [7271] "1973-09-06" "1983-11-22" "1983-11-22" "1983-11-22" "1983-11-22"
##  [7276] "1983-11-22" "1983-11-22" "1983-11-22" "1983-11-22" "1983-11-22"
##  [7281] "1983-11-22" "1983-11-22" "1983-11-22" "1983-11-22" "1983-11-22"
##  [7286] "1975-08-08" "1975-08-08" "1975-08-08" "1975-08-08" "1975-08-08"
##  [7291] "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13"
##  [7296] "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13"
##  [7301] "1986-09-13" "1986-09-13" "1988-05-16" "1988-05-16" "1988-05-16"
##  [7306] "1988-05-16" "1988-05-16" "1988-05-16" "1988-05-16" "1988-05-16"
##  [7311] "1988-05-16" "1988-05-16" "1988-05-16" "1988-05-16" "1979-12-04"
##  [7316] "1979-12-04" "1979-12-04" "1979-12-04" "1987-12-26" "1987-12-26"
##  [7321] "1987-12-26" "1987-12-26" "1987-12-26" "1987-12-26" "1987-12-26"
##  [7326] "1987-12-26" "1987-12-26" "1987-12-26" "1979-09-01" "1979-09-01"
##  [7331] "1973-10-24" "1973-10-24" "1973-10-24" "1973-10-24" "1973-10-24"
##  [7336] "1987-07-18" "1987-07-18" "1987-07-18" "1987-07-18" "1987-07-18"
##  [7341] "1989-08-17" "1989-08-17" "1989-08-17" "1989-08-17" "1989-08-17"
##  [7346] "1989-08-17" "1989-08-17" "1989-08-17" "1989-08-17" "1989-08-17"
##  [7351] "1989-08-17" "1989-08-17" "1989-08-17" "1988-04-22" "1988-04-22"
##  [7356] "1988-04-22" "1988-04-22" "1988-04-22" "1985-11-05" "1985-11-05"
##  [7361] "1985-11-05" "1985-11-05" "1985-11-05" "1985-11-05" "1985-11-05"
##  [7366] "1985-11-05" "1985-11-05" "1985-11-05" "1971-06-05" "1971-06-05"
##  [7371] "1971-06-05" "1971-06-05" "1971-06-05" "1971-06-05" "1971-06-05"
##  [7376] "1971-06-05" "1971-06-05" "1971-06-05" "1971-06-05" "1986-11-28"
##  [7381] "1986-11-28" "1986-11-28" "1986-11-28" "1986-11-28" "1986-11-28"
##  [7386] "1986-11-28" "1986-11-28" "1986-11-28" "1986-11-28" "1986-11-28"
##  [7391] "1986-11-28" "1992-05-20" "1992-05-20" "1992-05-20" "1989-12-11"
##  [7396] "1989-12-11" "1989-12-11" "1989-12-11" "1989-12-11" "1989-12-11"
##  [7401] "1989-12-11" "1989-12-11" "1989-12-11" "1987-03-15" "1987-03-15"
##  [7406] "1987-03-15" "1987-03-15" "1987-03-15" "1987-03-15" "1987-03-15"
##  [7411] "1991-11-18" "1991-11-18" "1991-11-18" "1991-11-18" "1991-11-18"
##  [7416] "1991-11-18" "1991-11-18" "1991-11-18" "1991-11-18" "1991-11-18"
##  [7421] "1991-11-18" "1989-03-10" "1989-03-10" "1980-12-20" "1980-12-20"
##  [7426] "1980-12-20" "1980-12-20" "1980-12-20" "1980-12-20" "1980-12-20"
##  [7431] "1980-12-20" "1980-12-20" "1980-12-20" "1980-12-20" "1980-12-20"
##  [7436] "1974-01-15" "1974-01-15" "1978-11-22" "1978-11-22" "1978-11-22"
##  [7441] "1978-11-22" "1978-11-22" "1978-11-22" "1978-11-22" "1977-03-22"
##  [7446] "1977-03-22" "1977-03-22" "1977-03-22" "1977-03-22" "1977-03-22"
##  [7451] "1977-03-22" "1986-08-01" "1986-08-01" "1986-08-01" "1986-08-01"
##  [7456] "1986-08-01" "1986-08-01" "1986-08-01" "1986-08-01" "1986-08-01"
##  [7461] "1986-08-01" "1986-08-01" "1986-08-01" "1983-10-01" "1983-10-01"
##  [7466] "1983-10-01" "1983-10-01" "1983-10-01" "1983-10-01" "1983-10-01"
##  [7471] "1989-10-19" "1989-10-19" "1989-10-19" "1989-10-19" "1989-10-19"
##  [7476] "1989-10-19" "1989-03-01" "1989-03-01" "1990-05-28" "1990-05-28"
##  [7481] "1990-05-28" "1990-05-28" "1990-05-28" "1990-05-28" "1980-05-15"
##  [7486] "1980-05-15" "1980-05-15" "1972-12-13" "1972-12-13" "1972-12-13"
##  [7491] "1972-12-13" "1981-06-16" "1981-06-16" "1981-06-16" "1981-06-16"
##  [7496] "1981-06-16" "1981-06-16" "1981-06-16" "1981-06-16" "1981-06-16"
##  [7501] "1981-06-16" "1981-06-16" "1981-06-16" "1981-06-16" "1983-06-28"
##  [7506] "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28"
##  [7511] "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28"
##  [7516] "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28"
##  [7521] "1985-03-21" "1985-03-21" "1985-03-21" "1985-03-21" "1985-03-21"
##  [7526] "1985-03-21" "1985-03-21" "1985-03-21" "1985-03-21" "1985-03-21"
##  [7531] "1985-03-21" "1985-03-21" "1985-03-21" "1985-03-21" "1985-03-21"
##  [7536] "1985-03-21" "1988-05-14" "1988-05-14" "1988-05-14" "1988-05-14"
##  [7541] "1988-05-14" "1988-05-14" "1990-12-29" "1990-12-29" "1990-12-29"
##  [7546] "1990-12-29" "1990-12-29" "1990-12-29" "1990-12-29" "1990-12-29"
##  [7551] "1990-12-29" "1990-12-29" "1990-12-29" "1990-12-29" "1990-12-29"
##  [7556] "1990-12-29" "1991-02-23" "1991-02-23" "1991-02-23" "1991-02-23"
##  [7561] "1978-04-21" "1978-04-21" "1978-04-21" "1978-04-21" "1975-05-06"
##  [7566] "1975-05-06" "1975-05-06" "1975-05-06" "1975-05-06" "1975-05-06"
##  [7571] "1975-05-06" "1975-05-06" "1975-05-06" "1975-05-06" "1975-05-06"
##  [7576] "1975-05-06" "1975-05-06" "1975-05-06" "1975-05-06" "1975-05-06"
##  [7581] "1975-05-06" "1975-05-06" "1975-05-06" "1975-05-06" "1985-12-19"
##  [7586] "1985-12-19" "1985-12-19" "1985-12-19" "1985-12-19" "1985-12-19"
##  [7591] "1985-12-19" "1985-12-19" "1985-12-19" "1985-12-19" "1985-12-19"
##  [7596] "1985-12-19" "1980-05-29" "1980-05-29" "1980-05-29" "1980-05-29"
##  [7601] "1980-05-29" "1980-05-29" "1986-04-14" "1986-04-14" "1986-04-14"
##  [7606] "1986-04-14" "1986-04-14" "1986-04-14" "1986-04-14" "1986-04-14"
##  [7611] "1986-04-14" "1972-05-08" "1972-05-08" "1972-05-08" "1972-05-08"
##  [7616] "1972-05-08" "1989-04-02" "1989-04-02" "1989-04-02" "1989-04-02"
##  [7621] "1989-04-02" "1970-02-01" "1970-02-01" "1970-02-01" "1970-02-01"
##  [7626] "1970-02-01" "1970-02-01" "1970-02-01" "1983-02-01" "1983-02-01"
##  [7631] "1983-02-01" "1983-02-01" "1983-02-01" "1983-02-01" "1983-02-01"
##  [7636] "1983-02-01" "1983-02-01" "1983-02-01" "1983-02-01" "1983-02-01"
##  [7641] "1983-02-01" "1983-02-01" "1983-02-01" "1983-02-01" "1983-02-01"
##  [7646] "1983-02-01" "1983-02-01" "1983-02-01" "1983-02-01" "1983-02-01"
##  [7651] "1978-03-06" "1978-03-06" "1978-03-06" "1978-03-06" "1978-03-06"
##  [7656] "1978-03-06" "1978-03-06" "1978-03-06" "1978-03-06" "1978-03-06"
##  [7661] "1978-03-06" "1978-03-06" "1978-03-06" "1978-03-06" "1978-03-06"
##  [7666] "1978-03-06" "1978-03-06" "1978-03-06" "1980-02-26" "1980-02-26"
##  [7671] "1970-12-22" "1970-12-22" "1970-12-22" "1970-12-22" "1970-12-22"
##  [7676] "1970-12-22" "1970-12-22" "1970-12-22" "1970-12-22" "1970-12-22"
##  [7681] "1990-11-18" "1990-11-18" "1990-11-18" "1990-11-18" "1990-11-18"
##  [7686] "1990-11-18" "1990-11-18" "1990-11-18" "1990-11-18" "1990-11-18"
##  [7691] "1990-11-18" "1990-11-18" "1990-11-18" "1990-11-18" "1979-05-09"
##  [7696] "1979-05-09" "1974-08-23" "1974-08-23" "1974-08-23" "1974-08-23"
##  [7701] "1974-08-23" "1991-04-03" "1991-04-03" "1991-04-03" "1991-04-03"
##  [7706] "1991-04-03" "1991-04-03" "1991-04-03" "1991-04-03" "1991-04-03"
##  [7711] "1991-04-03" "1991-04-03" "1991-04-03" "1991-04-03" "1991-04-03"
##  [7716] "1974-10-10" "1974-10-10" "1974-10-10" "1974-10-10" "1974-10-10"
##  [7721] "1974-10-10" "1974-10-10" "1974-10-10" "1974-10-10" "1974-10-10"
##  [7726] "1974-10-10" "1974-10-10" "1974-10-10" "1970-04-29" "1970-04-29"
##  [7731] "1970-04-29" "1970-04-29" "1970-04-29" "1970-04-29" "1970-04-29"
##  [7736] "1982-05-06" "1982-05-06" "1982-05-06" "1982-05-06" "1982-05-06"
##  [7741] "1982-05-06" "1982-05-06" "1982-05-06" "1982-05-06" "1982-05-06"
##  [7746] "1982-05-06" "1982-05-06" "1982-05-06" "1982-05-06" "1982-05-06"
##  [7751] "1982-05-06" "1982-05-06" "1989-12-17" "1989-12-17" "1989-12-17"
##  [7756] "1989-12-17" "1989-12-17" "1980-01-25" "1980-01-25" "1980-01-25"
##  [7761] "1980-01-25" "1980-01-25" "1980-01-25" "1980-01-25" "1980-01-25"
##  [7766] "1980-01-25" "1979-09-08" "1979-09-08" "1979-09-08" "1979-09-08"
##  [7771] "1979-09-08" "1979-09-08" "1979-09-08" "1989-06-22" "1989-06-22"
##  [7776] "1989-06-22" "1989-06-22" "1971-06-05" "1971-06-05" "1971-06-05"
##  [7781] "1971-06-05" "1971-06-05" "1976-04-25" "1976-04-25" "1976-04-25"
##  [7786] "1976-04-25" "1976-04-25" "1976-04-25" "1980-07-15" "1980-07-15"
##  [7791] "1980-07-15" "1980-07-15" "1980-07-15" "1980-07-15" "1980-07-15"
##  [7796] "1980-07-15" "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25"
##  [7801] "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25"
##  [7806] "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25"
##  [7811] "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25"
##  [7816] "1974-02-25" "1974-02-25" "1974-02-25" "1988-10-26" "1988-10-26"
##  [7821] "1988-10-26" "1988-10-26" "1988-10-26" "1988-10-26" "1990-11-28"
##  [7826] "1990-11-28" "1990-11-28" "1990-11-28" "1990-11-28" "1990-11-28"
##  [7831] "1990-11-28" "1990-11-28" "1970-06-11" "1970-06-11" "1970-06-11"
##  [7836] "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28"
##  [7841] "1988-08-03" "1988-08-03" "1988-08-03" "1988-08-03" "1988-08-03"
##  [7846] "1988-08-03" "1988-08-03" "1988-08-03" "1988-08-03" "1988-08-03"
##  [7851] "1988-08-03" "1988-08-03" "1988-08-03" "1988-08-03" "1988-08-03"
##  [7856] "1988-08-03" "1988-08-03" "1972-12-19" "1972-12-19" "1972-12-19"
##  [7861] "1972-12-19" "1972-12-19" "1972-12-19" "1972-12-19" "1972-12-19"
##  [7866] "1972-12-19" "1972-12-19" "1987-05-17" "1987-05-17" "1987-05-17"
##  [7871] "1987-05-17" "1987-05-17" "1987-05-17" "1987-05-17" "1987-12-27"
##  [7876] "1987-12-27" "1987-12-27" "1989-12-17" "1989-12-17" "1989-12-17"
##  [7881] "1989-12-17" "1989-12-17" "1989-12-17" "1989-12-17" "1989-12-17"
##  [7886] "1989-12-17" "1989-12-17" "1989-12-17" "1989-12-17" "1989-12-17"
##  [7891] "1989-12-17" "1989-12-17" "1989-12-17" "1989-12-17" "1989-12-17"
##  [7896] "1989-12-17" "1989-12-17" "1989-12-17" "1989-12-17" "1989-12-17"
##  [7901] "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08"
##  [7906] "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08"
##  [7911] "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08"
##  [7916] "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08"
##  [7921] "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08"
##  [7926] "1973-06-08" "1985-07-08" "1985-07-08" "1985-07-08" "1985-07-08"
##  [7931] "1985-07-08" "1985-07-08" "1985-07-08" "1979-08-06" "1979-08-06"
##  [7936] "1975-02-10" "1975-02-10" "1975-02-10" "1975-02-10" "1975-02-10"
##  [7941] "1975-02-10" "1975-02-10" "1975-02-10" "1975-02-10" "1975-02-10"
##  [7946] "1975-02-10" "1975-02-10" "1975-02-10" "1975-02-10" "1975-02-10"
##  [7951] "1972-04-17" "1972-04-17" "1972-04-17" "1972-04-17" "1972-04-17"
##  [7956] "1972-04-17" "1972-04-17" "1972-04-17" "1972-04-17" "1972-04-17"
##  [7961] "1972-04-17" "1972-04-17" "1972-04-17" "1972-04-17" "1972-04-17"
##  [7966] "1972-04-17" "1990-01-24" "1990-01-24" "1990-01-24" "1990-01-24"
##  [7971] "1990-01-24" "1990-01-24" "1990-01-24" "1990-01-24" "1982-10-17"
##  [7976] "1982-10-17" "1982-10-17" "1982-10-17" "1982-10-17" "1982-10-17"
##  [7981] "1982-10-17" "1982-10-17" "1973-08-08" "1973-08-08" "1973-08-08"
##  [7986] "1973-08-08" "1973-08-08" "1973-08-08" "1977-08-21" "1977-08-21"
##  [7991] "1977-08-21" "1977-08-21" "1977-08-21" "1979-04-26" "1979-04-26"
##  [7996] "1979-04-26" "1979-04-26" "1979-04-26" "1979-04-26" "1979-04-26"
##  [8001] "1979-04-26" "1979-04-26" "1979-04-26" "1979-04-26" "1988-07-01"
##  [8006] "1988-07-01" "1988-07-01" "1988-07-01" "1988-07-01" "1988-07-01"
##  [8011] "1988-07-01" "1988-07-01" "1988-07-01" "1985-05-10" "1985-05-10"
##  [8016] "1985-05-10" "1985-05-10" "1985-05-10" "1985-05-10" "1985-05-10"
##  [8021] "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04"
##  [8026] "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04"
##  [8031] "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04"
##  [8036] "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04"
##  [8041] "1971-11-04" "1971-11-03" "1971-11-03" "1971-11-03" "1971-11-03"
##  [8046] "1971-11-03" "1971-11-03" "1971-11-03" "1971-11-03" "1971-11-03"
##  [8051] "1971-11-03" "1971-11-03" "1972-07-15" "1972-07-15" "1972-07-15"
##  [8056] "1972-07-15" "1972-07-15" "1972-07-15" "1972-07-15" "1972-07-15"
##  [8061] "1972-07-15" "1972-07-15" "1972-07-15" "1972-07-15" "1988-05-03"
##  [8066] "1988-05-03" "1988-05-03" "1988-05-03" "1988-05-03" "1988-05-03"
##  [8071] "1988-05-03" "1988-05-03" "1988-05-03" "1988-05-03" "1988-05-03"
##  [8076] "1988-05-03" "1988-05-03" "1988-05-03" "1988-05-03" "1982-12-27"
##  [8081] "1982-12-27" "1982-12-27" "1982-12-27" "1982-12-27" "1973-03-04"
##  [8086] "1973-03-04" "1988-12-03" "1988-12-03" "1988-12-03" "1988-12-03"
##  [8091] "1988-12-03" "1988-12-03" "1988-12-03" "1988-12-03" "1988-12-03"
##  [8096] "1988-12-03" "1982-05-05" "1982-05-05" "1982-05-05" "1982-05-05"
##  [8101] "1982-05-05" "1982-05-05" "1982-05-05" "1982-05-05" "1982-05-05"
##  [8106] "1982-05-05" "1978-09-07" "1978-09-07" "1978-09-07" "1978-09-07"
##  [8111] "1978-09-07" "1978-09-07" "1978-09-07" "1978-09-07" "1978-09-07"
##  [8116] "1982-04-13" "1982-04-13" "1982-04-13" "1982-04-13" "1982-04-13"
##  [8121] "1982-04-13" "1982-04-13" "1982-04-13" "1982-04-13" "1982-04-13"
##  [8126] "1990-10-18" "1990-10-18" "1990-10-18" "1990-10-18" "1971-06-29"
##  [8131] "1971-06-29" "1974-09-04" "1974-09-04" "1974-09-04" "1974-09-04"
##  [8136] "1974-09-04" "1974-09-04" "1974-09-04" "1974-09-04" "1974-09-04"
##  [8141] "1974-09-04" "1974-09-04" "1974-09-04" "1974-09-04" "1973-01-09"
##  [8146] "1973-01-09" "1973-01-09" "1973-01-09" "1973-01-09" "1973-01-09"
##  [8151] "1973-01-09" "1976-10-16" "1976-10-16" "1990-10-07" "1990-10-07"
##  [8156] "1990-10-07" "1990-10-07" "1990-10-07" "1990-10-07" "1990-10-07"
##  [8161] "1990-10-07" "1990-10-07" "1990-10-07" "1990-10-07" "1990-10-07"
##  [8166] "1990-10-07" "1990-10-07" "1990-10-07" "1990-10-07" "1990-10-07"
##  [8171] "1990-10-07" "1977-01-20" "1977-01-20" "1977-01-20" "1977-01-20"
##  [8176] "1977-01-20" "1977-01-20" "1977-01-20" "1977-01-20" "1977-01-20"
##  [8181] "1977-01-20" "1977-01-20" "1977-01-20" "1982-01-05" "1982-01-05"
##  [8186] "1982-01-05" "1982-01-05" "1982-01-05" "1982-01-05" "1982-01-05"
##  [8191] "1982-01-05" "1983-10-14" "1983-10-14" "1983-10-14" "1983-10-14"
##  [8196] "1983-10-14" "1985-04-23" "1985-04-23" "1985-04-23" "1985-04-23"
##  [8201] "1985-04-23" "1985-04-23" "1985-04-23" "1985-04-23" "1985-04-23"
##  [8206] "1985-04-23" "1985-04-23" "1985-04-23" "1985-04-23" "1985-04-23"
##  [8211] "1985-04-23" "1985-04-23" "1985-04-23" "1980-01-15" "1980-01-15"
##  [8216] "1980-01-15" "1980-01-15" "1980-01-15" "1980-01-15" "1980-01-15"
##  [8221] "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17"
##  [8226] "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17"
##  [8231] "1981-11-17" "1990-08-12" "1990-08-12" "1990-08-12" "1990-08-12"
##  [8236] "1990-08-12" "1971-07-27" "1971-07-27" "1971-07-27" "1971-07-27"
##  [8241] "1971-07-27" "1971-07-27" "1971-07-27" "1971-07-27" "1971-07-27"
##  [8246] "1971-07-27" "1971-07-27" "1978-12-13" "1978-12-13" "1974-04-09"
##  [8251] "1974-04-09" "1974-04-09" "1974-04-09" "1974-04-09" "1974-04-09"
##  [8256] "1974-04-09" "1974-04-09" "1974-04-09" "1974-04-09" "1974-04-09"
##  [8261] "1974-04-09" "1974-04-09" "1974-04-09" "1974-04-09" "1974-04-09"
##  [8266] "1974-04-09" "1974-04-09" "1974-04-09" "1976-03-17" "1976-03-17"
##  [8271] "1976-03-17" "1975-02-01" "1975-02-01" "1975-02-01" "1987-09-13"
##  [8276] "1987-09-13" "1987-09-13" "1987-09-13" "1987-09-13" "1987-09-13"
##  [8281] "1985-02-19" "1985-02-19" "1985-02-19" "1985-02-19" "1985-02-19"
##  [8286] "1985-02-19" "1985-02-19" "1985-02-19" "1985-02-19" "1985-02-19"
##  [8291] "1985-02-19" "1985-02-19" "1985-02-19" "1985-02-19" "1985-02-19"
##  [8296] "1985-02-19" "1985-02-19" "1985-02-19" "1981-08-09" "1981-08-09"
##  [8301] "1981-08-09" "1983-06-02" "1983-06-02" "1983-06-02" "1983-06-02"
##  [8306] "1983-06-02" "1983-06-02" "1983-06-02" "1983-06-02" "1983-06-02"
##  [8311] "1983-06-02" "1983-06-02" "1983-06-02" "1983-06-02" "1983-06-02"
##  [8316] "1975-04-24" "1975-04-24" "1975-04-24" "1975-04-24" "1975-04-24"
##  [8321] "1975-04-24" "1975-04-24" "1975-04-24" "1975-04-24" "1975-04-24"
##  [8326] "1975-04-24" "1987-08-10" "1987-08-10" "1987-08-10" "1987-08-10"
##  [8331] "1987-08-10" "1987-08-10" "1987-08-10" "1989-05-23" "1989-05-23"
##  [8336] "1989-05-23" "1977-10-11" "1977-10-11" "1977-10-11" "1977-10-11"
##  [8341] "1977-10-11" "1977-10-11" "1972-02-03" "1972-02-03" "1985-08-04"
##  [8346] "1985-08-04" "1985-08-04" "1985-08-04" "1970-01-02" "1970-01-02"
##  [8351] "1970-01-02" "1970-01-02" "1970-01-02" "1970-01-02" "1970-01-02"
##  [8356] "1970-01-02" "1970-01-02" "1970-01-02" "1970-01-02" "1970-01-02"
##  [8361] "1970-01-02" "1970-01-02" "1970-01-02" "1970-01-02" "1973-02-10"
##  [8366] "1973-02-10" "1973-02-10" "1973-02-10" "1973-02-10" "1973-02-10"
##  [8371] "1973-02-10" "1973-02-10" "1973-02-10" "1973-02-10" "1972-11-13"
##  [8376] "1972-11-13" "1972-11-13" "1972-11-13" "1972-11-13" "1972-11-13"
##  [8381] "1972-11-13" "1973-11-10" "1973-11-10" "1973-11-10" "1973-11-10"
##  [8386] "1973-11-10" "1973-11-10" "1973-11-10" "1973-11-10" "1973-11-10"
##  [8391] "1973-11-10" "1973-11-10" "1973-11-10" "1973-11-10" "1973-11-10"
##  [8396] "1973-11-10" "1984-02-22" "1984-02-22" "1984-02-22" "1984-02-22"
##  [8401] "1984-02-22" "1984-02-22" "1984-02-22" "1984-02-22" "1984-02-22"
##  [8406] "1984-02-22" "1984-02-22" "1984-02-22" "1984-02-22" "1984-02-22"
##  [8411] "1972-12-23" "1972-12-23" "1972-12-23" "1972-12-23" "1972-12-23"
##  [8416] "1972-12-23" "1972-12-23" "1972-12-23" "1972-12-23" "1972-12-23"
##  [8421] "1972-12-23" "1972-12-23" "1972-12-23" "1972-12-23" "1972-12-23"
##  [8426] "1972-12-23" "1972-12-23" "1991-03-05" "1991-03-05" "1991-03-05"
##  [8431] "1991-03-05" "1991-03-05" "1991-03-05" "1991-03-05" "1991-03-05"
##  [8436] "1970-05-23" "1970-05-23" "1970-05-23" "1970-05-23" "1970-05-23"
##  [8441] "1970-05-23" "1970-05-23" "1992-05-24" "1992-05-24" "1979-09-10"
##  [8446] "1979-09-10" "1979-09-10" "1979-09-10" "1979-09-10" "1979-09-10"
##  [8451] "1979-09-10" "1979-09-10" "1983-05-24" "1983-05-24" "1982-06-19"
##  [8456] "1982-06-19" "1982-06-19" "1982-06-19" "1982-06-19" "1982-06-19"
##  [8461] "1982-06-19" "1982-06-19" "1982-06-19" "1973-12-25" "1973-12-25"
##  [8466] "1973-12-25" "1973-12-25" "1973-12-25" "1973-12-25" "1973-12-25"
##  [8471] "1973-12-25" "1973-12-25" "1973-12-25" "1973-12-25" "1973-12-25"
##  [8476] "1973-12-25" "1973-12-25" "1973-12-25" "1973-12-25" "1978-01-02"
##  [8481] "1978-01-02" "1978-01-02" "1978-01-02" "1978-01-02" "1978-01-02"
##  [8486] "1978-01-02" "1978-01-02" "1978-01-02" "1978-01-02" "1978-01-02"
##  [8491] "1978-01-02" "1978-01-02" "1978-01-02" "1978-01-02" "1978-01-02"
##  [8496] "1978-01-02" "1978-01-02" "1978-01-02" "1977-04-07" "1977-04-07"
##  [8501] "1977-04-07" "1977-04-07" "1977-04-07" "1977-04-07" "1977-04-03"
##  [8506] "1977-04-03" "1977-04-03" "1977-04-03" "1977-04-03" "1977-04-03"
##  [8511] "1977-04-03" "1990-10-10" "1990-10-10" "1990-10-10" "1990-10-10"
##  [8516] "1990-10-10" "1990-10-10" "1990-10-10" "1990-10-10" "1990-10-10"
##  [8521] "1990-10-10" "1990-10-10" "1990-10-10" "1992-01-02" "1992-01-02"
##  [8526] "1992-01-02" "1992-01-02" "1992-01-02" "1992-01-02" "1992-01-02"
##  [8531] "1992-01-02" "1992-01-02" "1992-01-02" "1992-01-02" "1972-02-18"
##  [8536] "1972-02-18" "1972-02-18" "1972-02-18" "1972-02-18" "1972-02-18"
##  [8541] "1972-02-18" "1972-02-18" "1972-02-18" "1972-02-18" "1972-02-18"
##  [8546] "1972-02-18" "1970-07-14" "1970-07-14" "1970-07-14" "1970-07-14"
##  [8551] "1970-07-14" "1970-07-14" "1970-07-14" "1970-07-14" "1970-07-14"
##  [8556] "1970-07-14" "1970-07-14" "1970-07-14" "1977-08-14" "1977-08-14"
##  [8561] "1977-08-14" "1977-08-14" "1977-08-14" "1977-08-14" "1989-03-06"
##  [8566] "1989-03-06" "1971-09-09" "1971-09-09" "1971-09-09" "1971-09-09"
##  [8571] "1971-09-09" "1971-09-09" "1971-09-09" "1971-09-09" "1971-09-09"
##  [8576] "1971-09-09" "1971-09-09" "1971-09-09" "1979-04-12" "1979-04-12"
##  [8581] "1979-04-12" "1979-04-12" "1979-04-12" "1979-04-12" "1979-04-12"
##  [8586] "1984-07-29" "1984-07-29" "1984-07-29" "1984-07-29" "1984-07-29"
##  [8591] "1984-07-29" "1984-07-29" "1976-08-10" "1976-08-10" "1976-08-10"
##  [8596] "1976-08-10" "1976-08-10" "1976-08-10" "1976-08-10" "1976-08-10"
##  [8601] "1976-08-10" "1976-08-10" "1976-08-10" "1991-07-29" "1991-07-29"
##  [8606] "1991-07-29" "1991-07-29" "1991-07-29" "1981-10-25" "1981-10-25"
##  [8611] "1981-10-25" "1981-10-25" "1981-10-25" "1981-10-25" "1981-10-25"
##  [8616] "1981-10-25" "1981-10-25" "1981-10-25" "1981-10-25" "1981-10-25"
##  [8621] "1988-05-19" "1988-05-19" "1988-05-19" "1988-05-19" "1988-05-19"
##  [8626] "1988-05-19" "1988-05-19" "1980-02-20" "1980-02-20" "1980-02-20"
##  [8631] "1980-02-20" "1980-02-20" "1975-11-12" "1975-11-12" "1975-11-12"
##  [8636] "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10" "1972-12-10"
##  [8641] "1972-12-10" "1982-09-25" "1982-09-25" "1983-07-15" "1983-07-15"
##  [8646] "1983-07-15" "1983-07-15" "1983-07-15" "1983-07-15" "1983-07-15"
##  [8651] "1983-07-15" "1983-07-15" "1983-07-15" "1983-07-15" "1983-07-15"
##  [8656] "1983-07-15" "1990-07-22" "1990-07-22" "1990-07-22" "1990-07-22"
##  [8661] "1988-08-15" "1988-08-15" "1988-08-15" "1988-08-15" "1988-08-15"
##  [8666] "1988-08-15" "1974-05-19" "1974-05-19" "1974-05-19" "1974-05-19"
##  [8671] "1974-05-19" "1974-05-19" "1974-05-19" "1974-05-19" "1974-05-19"
##  [8676] "1974-05-19" "1974-05-19" "1974-05-19" "1974-05-19" "1982-03-06"
##  [8681] "1982-03-06" "1982-03-06" "1982-03-06" "1982-03-06" "1982-03-06"
##  [8686] "1982-03-06" "1982-03-06" "1982-03-06" "1982-03-06" "1986-07-28"
##  [8691] "1986-07-28" "1986-07-28" "1986-07-28" "1986-07-28" "1986-07-28"
##  [8696] "1986-07-28" "1986-07-28" "1986-07-28" "1986-07-28" "1986-07-28"
##  [8701] "1986-07-28" "1986-07-28" "1986-07-28" "1986-07-28" "1984-08-20"
##  [8706] "1984-08-20" "1984-08-20" "1984-08-20" "1984-08-20" "1970-11-15"
##  [8711] "1970-11-15" "1970-11-15" "1970-11-15" "1970-11-15" "1970-11-15"
##  [8716] "1970-11-15" "1970-11-15" "1970-11-15" "1970-11-15" "1986-06-29"
##  [8721] "1986-06-29" "1972-03-09" "1972-03-09" "1972-03-09" "1972-03-09"
##  [8726] "1972-03-09" "1972-03-09" "1972-03-09" "1972-03-09" "1972-03-09"
##  [8731] "1972-03-09" "1972-03-09" "1972-03-09" "1972-03-09" "1972-03-09"
##  [8736] "1972-03-09" "1972-03-09" "1982-07-11" "1982-07-11" "1982-07-11"
##  [8741] "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11"
##  [8746] "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11"
##  [8751] "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11"
##  [8756] "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11"
##  [8761] "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11"
##  [8766] "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11"
##  [8771] "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10"
##  [8776] "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10"
##  [8781] "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10"
##  [8786] "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10"
##  [8791] "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10"
##  [8796] "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10" "1984-06-10"
##  [8801] "1984-06-10" "1984-06-10" "1981-08-09" "1981-08-09" "1981-08-09"
##  [8806] "1988-01-17" "1988-01-17" "1988-01-17" "1988-01-17" "1988-01-17"
##  [8811] "1974-02-02" "1974-02-02" "1974-02-02" "1974-02-02" "1974-02-02"
##  [8816] "1974-02-02" "1974-02-02" "1974-02-02" "1974-02-02" "1974-02-02"
##  [8821] "1974-02-02" "1974-02-02" "1974-02-02" "1974-02-02" "1980-03-07"
##  [8826] "1980-03-07" "1980-03-07" "1980-03-07" "1980-03-07" "1975-02-17"
##  [8831] "1975-02-17" "1975-02-17" "1975-02-17" "1975-02-17" "1975-02-17"
##  [8836] "1975-02-17" "1975-02-17" "1975-02-17" "1975-02-17" "1975-02-17"
##  [8841] "1975-02-17" "1975-02-17" "1975-02-17" "1975-02-17" "1975-02-17"
##  [8846] "1975-02-17" "1986-10-18" "1986-10-18" "1986-10-18" "1986-10-18"
##  [8851] "1986-10-18" "1986-10-18" "1986-10-18" "1986-10-18" "1986-10-18"
##  [8856] "1986-10-18" "1986-10-18" "1986-10-18" "1986-10-18" "1975-09-08"
##  [8861] "1975-09-08" "1975-09-08" "1975-09-08" "1975-09-08" "1975-09-08"
##  [8866] "1975-09-08" "1975-09-08" "1975-09-08" "1975-04-23" "1975-04-23"
##  [8871] "1975-04-23" "1975-04-23" "1975-04-23" "1975-04-23" "1980-04-04"
##  [8876] "1980-04-04" "1980-04-04" "1980-04-04" "1980-04-04" "1980-04-04"
##  [8881] "1980-04-04" "1987-09-25" "1987-09-25" "1987-09-25" "1987-09-25"
##  [8886] "1987-09-25" "1987-09-25" "1971-04-13" "1971-04-13" "1971-04-13"
##  [8891] "1971-04-13" "1971-04-13" "1974-10-19" "1974-10-19" "1974-10-19"
##  [8896] "1974-10-19" "1974-10-19" "1974-10-19" "1974-10-19" "1974-10-19"
##  [8901] "1974-10-19" "1974-10-19" "1974-10-19" "1974-10-19" "1974-10-19"
##  [8906] "1974-10-19" "1974-10-19" "1974-10-19" "1974-10-19" "1973-02-14"
##  [8911] "1973-02-14" "1973-02-14" "1973-02-14" "1973-02-14" "1973-02-14"
##  [8916] "1973-02-14" "1973-02-14" "1973-02-14" "1973-02-14" "1973-02-14"
##  [8921] "1973-02-14" "1973-02-14" "1973-02-14" "1973-02-14" "1973-02-14"
##  [8926] "1973-02-14" "1973-02-14" "1973-02-14" "1973-02-14" "1973-02-14"
##  [8931] "1973-02-14" "1973-02-14" "1973-02-14" "1973-02-14" "1973-02-14"
##  [8936] "1973-02-14" "1972-12-05" "1972-12-05" "1972-12-05" "1972-12-05"
##  [8941] "1972-12-05" "1972-12-05" "1972-12-05" "1972-12-05" "1972-12-05"
##  [8946] "1972-12-05" "1972-12-05" "1972-12-05" "1972-12-05" "1972-12-05"
##  [8951] "1972-12-05" "1972-12-05" "1972-12-05" "1976-12-22" "1976-12-22"
##  [8956] "1976-12-22" "1976-12-22" "1976-12-22" "1976-12-22" "1976-12-22"
##  [8961] "1976-12-22" "1976-12-22" "1987-03-17" "1987-03-17" "1987-03-17"
##  [8966] "1987-03-17" "1987-03-17" "1989-08-17" "1989-08-17" "1989-08-17"
##  [8971] "1989-08-17" "1989-08-17" "1989-08-17" "1989-08-17" "1989-08-17"
##  [8976] "1989-08-17" "1989-08-17" "1981-11-04" "1981-11-04" "1981-11-04"
##  [8981] "1981-11-04" "1981-11-04" "1981-11-04" "1981-11-04" "1981-11-04"
##  [8986] "1981-11-04" "1981-11-04" "1981-11-04" "1981-11-04" "1981-11-04"
##  [8991] "1974-03-01" "1974-03-01" "1974-03-01" "1974-03-01" "1974-03-01"
##  [8996] "1974-03-01" "1974-03-01" "1974-03-01" "1974-03-01" "1977-01-11"
##  [9001] "1977-01-11" "1977-01-11" "1977-01-11" "1977-01-11" "1977-01-11"
##  [9006] "1977-01-11" "1977-01-11" "1977-01-11" "1977-01-11" "1977-01-11"
##  [9011] "1977-01-11" "1977-01-11" "1977-01-11" "1986-05-02" "1986-05-02"
##  [9016] "1986-05-02" "1986-05-02" "1986-05-02" "1986-05-02" "1986-05-02"
##  [9021] "1986-05-02" "1986-05-02" "1986-05-02" "1986-05-02" "1986-05-02"
##  [9026] "1982-07-15" "1982-07-15" "1982-07-15" "1982-07-15" "1982-07-15"
##  [9031] "1982-07-15" "1982-07-15" "1982-07-15" "1982-07-15" "1982-07-15"
##  [9036] "1982-07-15" "1982-07-15" "1982-07-15" "1982-07-15" "1982-07-15"
##  [9041] "1982-07-15" "1983-09-22" "1983-09-22" "1983-09-22" "1983-09-22"
##  [9046] "1983-09-22" "1983-09-22" "1983-09-22" "1983-09-22" "1985-03-17"
##  [9051] "1985-03-17" "1985-03-17" "1985-03-17" "1985-03-17" "1985-03-17"
##  [9056] "1975-09-19" "1975-09-19" "1975-09-19" "1975-09-19" "1975-09-19"
##  [9061] "1975-09-19" "1975-09-19" "1975-09-19" "1975-09-19" "1975-09-19"
##  [9066] "1975-09-19" "1975-09-19" "1976-12-10" "1976-12-10" "1976-12-10"
##  [9071] "1976-12-10" "1977-04-08" "1977-04-08" "1977-04-08" "1977-04-08"
##  [9076] "1990-08-20" "1990-08-20" "1990-08-20" "1990-08-20" "1990-08-20"
##  [9081] "1990-08-20" "1990-08-20" "1990-08-20" "1990-08-20" "1990-08-20"
##  [9086] "1977-11-15" "1977-11-15" "1970-06-23" "1970-06-23" "1970-06-23"
##  [9091] "1970-06-23" "1970-06-23" "1970-06-23" "1970-06-23" "1970-06-23"
##  [9096] "1970-06-23" "1970-06-23" "1970-06-23" "1972-10-02" "1972-10-02"
##  [9101] "1972-10-02" "1972-10-02" "1972-05-27" "1972-05-27" "1972-05-27"
##  [9106] "1972-05-27" "1972-05-27" "1972-05-27" "1972-05-27" "1974-05-05"
##  [9111] "1974-05-05" "1974-05-05" "1974-05-05" "1974-05-05" "1974-05-05"
##  [9116] "1974-05-05" "1974-05-05" "1974-05-05" "1974-05-05" "1974-05-05"
##  [9121] "1974-05-05" "1974-05-05" "1977-09-12" "1977-09-12" "1977-09-12"
##  [9126] "1977-09-12" "1977-09-12" "1981-05-07" "1981-05-07" "1981-05-07"
##  [9131] "1981-05-07" "1981-05-07" "1981-05-07" "1981-05-07" "1981-05-07"
##  [9136] "1981-05-07" "1981-05-07" "1981-05-07" "1981-05-07" "1977-11-19"
##  [9141] "1977-11-19" "1977-11-19" "1977-11-19" "1977-11-19" "1977-11-19"
##  [9146] "1977-11-19" "1977-11-19" "1977-11-19" "1977-11-19" "1990-07-01"
##  [9151] "1990-07-01" "1990-07-01" "1990-07-01" "1990-07-01" "1990-07-01"
##  [9156] "1990-07-01" "1984-11-22" "1984-11-22" "1984-11-22" "1984-11-22"
##  [9161] "1984-11-22" "1984-11-22" "1984-11-22" "1984-11-22" "1984-11-22"
##  [9166] "1984-11-22" "1984-11-22" "1984-11-22" "1978-11-28" "1978-11-28"
##  [9171] "1978-11-28" "1978-11-28" "1978-11-28" "1978-11-28" "1978-11-28"
##  [9176] "1983-09-05" "1983-09-05" "1983-09-05" "1983-09-05" "1983-09-05"
##  [9181] "1983-09-05" "1983-09-05" "1983-09-05" "1983-09-05" "1983-09-05"
##  [9186] "1983-09-05" "1983-09-05" "1983-09-05" "1986-04-27" "1986-04-27"
##  [9191] "1986-04-27" "1986-04-27" "1986-04-27" "1986-04-27" "1986-04-27"
##  [9196] "1986-04-27" "1986-04-27" "1986-04-27" "1986-04-27" "1986-04-27"
##  [9201] "1986-04-27" "1986-04-27" "1986-04-27" "1986-04-27" "1986-04-27"
##  [9206] "1986-04-27" "1984-09-06" "1984-09-06" "1984-09-06" "1983-09-06"
##  [9211] "1983-09-06" "1983-09-06" "1983-09-06" "1983-09-06" "1983-09-06"
##  [9216] "1983-09-06" "1983-09-06" "1983-09-06" "1983-09-06" "1973-12-18"
##  [9221] "1973-12-18" "1973-12-18" "1986-02-17" "1986-02-17" "1986-02-17"
##  [9226] "1972-11-02" "1972-11-02" "1972-11-02" "1972-11-02" "1972-11-02"
##  [9231] "1972-11-02" "1972-11-02" "1990-02-06" "1990-02-06" "1990-02-06"
##  [9236] "1990-02-06" "1990-02-06" "1990-02-06" "1990-02-06" "1990-02-06"
##  [9241] "1990-02-06" "1990-02-06" "1990-02-06" "1990-02-06" "1990-02-06"
##  [9246] "1990-02-06" "1982-01-24" "1982-01-24" "1986-07-02" "1986-07-02"
##  [9251] "1986-07-02" "1986-07-02" "1986-07-02" "1986-07-02" "1986-07-02"
##  [9256] "1986-07-02" "1986-07-02" "1986-03-01" "1986-03-01" "1986-03-01"
##  [9261] "1986-03-01" "1986-03-01" "1986-03-01" "1986-03-01" "1986-03-01"
##  [9266] "1986-03-01" "1986-03-01" "1986-03-01" "1981-06-29" "1981-06-29"
##  [9271] "1987-09-02" "1987-09-02" "1987-09-02" "1987-09-02" "1987-09-02"
##  [9276] "1987-09-02" "1987-09-02" "1987-09-02" "1987-09-02" "1987-09-02"
##  [9281] "1987-09-02" "1987-09-02" "1987-09-02" "1987-09-02" "1987-09-02"
##  [9286] "1987-09-02" "1987-09-02" "1987-09-02" "1987-09-02" "1987-09-02"
##  [9291] "1987-09-02" "1987-09-02" "1987-09-02" "1982-05-25" "1982-05-25"
##  [9296] "1982-05-25" "1982-05-25" "1982-05-25" "1982-05-25" "1982-05-25"
##  [9301] "1982-05-25" "1982-05-25" "1982-05-25" "1982-05-25" "1982-05-25"
##  [9306] "1982-05-25" "1982-05-25" "1982-05-25" "1982-05-25" "1982-05-25"
##  [9311] "1982-05-25" "1982-05-25" "1979-01-10" "1979-01-10" "1979-01-10"
##  [9316] "1979-01-10" "1979-01-10" "1979-01-10" "1979-01-10" "1979-01-10"
##  [9321] "1979-01-10" "1979-01-10" "1979-01-10" "1979-01-10" "1979-01-10"
##  [9326] "1983-06-02" "1983-06-02" "1983-06-02" "1983-06-02" "1983-06-02"
##  [9331] "1983-06-02" "1983-06-02" "1978-08-06" "1978-08-06" "1978-08-06"
##  [9336] "1978-08-06" "1978-08-06" "1970-12-24" "1970-12-24" "1970-12-24"
##  [9341] "1970-12-24" "1970-12-24" "1976-02-20" "1976-02-20" "1976-02-20"
##  [9346] "1976-02-20" "1976-02-20" "1976-02-20" "1976-02-20" "1976-02-20"
##  [9351] "1976-02-20" "1976-02-20" "1971-03-17" "1971-03-17" "1971-03-17"
##  [9356] "1971-03-17" "1971-03-17" "1971-03-17" "1971-03-17" "1971-03-17"
##  [9361] "1975-01-03" "1975-01-03" "1975-01-03" "1971-02-23" "1971-02-23"
##  [9366] "1975-11-24" "1975-11-24" "1975-11-24" "1975-11-24" "1975-11-24"
##  [9371] "1975-11-24" "1975-11-24" "1975-11-24" "1975-11-24" "1975-11-24"
##  [9376] "1975-11-24" "1975-11-24" "1975-11-24" "1975-11-24" "1975-11-24"
##  [9381] "1975-11-24" "1973-05-08" "1973-05-08" "1973-05-08" "1973-05-08"
##  [9386] "1973-05-08" "1973-05-08" "1975-01-02" "1975-01-02" "1975-01-02"
##  [9391] "1975-01-02" "1975-01-02" "1975-01-02" "1975-01-02" "1975-01-02"
##  [9396] "1975-01-02" "1975-01-02" "1975-01-02" "1975-01-02" "1975-01-02"
##  [9401] "1975-01-02" "1975-01-02" "1975-01-02" "1986-02-15" "1986-02-15"
##  [9406] "1986-02-15" "1986-02-15" "1992-12-06" "1992-12-06" "1992-12-06"
##  [9411] "1992-12-06" "1992-12-06" "1992-12-06" "1992-12-06" "1992-12-06"
##  [9416] "1992-12-06" "1992-12-06" "1992-12-06" "1992-12-06" "1992-12-06"
##  [9421] "1979-04-22" "1979-04-22" "1979-04-22" "1979-04-22" "1979-04-22"
##  [9426] "1979-04-22" "1979-04-22" "1979-04-22" "1979-04-22" "1979-04-22"
##  [9431] "1979-04-22" "1979-04-22" "1988-06-01" "1988-06-01" "1977-09-19"
##  [9436] "1977-09-19" "1977-09-19" "1977-09-19" "1977-09-19" "1977-09-19"
##  [9441] "1977-09-19" "1977-09-19" "1977-09-19" "1977-09-19" "1977-09-19"
##  [9446] "1977-09-19" "1977-09-19" "1977-09-19" "1977-09-19" "1977-09-19"
##  [9451] "1977-09-19" "1989-12-01" "1989-12-01" "1989-12-01" "1989-12-01"
##  [9456] "1989-12-01" "1989-12-01" "1989-12-01" "1989-12-01" "1989-12-01"
##  [9461] "1989-12-01" "1989-12-01" "1989-12-01" "1989-12-01" "1989-12-01"
##  [9466] "1986-05-01" "1986-05-01" "1986-05-01" "1986-05-01" "1986-05-01"
##  [9471] "1986-05-01" "1977-08-24" "1977-08-24" "1977-08-24" "1977-08-24"
##  [9476] "1977-08-24" "1977-08-24" "1977-08-24" "1977-08-24" "1980-12-04"
##  [9481] "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04"
##  [9486] "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04"
##  [9491] "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04" "1983-04-14"
##  [9496] "1983-04-14" "1983-04-14" "1983-04-14" "1983-04-14" "1975-05-11"
##  [9501] "1975-05-11" "1975-05-11" "1975-05-11" "1975-05-11" "1975-05-11"
##  [9506] "1975-05-11" "1975-05-11" "1985-01-08" "1985-01-08" "1985-01-08"
##  [9511] "1985-01-08" "1985-01-08" "1985-01-08" "1985-01-08" "1985-01-08"
##  [9516] "1985-01-08" "1973-03-03" "1973-03-03" "1973-03-03" "1973-03-03"
##  [9521] "1973-03-03" "1973-03-03" "1973-03-03" "1973-03-03" "1973-03-03"
##  [9526] "1973-03-03" "1973-03-03" "1973-03-03" "1973-03-03" "1973-03-03"
##  [9531] "1973-03-03" "1973-03-03" "1973-03-03" "1973-03-03" "1973-03-03"
##  [9536] "1973-03-03" "1973-03-03" "1973-03-03" "1983-02-08" "1983-02-08"
##  [9541] "1983-02-08" "1983-02-08" "1983-02-08" "1973-05-05" "1973-05-05"
##  [9546] "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05"
##  [9551] "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05"
##  [9556] "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05" "1988-03-07"
##  [9561] "1988-03-07" "1988-03-07" "1988-03-07" "1988-03-07" "1988-03-07"
##  [9566] "1988-03-07" "1988-03-07" "1988-03-07" "1988-03-07" "1972-07-02"
##  [9571] "1972-07-02" "1972-07-02" "1972-07-02" "1972-07-02" "1972-07-02"
##  [9576] "1972-07-02" "1972-07-02" "1972-07-02" "1972-07-02" "1983-08-16"
##  [9581] "1983-08-16" "1983-08-16" "1983-08-16" "1983-08-16" "1983-08-16"
##  [9586] "1983-08-16" "1983-08-16" "1983-08-16" "1984-10-07" "1984-10-07"
##  [9591] "1984-10-07" "1984-10-07" "1984-10-07" "1984-10-07" "1984-10-07"
##  [9596] "1984-10-07" "1984-10-07" "1984-10-07" "1984-10-07" "1991-08-11"
##  [9601] "1991-08-11" "1991-08-11" "1991-08-11" "1991-08-11" "1991-08-11"
##  [9606] "1991-08-11" "1991-08-11" "1991-08-11" "1991-08-11" "1991-08-11"
##  [9611] "1991-08-11" "1991-08-11" "1979-10-01" "1979-10-01" "1979-10-01"
##  [9616] "1979-10-01" "1979-10-01" "1982-08-12" "1982-08-12" "1986-09-18"
##  [9621] "1986-09-18" "1986-09-18" "1986-09-18" "1986-09-18" "1986-09-18"
##  [9626] "1986-09-18" "1986-09-18" "1986-09-18" "1986-09-18" "1986-09-18"
##  [9631] "1986-09-18" "1977-05-18" "1977-05-18" "1970-06-01" "1970-06-01"
##  [9636] "1970-06-01" "1970-06-01" "1970-06-01" "1970-06-01" "1970-06-01"
##  [9641] "1970-06-01" "1970-06-01" "1970-06-01" "1970-06-01" "1970-06-01"
##  [9646] "1970-06-01" "1983-03-13" "1983-03-13" "1983-03-13" "1983-03-13"
##  [9651] "1983-03-13" "1983-03-13" "1971-07-10" "1971-07-10" "1971-07-10"
##  [9656] "1971-07-10" "1971-07-10" "1971-07-10" "1971-07-10" "1971-07-10"
##  [9661] "1971-07-10" "1971-07-10" "1971-07-10" "1971-07-10" "1971-07-10"
##  [9666] "1971-07-10" "1971-07-10" "1971-07-10" "1971-07-10" "1971-07-10"
##  [9671] "1984-11-25" "1984-11-25" "1984-11-25" "1984-11-25" "1984-11-25"
##  [9676] "1984-11-25" "1984-11-25" "1987-06-02" "1987-06-02" "1987-06-02"
##  [9681] "1987-06-02" "1987-06-02" "1987-06-02" "1987-06-02" "1987-06-02"
##  [9686] "1988-07-05" "1988-07-05" "1988-07-05" "1988-07-05" "1988-07-05"
##  [9691] "1988-07-05" "1988-07-05" "1988-07-05" "1988-07-05" "1970-11-01"
##  [9696] "1970-11-01" "1970-11-01" "1970-11-01" "1970-11-01" "1970-11-01"
##  [9701] "1970-11-01" "1970-11-01" "1970-12-15" "1970-12-15" "1970-12-15"
##  [9706] "1970-12-15" "1970-12-15" "1970-12-15" "1990-04-21" "1990-04-21"
##  [9711] "1990-04-21" "1990-04-21" "1990-04-21" "1990-04-21" "1990-04-21"
##  [9716] "1990-04-21" "1990-04-21" "1990-04-21" "1990-04-21" "1990-04-21"
##  [9721] "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07"
##  [9726] "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07"
##  [9731] "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07"
##  [9736] "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07"
##  [9741] "1983-02-23" "1983-02-23" "1983-02-23" "1991-12-09" "1991-12-09"
##  [9746] "1991-12-09" "1991-12-09" "1991-12-09" "1991-12-09" "1990-01-05"
##  [9751] "1990-01-05" "1990-01-05" "1990-01-05" "1990-01-05" "1990-01-05"
##  [9756] "1990-01-05" "1990-01-05" "1990-01-05" "1990-01-05" "1990-01-05"
##  [9761] "1974-01-13" "1974-01-13" "1974-01-13" "1974-01-13" "1974-01-13"
##  [9766] "1974-01-13" "1972-06-07" "1972-06-07" "1972-06-07" "1972-06-07"
##  [9771] "1972-06-07" "1972-06-07" "1972-06-07" "1972-06-07" "1972-06-07"
##  [9776] "1972-06-07" "1972-06-07" "1972-06-07" "1972-06-07" "1972-06-07"
##  [9781] "1972-06-07" "1972-06-07" "1972-06-07" "1972-06-07" "1983-06-26"
##  [9786] "1983-06-26" "1983-06-26" "1983-06-26" "1983-06-26" "1983-06-26"
##  [9791] "1983-06-26" "1983-06-26" "1983-06-26" "1983-06-26" "1983-06-26"
##  [9796] "1982-02-16" "1982-02-16" "1982-02-16" "1982-02-16" "1982-02-16"
##  [9801] "1982-02-16" "1974-04-26" "1974-04-26" "1974-04-26" "1974-04-26"
##  [9806] "1974-04-26" "1974-04-26" "1974-04-26" "1974-04-26" "1974-04-26"
##  [9811] "1974-04-26" "1974-04-26" "1974-04-26" "1974-04-26" "1974-04-26"
##  [9816] "1974-04-26" "1974-04-26" "1974-04-26" "1974-04-26" "1974-04-26"
##  [9821] "1986-04-01" "1986-04-01" "1986-04-01" "1986-04-01" "1986-04-01"
##  [9826] "1986-04-01" "1986-04-01" "1986-04-01" "1971-04-18" "1971-04-18"
##  [9831] "1971-04-18" "1971-04-18" "1971-04-18" "1971-04-18" "1971-04-18"
##  [9836] "1971-04-18" "1971-04-18" "1971-04-18" "1971-04-18" "1971-04-18"
##  [9841] "1971-04-18" "1971-04-18" "1971-04-18" "1971-04-18" "1971-04-18"
##  [9846] "1987-07-23" "1987-07-23" "1987-07-23" "1987-07-23" "1987-07-23"
##  [9851] "1987-07-23" "1987-07-23" "1987-07-23" "1987-07-23" "1987-07-23"
##  [9856] "1987-07-23" "1987-07-23" "1987-07-23" "1987-07-23" "1987-12-06"
##  [9861] "1987-12-06" "1987-12-06" "1987-12-06" "1987-12-06" "1987-12-06"
##  [9866] "1987-12-06" "1987-12-06" "1987-12-06" "1987-12-06" "1987-12-06"
##  [9871] "1983-08-11" "1983-08-11" "1983-08-11" "1983-08-11" "1983-08-11"
##  [9876] "1983-08-11" "1983-08-11" "1983-08-11" "1983-08-11" "1988-07-28"
##  [9881] "1988-07-28" "1988-07-28" "1988-07-28" "1988-07-28" "1988-07-28"
##  [9886] "1988-07-28" "1988-07-28" "1988-07-28" "1975-05-17" "1975-05-17"
##  [9891] "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17"
##  [9896] "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17"
##  [9901] "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17"
##  [9906] "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17"
##  [9911] "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17"
##  [9916] "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17" "1975-05-17"
##  [9921] "1975-05-17" "1989-03-26" "1989-03-26" "1989-03-26" "1989-03-26"
##  [9926] "1989-03-26" "1989-03-26" "1989-03-26" "1989-03-26" "1989-03-26"
##  [9931] "1989-03-26" "1989-03-26" "1989-03-26" "1989-03-26" "1989-03-26"
##  [9936] "1989-03-26" "1989-03-26" "1989-03-26" "1989-03-26" "1976-07-26"
##  [9941] "1976-07-26" "1976-07-26" "1976-07-26" "1976-07-26" "1976-07-26"
##  [9946] "1978-12-11" "1978-12-11" "1978-12-11" "1978-12-11" "1978-12-11"
##  [9951] "1978-12-11" "1988-08-07" "1988-08-07" "1988-08-07" "1988-08-07"
##  [9956] "1988-08-07" "1988-08-07" "1988-08-07" "1988-08-07" "1988-08-07"
##  [9961] "1988-08-07" "1988-08-07" "1988-08-07" "1988-08-07" "1988-08-07"
##  [9966] "1988-08-07" "1988-08-07" "1988-08-07" "1988-08-07" "1971-04-01"
##  [9971] "1971-04-01" "1971-04-01" "1971-04-01" "1971-04-01" "1971-04-01"
##  [9976] "1971-04-01" "1971-04-01" "1971-04-01" "1971-04-01" "1971-04-01"
##  [9981] "1971-04-01" "1971-04-01" "1971-04-01" "1971-04-01" "1971-04-01"
##  [9986] "1971-04-01" "1971-04-01" "1971-04-01" "1971-04-01" "1971-04-01"
##  [9991] "1971-04-01" "1988-01-03" "1988-01-03" "1988-01-03" "1988-01-03"
##  [9996] "1988-01-03" "1988-01-03" "1988-01-03" "1988-01-03" "1988-01-03"
## [10001] "1988-01-03" "1988-01-03" "1988-01-03" "1991-01-22" "1991-01-22"
## [10006] "1991-01-22" "1991-01-22" "1991-01-22" "1991-01-22" "1991-01-22"
## [10011] "1974-02-20" "1974-02-20" "1980-03-19" "1980-03-19" "1980-03-19"
## [10016] "1980-03-19" "1980-03-19" "1980-03-19" "1980-03-19" "1980-03-19"
## [10021] "1980-03-19" "1990-03-16" "1990-03-16" "1990-03-16" "1990-03-16"
## [10026] "1990-03-16" "1990-03-16" "1990-03-16" "1990-03-16" "1990-03-16"
## [10031] "1990-03-16" "1990-03-16" "1990-03-16" "1990-03-16" "1990-03-16"
## [10036] "1990-03-16" "1990-03-16" "1990-03-16" "1990-03-16" "1990-03-16"
## [10041] "1990-03-16" "1990-03-16" "1989-11-01" "1989-11-01" "1989-11-01"
## [10046] "1989-11-01" "1989-11-01" "1982-04-29" "1982-04-29" "1982-04-29"
## [10051] "1982-04-29" "1982-04-29" "1982-04-29" "1982-04-29" "1982-04-29"
## [10056] "1982-04-29" "1982-04-29" "1973-07-29" "1973-07-29" "1973-07-29"
## [10061] "1973-07-29" "1973-07-29" "1973-07-29" "1973-07-29" "1973-07-29"
## [10066] "1973-07-29" "1973-07-29" "1974-09-17" "1974-09-17" "1984-10-03"
## [10071] "1984-10-03" "1984-10-03" "1984-10-03" "1984-10-03" "1984-10-03"
## [10076] "1984-10-03" "1984-10-03" "1984-10-03" "1984-10-03" "1984-10-03"
## [10081] "1981-06-08" "1981-06-08" "1981-06-08" "1981-06-08" "1981-06-08"
## [10086] "1981-06-08" "1981-06-08" "1981-06-08" "1981-06-08" "1978-12-18"
## [10091] "1978-12-18" "1978-12-18" "1978-12-18" "1978-12-18" "1978-12-18"
## [10096] "1978-12-18" "1978-12-18" "1978-12-18" "1978-12-18" "1992-02-12"
## [10101] "1992-02-12" "1992-02-12" "1992-02-12" "1992-02-12" "1992-02-12"
## [10106] "1974-08-28" "1974-08-28" "1974-08-28" "1974-08-28" "1974-08-28"
## [10111] "1974-08-28" "1970-10-29" "1970-10-29" "1970-10-29" "1970-10-29"
## [10116] "1970-10-29" "1970-10-29" "1970-10-29" "1970-10-29" "1970-10-29"
## [10121] "1970-10-29" "1970-10-29" "1970-10-29" "1970-10-29" "1970-10-29"
## [10126] "1970-10-29" "1970-10-29" "1970-10-29" "1970-10-29" "1970-10-29"
## [10131] "1971-10-04" "1971-10-04" "1971-10-04" "1971-10-04" "1971-10-04"
## [10136] "1971-10-04" "1971-10-04" "1971-10-04" "1971-10-04" "1971-10-04"
## [10141] "1971-10-04" "1971-10-04" "1971-10-04" "1971-10-04" "1971-10-04"
## [10146] "1971-10-04" "1971-10-04" "1971-10-04" "1971-10-04" "1971-10-04"
## [10151] "1971-10-04" "1971-10-04" "1971-10-04" "1971-08-18" "1971-08-18"
## [10156] "1978-02-22" "1978-02-22" "1978-02-22" "1978-02-22" "1978-02-22"
## [10161] "1978-02-22" "1978-02-22" "1978-02-22" "1978-02-22" "1978-02-22"
## [10166] "1978-02-22" "1974-08-11" "1974-08-11" "1987-10-08" "1987-10-08"
## [10171] "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08"
## [10176] "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08"
## [10181] "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08"
## [10186] "1971-11-15" "1971-11-15" "1971-11-15" "1971-11-15" "1971-11-15"
## [10191] "1971-11-15" "1971-11-15" "1971-11-15" "1970-09-09" "1970-09-09"
## [10196] "1970-09-09" "1970-09-09" "1970-09-09" "1970-09-09" "1990-01-26"
## [10201] "1990-01-26" "1990-01-26" "1990-01-26" "1990-01-26" "1990-01-26"
## [10206] "1990-01-26" "1990-01-26" "1990-01-26" "1990-01-26" "1990-01-26"
## [10211] "1975-03-03" "1975-03-03" "1975-03-03" "1975-03-03" "1975-03-03"
## [10216] "1975-03-03" "1975-03-03" "1975-03-03" "1975-03-03" "1975-03-03"
## [10221] "1975-03-03" "1975-03-03" "1975-03-03" "1986-12-03" "1986-12-03"
## [10226] "1986-12-03" "1979-08-20" "1979-08-20" "1979-08-20" "1979-08-20"
## [10231] "1979-08-20" "1988-02-27" "1988-02-27" "1988-02-27" "1988-02-27"
## [10236] "1988-02-27" "1988-02-27" "1988-02-27" "1988-02-27" "1988-02-27"
## [10241] "1973-06-15" "1973-06-15" "1973-06-15" "1973-06-15" "1973-06-15"
## [10246] "1973-06-15" "1973-06-15" "1973-06-15" "1973-06-15" "1973-06-15"
## [10251] "1973-06-15" "1979-12-21" "1979-12-21" "1979-12-21" "1979-12-21"
## [10256] "1979-12-21" "1979-12-21" "1979-12-21" "1979-12-21" "1979-12-21"
## [10261] "1979-12-21" "1979-12-21" "1979-12-21" "1979-12-21" "1979-12-21"
## [10266] "1979-12-21" "1979-12-21" "1989-08-07" "1989-08-07" "1989-08-07"
## [10271] "1989-08-07" "1989-08-07" "1989-08-07" "1989-08-07" "1989-08-07"
## [10276] "1989-08-07" "1989-08-07" "1991-07-17" "1991-07-17" "1991-07-17"
## [10281] "1991-07-17" "1991-07-17" "1991-07-17" "1987-12-03" "1987-12-03"
## [10286] "1987-12-03" "1987-12-03" "1987-12-03" "1987-12-03" "1987-12-03"
## [10291] "1987-12-03" "1987-12-03" "1987-12-03" "1987-12-03" "1987-12-03"
## [10296] "1987-12-03" "1987-12-03" "1987-12-03" "1987-12-03" "1987-12-03"
## [10301] "1987-12-03" "1986-08-11" "1986-08-11" "1986-08-11" "1992-12-05"
## [10306] "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05"
## [10311] "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05" "1972-09-25"
## [10316] "1972-09-25" "1972-09-25" "1972-09-25" "1972-09-25" "1972-09-25"
## [10321] "1972-09-25" "1972-09-25" "1972-09-25" "1972-09-25" "1972-09-25"
## [10326] "1970-05-06" "1970-05-06" "1970-05-06" "1970-05-06" "1970-05-06"
## [10331] "1970-05-06" "1970-05-06" "1970-05-06" "1981-07-13" "1981-07-13"
## [10336] "1981-07-13" "1981-07-13" "1981-07-13" "1981-07-13" "1981-07-13"
## [10341] "1981-07-13" "1981-07-13" "1981-07-13" "1984-01-05" "1984-01-05"
## [10346] "1984-01-05" "1983-03-06" "1983-03-06" "1992-04-04" "1992-04-04"
## [10351] "1992-04-04" "1992-04-04" "1992-04-04" "1992-04-04" "1992-04-04"
## [10356] "1992-04-04" "1992-04-04" "1992-04-04" "1992-04-04" "1992-04-04"
## [10361] "1992-04-04" "1992-04-04" "1992-04-04" "1992-04-04" "1992-04-04"
## [10366] "1992-04-04" "1992-04-04" "1992-04-04" "1992-04-04" "1984-11-19"
## [10371] "1984-11-19" "1984-11-19" "1984-11-19" "1984-11-19" "1984-11-19"
## [10376] "1984-11-19" "1984-11-19" "1984-11-19" "1984-11-19" "1984-11-19"
## [10381] "1984-11-19" "1984-11-19" "1984-11-19" "1984-11-19" "1984-11-19"
## [10386] "1984-11-19" "1984-11-19" "1984-11-19" "1984-11-19" "1974-10-04"
## [10391] "1974-10-04" "1971-02-06" "1971-02-06" "1971-02-06" "1971-02-06"
## [10396] "1971-02-06" "1971-02-06" "1971-02-06" "1971-02-06" "1971-02-06"
## [10401] "1971-02-06" "1971-02-06" "1971-02-06" "1971-02-06" "1971-02-06"
## [10406] "1987-01-01" "1987-01-01" "1987-01-01" "1987-01-01" "1987-01-01"
## [10411] "1985-09-28" "1985-09-28" "1985-09-28" "1985-09-28" "1985-09-28"
## [10416] "1989-07-29" "1989-07-29" "1989-07-29" "1989-07-29" "1989-07-29"
## [10421] "1989-07-29" "1989-07-29" "1989-07-29" "1976-06-09" "1976-06-09"
## [10426] "1976-06-09" "1976-06-09" "1976-06-09" "1984-07-15" "1984-07-15"
## [10431] "1984-07-15" "1984-07-15" "1984-07-15" "1984-07-15" "1984-07-15"
## [10436] "1984-07-15" "1984-07-15" "1984-07-15" "1978-11-25" "1978-11-25"
## [10441] "1978-04-16" "1978-04-16" "1978-04-16" "1978-04-16" "1978-04-16"
## [10446] "1978-04-16" "1978-04-16" "1978-04-16" "1978-04-16" "1978-04-16"
## [10451] "1978-04-16" "1983-03-15" "1983-03-15" "1983-03-15" "1983-03-15"
## [10456] "1983-03-15" "1983-03-15" "1983-03-15" "1977-02-09" "1977-02-09"
## [10461] "1977-02-09" "1977-02-09" "1977-02-09" "1977-02-09" "1977-02-09"
## [10466] "1977-02-09" "1987-02-06" "1987-02-06" "1987-02-06" "1987-02-06"
## [10471] "1987-02-06" "1987-02-06" "1987-02-06" "1987-02-06" "1991-07-25"
## [10476] "1991-07-25" "1991-07-25" "1991-07-25" "1991-07-25" "1991-07-25"
## [10481] "1991-07-25" "1991-07-25" "1991-07-25" "1991-07-25" "1991-07-25"
## [10486] "1991-07-25" "1991-07-25" "1991-07-25" "1991-07-25" "1974-04-18"
## [10491] "1974-04-18" "1986-07-15" "1986-07-15" "1992-01-04" "1992-01-04"
## [10496] "1992-01-04" "1992-01-04" "1992-01-04" "1992-01-04" "1992-01-04"
## [10501] "1992-01-04" "1992-01-04" "1992-01-04" "1970-10-20" "1970-10-20"
## [10506] "1970-10-20" "1970-10-20" "1970-10-20" "1988-02-08" "1988-02-08"
## [10511] "1980-05-21" "1980-05-21" "1980-05-21" "1980-05-21" "1980-05-21"
## [10516] "1980-05-21" "1980-05-21" "1980-05-21" "1981-02-07" "1981-02-07"
## [10521] "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07"
## [10526] "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07"
## [10531] "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07"
## [10536] "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07" "1981-02-07"
## [10541] "1981-02-07" "1981-02-07" "1985-07-19" "1985-07-19" "1985-07-19"
## [10546] "1985-07-19" "1985-07-19" "1974-07-05" "1974-07-05" "1974-07-05"
## [10551] "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03"
## [10556] "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03"
## [10561] "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03"
## [10566] "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03"
## [10571] "1992-02-03" "1978-10-27" "1978-10-27" "1978-10-27" "1978-10-27"
## [10576] "1978-10-27" "1978-10-27" "1978-10-27" "1978-10-27" "1978-10-27"
## [10581] "1978-10-27" "1980-03-28" "1980-03-28" "1980-03-28" "1989-03-12"
## [10586] "1989-03-12" "1989-03-12" "1989-03-12" "1989-03-12" "1989-03-12"
## [10591] "1989-03-12" "1989-03-12" "1971-09-07" "1971-09-07" "1971-09-07"
## [10596] "1971-09-07" "1971-09-07" "1971-09-07" "1971-09-07" "1971-09-07"
## [10601] "1971-09-07" "1975-10-10" "1975-10-10" "1983-01-27" "1983-01-27"
## [10606] "1983-01-27" "1983-01-27" "1983-01-27" "1983-01-27" "1983-01-27"
## [10611] "1970-07-04" "1970-07-04" "1970-07-04" "1970-07-04" "1970-07-04"
## [10616] "1970-07-04" "1970-07-04" "1970-07-04" "1970-07-04" "1970-07-04"
## [10621] "1970-07-04" "1970-07-04" "1979-12-28" "1979-12-28" "1979-12-28"
## [10626] "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28"
## [10631] "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28" "1986-06-04"
## [10636] "1986-06-04" "1986-06-04" "1986-06-04" "1986-06-04" "1986-06-04"
## [10641] "1986-06-04" "1989-09-20" "1989-09-20" "1989-09-20" "1976-05-09"
## [10646] "1976-05-09" "1976-05-09" "1979-06-27" "1979-06-27" "1979-06-27"
## [10651] "1979-06-27" "1979-06-27" "1979-06-27" "1979-06-27" "1979-06-27"
## [10656] "1979-06-27" "1975-11-23" "1975-11-23" "1975-11-23" "1975-11-23"
## [10661] "1975-11-23" "1975-11-23" "1975-11-23" "1975-11-23" "1975-11-23"
## [10666] "1975-11-23" "1975-11-23" "1975-11-23" "1975-11-23" "1975-11-23"
## [10671] "1975-11-23" "1987-11-19" "1987-11-19" "1987-11-19" "1987-11-19"
## [10676] "1987-11-19" "1987-11-19" "1987-11-19" "1987-05-19" "1987-05-19"
## [10681] "1987-05-19" "1987-05-19" "1987-05-19" "1987-05-19" "1991-04-05"
## [10686] "1991-04-05" "1991-04-05" "1991-04-05" "1991-04-05" "1991-04-05"
## [10691] "1991-04-05" "1991-04-05" "1991-04-05" "1991-04-05" "1991-04-05"
## [10696] "1991-04-05" "1991-04-05" "1991-04-05" "1991-04-05" "1990-06-15"
## [10701] "1990-06-15" "1990-06-15" "1990-06-15" "1990-06-15" "1990-06-15"
## [10706] "1990-06-15" "1990-06-15" "1990-06-15" "1990-06-15" "1990-06-15"
## [10711] "1990-06-15" "1990-06-15" "1990-06-15" "1990-06-15" "1990-06-15"
## [10716] "1990-06-15" "1973-06-02" "1973-06-02" "1973-06-02" "1973-06-02"
## [10721] "1973-06-02" "1973-06-02" "1973-06-02" "1973-06-02" "1973-06-02"
## [10726] "1973-06-02" "1973-06-02" "1973-06-02" "1978-08-12" "1978-08-12"
## [10731] "1982-07-20" "1982-07-20" "1982-07-20" "1982-07-20" "1982-07-20"
## [10736] "1982-07-20" "1982-07-20" "1982-07-20" "1982-07-20" "1971-02-21"
## [10741] "1971-02-21" "1971-02-21" "1971-02-21" "1971-02-21" "1971-02-21"
## [10746] "1971-02-21" "1971-02-21" "1971-02-21" "1975-06-26" "1975-06-26"
## [10751] "1975-06-26" "1975-06-26" "1975-06-26" "1975-06-26" "1975-06-26"
## [10756] "1975-06-26" "1975-06-26" "1991-03-22" "1991-03-22" "1991-03-22"
## [10761] "1991-03-22" "1991-03-22" "1991-03-22" "1991-03-22" "1991-03-22"
## [10766] "1991-03-22" "1991-03-22" "1975-01-17" "1975-01-17" "1975-01-17"
## [10771] "1975-01-17" "1975-01-17" "1975-01-17" "1975-01-17" "1975-01-17"
## [10776] "1975-01-17" "1975-01-17" "1975-01-17" "1975-01-17" "1975-01-17"
## [10781] "1975-01-17" "1975-01-17" "1975-01-17" "1975-01-17" "1975-01-17"
## [10786] "1988-11-22" "1988-11-22" "1984-02-11" "1984-02-11" "1984-02-11"
## [10791] "1984-02-11" "1984-02-11" "1984-02-11" "1984-02-11" "1984-02-11"
## [10796] "1984-02-11" "1984-02-11" "1984-02-11" "1984-02-11" "1985-02-13"
## [10801] "1985-02-13" "1985-02-13" "1985-02-13" "1985-02-13" "1985-02-13"
## [10806] "1985-02-13" "1985-02-13" "1985-02-13" "1973-04-06" "1973-04-06"
## [10811] "1973-04-06" "1973-04-06" "1973-04-06" "1986-10-11" "1986-10-11"
## [10816] "1986-10-11" "1986-10-11" "1986-10-11" "1986-10-11" "1986-10-11"
## [10821] "1986-10-11" "1986-10-11" "1986-10-11" "1986-10-11" "1986-10-11"
## [10826] "1986-10-11" "1986-10-11" "1986-10-11" "1986-10-11" "1987-11-10"
## [10831] "1987-11-10" "1987-11-10" "1987-11-10" "1987-11-10" "1987-11-10"
## [10836] "1988-07-22" "1988-07-22" "1988-07-22" "1988-12-27" "1988-12-27"
## [10841] "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27"
## [10846] "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27"
## [10851] "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27"
## [10856] "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27"
## [10861] "1988-12-27" "1988-12-27" "1988-12-27" "1991-10-03" "1991-10-03"
## [10866] "1991-10-03" "1991-10-03" "1991-10-03" "1991-10-03" "1991-10-03"
## [10871] "1987-06-21" "1987-06-21" "1987-06-21" "1987-06-21" "1987-06-21"
## [10876] "1979-11-23" "1979-11-23" "1979-11-23" "1979-11-23" "1979-11-23"
## [10881] "1979-11-23" "1979-11-23" "1979-11-23" "1979-11-23" "1979-11-23"
## [10886] "1979-11-23" "1979-11-23" "1979-11-23" "1979-11-23" "1979-11-23"
## [10891] "1979-11-23" "1979-11-23" "1979-11-23" "1986-06-23" "1986-06-23"
## [10896] "1986-06-23" "1986-06-23" "1986-06-23" "1986-06-23" "1986-06-23"
## [10901] "1986-06-23" "1985-01-06" "1985-01-06" "1985-01-06" "1985-01-06"
## [10906] "1985-01-06" "1978-08-18" "1978-08-18" "1978-08-18" "1978-08-18"
## [10911] "1978-08-18" "1978-08-18" "1978-08-18" "1971-06-29" "1971-06-29"
## [10916] "1971-06-29" "1971-06-29" "1971-06-29" "1971-06-29" "1988-07-04"
## [10921] "1988-07-04" "1988-07-04" "1983-12-14" "1983-12-14" "1983-12-14"
## [10926] "1983-12-14" "1983-12-14" "1983-12-14" "1983-12-14" "1983-07-12"
## [10931] "1983-07-12" "1991-11-22" "1991-11-22" "1991-11-22" "1991-11-22"
## [10936] "1991-11-22" "1991-11-22" "1991-11-22" "1974-07-12" "1974-07-12"
## [10941] "1974-07-12" "1974-07-12" "1974-07-12" "1974-07-12" "1974-07-12"
## [10946] "1974-07-12" "1974-07-12" "1974-07-12" "1974-07-12" "1974-07-12"
## [10951] "1985-08-10" "1985-08-10" "1985-08-10" "1985-08-10" "1985-08-10"
## [10956] "1985-08-10" "1984-12-18" "1984-12-18" "1974-09-01" "1974-09-01"
## [10961] "1974-09-01" "1974-09-01" "1974-09-01" "1985-09-19" "1985-09-19"
## [10966] "1985-09-19" "1985-09-19" "1985-09-19" "1985-09-19" "1985-09-19"
## [10971] "1985-09-19" "1985-09-19" "1985-09-19" "1985-09-19" "1985-09-19"
## [10976] "1985-09-19" "1983-08-17" "1983-08-17" "1983-08-17" "1992-09-25"
## [10981] "1992-09-25" "1980-11-14" "1980-11-14" "1980-11-14" "1980-11-14"
## [10986] "1980-11-14" "1980-11-14" "1980-11-14" "1980-11-14" "1980-11-14"
## [10991] "1980-11-14" "1980-11-14" "1980-11-14" "1980-11-14" "1980-11-14"
## [10996] "1980-11-14" "1980-11-14" "1980-11-14" "1980-11-14" "1980-11-14"
## [11001] "1988-03-13" "1988-03-13" "1988-03-13" "1988-03-13" "1988-03-13"
## [11006] "1988-03-13" "1988-03-13" "1973-11-04" "1973-11-04" "1973-11-04"
## [11011] "1973-11-04" "1973-11-04" "1973-11-04" "1973-11-04" "1973-11-04"
## [11016] "1973-11-04" "1973-11-04" "1973-11-04" "1973-11-04" "1973-11-04"
## [11021] "1973-11-04" "1973-11-04" "1973-11-04" "1973-11-04" "1973-11-04"
## [11026] "1973-11-04" "1981-11-08" "1981-11-08" "1981-11-08" "1981-11-08"
## [11031] "1981-11-08" "1981-11-08" "1981-11-08" "1981-11-08" "1981-11-08"
## [11036] "1981-11-08" "1981-11-08" "1987-10-24" "1987-10-24" "1987-10-24"
## [11041] "1974-07-22" "1974-07-22" "1974-07-22" "1974-07-22" "1974-07-22"
## [11046] "1974-07-22" "1974-07-22" "1974-07-22" "1974-07-22" "1974-07-22"
## [11051] "1974-07-22" "1972-09-26" "1972-09-26" "1972-09-26" "1972-09-26"
## [11056] "1972-09-26" "1972-09-26" "1972-09-26" "1989-02-25" "1989-02-25"
## [11061] "1989-02-25" "1989-02-25" "1985-07-17" "1985-07-17" "1985-07-17"
## [11066] "1977-04-18" "1977-04-18" "1977-04-18" "1977-04-18" "1977-04-18"
## [11071] "1977-04-18" "1977-04-18" "1977-04-18" "1977-04-18" "1977-04-18"
## [11076] "1977-04-18" "1977-04-18" "1977-04-18" "1977-04-18" "1977-04-18"
## [11081] "1977-04-18" "1977-04-18" "1977-04-18" "1977-04-18" "1977-04-18"
## [11086] "1977-04-18" "1977-04-18" "1977-04-18" "1985-02-10" "1985-02-10"
## [11091] "1985-02-10" "1985-02-10" "1979-11-08" "1979-11-08" "1979-11-08"
## [11096] "1979-11-08" "1979-11-08" "1979-11-08" "1979-11-08" "1974-07-28"
## [11101] "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28"
## [11106] "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28"
## [11111] "1986-02-13" "1986-02-13" "1986-02-13" "1986-02-13" "1986-02-13"
## [11116] "1986-02-13" "1986-02-13" "1986-02-13" "1986-02-13" "1986-02-13"
## [11121] "1986-02-13" "1986-02-13" "1978-01-16" "1978-01-16" "1978-01-16"
## [11126] "1978-01-16" "1978-01-16" "1978-01-16" "1978-01-16" "1978-01-16"
## [11131] "1978-01-16" "1978-01-16" "1986-09-11" "1986-09-11" "1975-12-24"
## [11136] "1975-12-24" "1975-12-24" "1975-12-24" "1975-12-24" "1975-12-24"
## [11141] "1989-04-14" "1989-04-14" "1989-04-14" "1989-04-14" "1989-04-14"
## [11146] "1989-04-14" "1989-04-14" "1989-04-14" "1989-04-14" "1989-04-14"
## [11151] "1989-04-14" "1989-04-14" "1989-04-14" "1992-08-03" "1992-08-03"
## [11156] "1992-08-03" "1992-08-03" "1992-08-03" "1980-03-10" "1980-03-10"
## [11161] "1980-03-10" "1980-03-10" "1980-03-10" "1980-03-10" "1975-10-14"
## [11166] "1975-10-14" "1975-10-14" "1975-10-14" "1975-10-14" "1975-10-14"
## [11171] "1977-04-27" "1977-04-27" "1977-04-27" "1977-04-27" "1977-04-27"
## [11176] "1977-04-27" "1974-08-16" "1974-08-16" "1974-08-16" "1974-08-16"
## [11181] "1974-08-16" "1974-08-16" "1974-08-16" "1992-07-01" "1992-07-01"
## [11186] "1992-07-01" "1992-07-01" "1992-07-01" "1992-07-01" "1975-02-11"
## [11191] "1975-02-11" "1975-02-11" "1975-02-11" "1975-02-11" "1975-02-11"
## [11196] "1975-02-11" "1975-02-11" "1975-02-11" "1975-02-11" "1975-02-11"
## [11201] "1975-02-11" "1975-02-11" "1975-02-11" "1975-02-11" "1990-12-25"
## [11206] "1990-12-25" "1990-12-25" "1990-12-25" "1990-12-25" "1990-12-25"
## [11211] "1990-12-25" "1990-12-25" "1990-12-25" "1990-12-25" "1990-12-25"
## [11216] "1990-12-25" "1990-12-25" "1990-12-25" "1990-12-25" "1990-12-25"
## [11221] "1990-12-25" "1990-12-25" "1990-12-25" "1990-12-25" "1990-12-25"
## [11226] "1990-12-25" "1974-05-12" "1974-05-12" "1974-05-12" "1974-05-12"
## [11231] "1981-01-17" "1981-01-17" "1981-01-17" "1981-01-17" "1981-01-17"
## [11236] "1981-01-17" "1981-01-17" "1981-01-17" "1990-05-25" "1990-05-25"
## [11241] "1990-05-25" "1990-05-25" "1990-05-25" "1990-05-25" "1990-05-25"
## [11246] "1990-05-25" "1990-05-25" "1990-05-25" "1990-05-25" "1990-05-25"
## [11251] "1990-05-25" "1990-05-25" "1990-05-25" "1990-05-25" "1990-05-25"
## [11256] "1991-04-02" "1991-04-02" "1991-04-02" "1991-04-02" "1991-04-02"
## [11261] "1991-04-02" "1975-08-25" "1975-08-25" "1975-08-25" "1975-08-25"
## [11266] "1975-08-25" "1975-08-25" "1975-08-25" "1975-08-25" "1975-08-25"
## [11271] "1975-08-25" "1975-08-25" "1975-08-25" "1975-08-25" "1975-08-25"
## [11276] "1973-11-24" "1973-11-24" "1973-11-24" "1973-11-24" "1973-11-24"
## [11281] "1973-11-24" "1973-11-24" "1973-11-24" "1973-11-24" "1973-11-24"
## [11286] "1973-11-24" "1973-11-24" "1973-11-24" "1973-11-24" "1973-11-24"
## [11291] "1971-05-01" "1971-05-01" "1987-08-14" "1987-08-14" "1992-11-15"
## [11296] "1992-11-15" "1992-11-15" "1992-11-15" "1992-11-15" "1988-03-21"
## [11301] "1988-03-21" "1988-03-21" "1988-03-21" "1988-03-21" "1988-03-21"
## [11306] "1988-03-21" "1988-03-21" "1988-03-21" "1971-08-10" "1971-08-10"
## [11311] "1971-08-10" "1971-08-10" "1971-08-10" "1971-08-10" "1971-08-10"
## [11316] "1971-08-10" "1988-12-11" "1988-12-11" "1988-12-11" "1988-12-11"
## [11321] "1988-12-11" "1991-06-27" "1991-06-27" "1972-04-07" "1972-04-07"
## [11326] "1972-04-07" "1972-04-07" "1972-04-07" "1979-10-27" "1979-10-27"
## [11331] "1979-10-27" "1979-10-27" "1979-10-27" "1979-10-27" "1979-10-27"
## [11336] "1979-10-27" "1979-10-27" "1986-05-23" "1986-05-23" "1986-05-23"
## [11341] "1986-05-23" "1986-05-23" "1986-05-23" "1986-05-23" "1986-05-23"
## [11346] "1986-05-23" "1986-05-23" "1986-05-23" "1986-05-23" "1973-08-16"
## [11351] "1973-08-16" "1973-08-16" "1973-08-16" "1973-08-16" "1990-05-22"
## [11356] "1990-05-22" "1990-05-22" "1990-05-22" "1990-05-22" "1990-05-22"
## [11361] "1990-05-22" "1990-05-22" "1990-05-22" "1990-05-22" "1990-05-22"
## [11366] "1990-05-22" "1990-05-22" "1992-12-12" "1992-12-12" "1992-12-12"
## [11371] "1992-12-12" "1992-12-12" "1992-12-12" "1992-12-12" "1992-12-12"
## [11376] "1982-03-29" "1982-03-29" "1982-03-29" "1982-03-29" "1982-03-29"
## [11381] "1982-03-29" "1982-03-29" "1982-03-29" "1982-03-29" "1982-03-29"
## [11386] "1982-03-29" "1982-03-29" "1982-03-29" "1982-03-29" "1982-03-29"
## [11391] "1982-03-29" "1982-03-29" "1982-03-29" "1982-03-29" "1982-03-29"
## [11396] "1982-03-29" "1982-03-29" "1987-10-19" "1987-10-19" "1987-10-19"
## [11401] "1987-10-19" "1987-10-19" "1987-10-19" "1987-10-19" "1987-10-19"
## [11406] "1976-10-10" "1976-10-10" "1980-07-18" "1980-07-18" "1980-07-18"
## [11411] "1980-07-18" "1980-07-18" "1980-07-18" "1980-07-18" "1980-07-18"
## [11416] "1980-07-18" "1980-07-18" "1980-07-18" "1980-07-18" "1980-07-18"
## [11421] "1980-07-18" "1980-07-18" "1980-07-18" "1980-07-18" "1980-07-18"
## [11426] "1980-07-18" "1980-07-18" "1980-07-18" "1975-07-18" "1975-07-18"
## [11431] "1975-07-18" "1975-07-18" "1988-02-26" "1988-02-26" "1988-02-26"
## [11436] "1988-02-26" "1988-02-26" "1988-02-26" "1988-02-26" "1988-02-26"
## [11441] "1988-02-26" "1988-02-26" "1988-02-26" "1988-02-26" "1988-02-26"
## [11446] "1988-02-26" "1988-02-26" "1988-02-26" "1988-02-26" "1988-02-26"
## [11451] "1988-02-26" "1988-02-26" "1988-02-26" "1988-02-26" "1988-02-26"
## [11456] "1988-02-26" "1988-02-26" "1988-02-26" "1977-11-24" "1977-11-24"
## [11461] "1977-11-24" "1977-11-24" "1977-11-24" "1977-11-24" "1977-11-24"
## [11466] "1986-02-14" "1986-02-14" "1986-02-14" "1986-02-14" "1986-02-14"
## [11471] "1986-02-14" "1974-12-26" "1974-12-26" "1974-12-26" "1974-12-26"
## [11476] "1974-12-26" "1974-12-26" "1978-05-16" "1978-05-16" "1978-05-16"
## [11481] "1978-05-16" "1978-05-16" "1978-05-16" "1991-11-27" "1991-11-27"
## [11486] "1991-11-27" "1991-11-27" "1991-11-27" "1991-11-27" "1991-11-27"
## [11491] "1989-05-29" "1989-05-29" "1989-05-29" "1989-05-29" "1989-05-29"
## [11496] "1989-05-29" "1989-05-29" "1989-05-29" "1989-05-29" "1989-05-29"
## [11501] "1989-05-29" "1976-06-05" "1976-06-05" "1976-06-05" "1976-06-05"
## [11506] "1976-06-05" "1976-06-05" "1983-11-28" "1983-11-28" "1983-11-28"
## [11511] "1983-11-28" "1983-11-28" "1983-11-28" "1983-11-28" "1983-11-28"
## [11516] "1983-11-28" "1983-11-28" "1983-11-28" "1983-11-28" "1983-11-28"
## [11521] "1985-04-27" "1985-04-27" "1985-04-27" "1985-04-27" "1985-04-27"
## [11526] "1982-08-06" "1982-08-06" "1982-08-06" "1982-08-06" "1986-09-13"
## [11531] "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13"
## [11536] "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13"
## [11541] "1986-09-13" "1984-05-28" "1984-05-28" "1984-05-28" "1984-05-28"
## [11546] "1984-05-28" "1984-05-28" "1984-05-28" "1984-05-28" "1984-05-28"
## [11551] "1984-05-28" "1984-05-28" "1984-05-28" "1984-05-28" "1984-05-28"
## [11556] "1984-05-28" "1984-05-28" "1984-05-28" "1984-05-28" "1984-05-28"
## [11561] "1984-05-28" "1984-05-28" "1984-05-28" "1984-05-28" "1984-05-28"
## [11566] "1984-05-28" "1984-05-28" "1972-06-01" "1972-06-01" "1972-06-01"
## [11571] "1972-06-01" "1972-06-01" "1976-05-02" "1976-05-02" "1976-05-02"
## [11576] "1976-05-02" "1976-05-02" "1976-05-02" "1976-05-02" "1976-05-02"
## [11581] "1976-05-02" "1976-05-02" "1976-05-02" "1976-05-02" "1976-05-02"
## [11586] "1976-05-02" "1976-05-02" "1971-11-29" "1971-11-29" "1976-10-14"
## [11591] "1976-10-14" "1976-10-14" "1976-10-14" "1976-10-14" "1976-10-14"
## [11596] "1976-10-14" "1976-10-14" "1979-08-29" "1979-08-29" "1979-08-29"
## [11601] "1983-08-28" "1983-08-28" "1983-08-28" "1983-08-28" "1983-08-28"
## [11606] "1986-05-17" "1986-05-17" "1986-05-17" "1987-05-19" "1987-05-19"
## [11611] "1987-05-19" "1987-05-19" "1987-05-19" "1987-05-19" "1987-05-19"
## [11616] "1987-05-19" "1987-05-19" "1987-05-19" "1987-05-19" "1987-05-19"
## [11621] "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25"
## [11626] "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25"
## [11631] "1974-02-25" "1990-06-02" "1990-06-02" "1990-06-02" "1990-06-02"
## [11636] "1990-06-02" "1990-06-02" "1976-03-21" "1976-03-21" "1976-03-21"
## [11641] "1976-03-21" "1976-03-21" "1972-12-26" "1972-12-26" "1972-12-26"
## [11646] "1972-12-26" "1985-11-04" "1985-11-04" "1985-11-04" "1985-11-04"
## [11651] "1985-11-04" "1985-11-04" "1974-05-11" "1974-05-11" "1974-05-11"
## [11656] "1974-05-11" "1974-05-11" "1974-05-11" "1974-05-11" "1974-05-11"
## [11661] "1974-05-11" "1974-05-11" "1974-05-11" "1974-05-11" "1974-05-11"
## [11666] "1974-05-11" "1974-03-17" "1974-03-17" "1974-03-17" "1981-05-21"
## [11671] "1981-05-21" "1981-05-21" "1981-05-21" "1981-05-21" "1981-05-21"
## [11676] "1978-02-09" "1978-02-09" "1978-02-09" "1978-02-09" "1978-02-09"
## [11681] "1978-02-09" "1978-02-09" "1978-02-09" "1978-02-09" "1978-02-09"
## [11686] "1978-02-09" "1978-02-09" "1978-02-09" "1978-02-09" "1978-02-09"
## [11691] "1978-02-09" "1986-07-01" "1986-07-01" "1986-07-01" "1986-07-01"
## [11696] "1986-07-01" "1986-07-01" "1986-07-01" "1986-07-01" "1986-07-01"
## [11701] "1986-07-01" "1972-10-19" "1972-10-19" "1972-10-19" "1972-10-19"
## [11706] "1972-10-19" "1972-10-19" "1989-11-10" "1989-11-10" "1989-11-10"
## [11711] "1989-11-10" "1989-11-10" "1989-11-10" "1989-11-10" "1989-11-10"
## [11716] "1987-07-07" "1987-07-07" "1987-07-07" "1987-07-07" "1987-07-07"
## [11721] "1987-07-07" "1987-07-07" "1987-07-07" "1987-07-07" "1987-07-07"
## [11726] "1987-07-07" "1987-07-07" "1985-04-10" "1985-04-10" "1985-04-10"
## [11731] "1985-04-10" "1985-04-10" "1985-04-10" "1985-04-10" "1985-04-10"
## [11736] "1976-07-04" "1976-07-04" "1976-07-04" "1976-07-04" "1976-07-04"
## [11741] "1976-07-04" "1976-07-04" "1976-07-04" "1976-07-04" "1984-03-07"
## [11746] "1984-03-07" "1984-03-07" "1986-05-12" "1986-05-12" "1986-05-12"
## [11751] "1986-05-12" "1986-05-12" "1986-05-12" "1986-05-12" "1986-05-12"
## [11756] "1986-05-12" "1986-05-12" "1986-05-12" "1970-10-12" "1970-10-12"
## [11761] "1970-10-12" "1989-11-28" "1989-11-28" "1976-08-28" "1976-08-28"
## [11766] "1976-08-28" "1976-08-28" "1976-08-28" "1976-08-28" "1976-08-28"
## [11771] "1976-08-28" "1976-08-28" "1976-08-28" "1976-08-28" "1976-08-28"
## [11776] "1976-08-28" "1976-08-28" "1976-08-28" "1975-06-11" "1975-06-11"
## [11781] "1975-06-11" "1975-06-11" "1975-06-11" "1975-06-11" "1975-06-11"
## [11786] "1975-06-11" "1975-06-11" "1975-06-11" "1975-06-11" "1975-06-11"
## [11791] "1975-06-11" "1975-06-11" "1975-06-11" "1975-06-11" "1975-06-11"
## [11796] "1975-06-11" "1975-06-11" "1975-06-11" "1975-06-11" "1975-06-11"
## [11801] "1975-06-11" "1975-06-11" "1975-06-11" "1973-08-12" "1973-08-12"
## [11806] "1973-08-12" "1973-08-12" "1973-08-12" "1973-08-12" "1973-08-12"
## [11811] "1973-08-12" "1973-08-12" "1973-08-12" "1973-08-12" "1973-08-12"
## [11816] "1973-08-12" "1973-08-12" "1973-08-12" "1973-08-12" "1973-08-12"
## [11821] "1973-08-12" "1973-08-12" "1973-08-12" "1973-08-12" "1973-08-12"
## [11826] "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16"
## [11831] "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16"
## [11836] "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16" "1979-06-24"
## [11841] "1979-06-24" "1979-06-24" "1979-06-24" "1973-09-29" "1973-09-29"
## [11846] "1973-09-29" "1973-09-29" "1973-09-29" "1973-09-29" "1970-02-13"
## [11851] "1970-02-13" "1970-02-13" "1970-02-13" "1970-02-13" "1970-02-13"
## [11856] "1970-02-13" "1973-10-14" "1973-10-14" "1973-10-14" "1973-10-14"
## [11861] "1973-10-14" "1973-10-14" "1973-10-14" "1973-10-14" "1973-10-14"
## [11866] "1972-07-20" "1972-07-20" "1972-07-20" "1972-07-20" "1972-07-20"
## [11871] "1972-07-20" "1972-07-20" "1972-07-20" "1972-07-20" "1972-07-20"
## [11876] "1972-07-20" "1972-07-20" "1979-11-27" "1979-11-27" "1979-11-27"
## [11881] "1979-11-27" "1979-11-27" "1979-11-27" "1991-07-15" "1991-07-15"
## [11886] "1991-07-15" "1991-07-15" "1991-07-15" "1983-03-12" "1983-03-12"
## [11891] "1983-03-12" "1983-03-12" "1983-03-12" "1989-09-10" "1989-09-10"
## [11896] "1989-09-10" "1989-09-10" "1989-09-10" "1989-09-10" "1980-05-09"
## [11901] "1980-05-09" "1980-05-09" "1980-05-09" "1980-05-09" "1980-05-09"
## [11906] "1980-05-09" "1980-05-09" "1980-05-09" "1980-05-09" "1980-05-09"
## [11911] "1980-05-09" "1980-05-09" "1980-05-09" "1980-05-09" "1980-05-09"
## [11916] "1972-01-14" "1972-01-14" "1972-01-14" "1972-01-14" "1972-01-14"
## [11921] "1979-03-19" "1979-03-19" "1979-11-21" "1979-11-21" "1979-11-21"
## [11926] "1979-11-21" "1979-11-21" "1979-11-21" "1979-11-21" "1979-11-21"
## [11931] "1979-11-21" "1979-11-21" "1992-09-18" "1992-09-18" "1992-09-18"
## [11936] "1992-09-18" "1992-09-18" "1982-05-13" "1982-05-13" "1982-05-13"
## [11941] "1986-09-24" "1986-09-24" "1986-09-24" "1986-09-24" "1986-09-24"
## [11946] "1986-09-24" "1986-09-24" "1971-11-14" "1971-11-14" "1973-02-24"
## [11951] "1973-02-24" "1973-02-24" "1973-02-24" "1973-02-24" "1973-02-24"
## [11956] "1973-02-24" "1973-02-24" "1973-02-24" "1973-02-24" "1973-02-24"
## [11961] "1973-02-24" "1973-02-24" "1973-02-24" "1972-12-16" "1972-12-16"
## [11966] "1972-12-16" "1972-12-16" "1972-12-16" "1972-12-16" "1972-12-16"
## [11971] "1972-12-16" "1972-01-03" "1972-01-03" "1972-01-03" "1972-01-03"
## [11976] "1972-01-03" "1972-01-03" "1972-01-03" "1972-01-03" "1972-01-03"
## [11981] "1972-01-03" "1972-01-03" "1972-01-03" "1972-01-03" "1987-07-20"
## [11986] "1987-07-20" "1983-11-17" "1983-11-17" "1983-11-17" "1983-11-17"
## [11991] "1983-11-17" "1983-11-17" "1983-11-17" "1983-11-17" "1983-11-17"
## [11996] "1983-11-17" "1983-11-17" "1978-08-12" "1978-08-12" "1978-08-12"
## [12001] "1978-08-12" "1978-08-12" "1978-08-12" "1978-08-12" "1978-08-12"
## [12006] "1978-08-12" "1978-08-12" "1978-08-12" "1985-11-24" "1985-11-24"
## [12011] "1985-11-24" "1985-11-24" "1985-11-24" "1985-11-24" "1985-11-24"
## [12016] "1985-11-24" "1985-11-24" "1985-11-24" "1980-04-16" "1980-04-16"
## [12021] "1980-04-16" "1980-04-16" "1988-11-04" "1988-11-04" "1988-11-04"
## [12026] "1988-11-04" "1988-11-04" "1988-11-04" "1988-11-04" "1988-11-04"
## [12031] "1988-11-04" "1988-11-04" "1988-11-04" "1986-06-28" "1986-06-28"
## [12036] "1986-06-28" "1986-06-28" "1986-06-28" "1986-06-28" "1986-06-28"
## [12041] "1986-06-28" "1986-06-28" "1986-06-28" "1986-06-28" "1986-06-28"
## [12046] "1986-06-28" "1984-09-15" "1984-09-15" "1984-09-15" "1984-09-15"
## [12051] "1984-09-15" "1984-09-15" "1984-09-15" "1984-09-15" "1984-09-15"
## [12056] "1984-09-15" "1984-09-15" "1984-09-15" "1984-09-15" "1984-09-15"
## [12061] "1984-09-15" "1975-07-28" "1975-07-28" "1975-07-28" "1975-07-28"
## [12066] "1975-07-28" "1975-07-28" "1975-07-28" "1975-07-28" "1975-07-28"
## [12071] "1975-07-28" "1975-07-28" "1975-07-28" "1975-07-28" "1975-07-28"
## [12076] "1975-07-28" "1975-07-28" "1985-04-08" "1985-04-08" "1985-04-08"
## [12081] "1985-04-08" "1985-04-08" "1985-06-18" "1985-06-18" "1985-06-18"
## [12086] "1985-06-18" "1985-06-18" "1985-01-24" "1985-01-24" "1985-01-24"
## [12091] "1985-01-24" "1985-01-24" "1985-01-24" "1985-01-24" "1985-01-24"
## [12096] "1985-01-24" "1985-01-24" "1985-01-24" "1985-01-24" "1985-01-24"
## [12101] "1985-01-24" "1985-01-24" "1985-01-24" "1985-01-24" "1985-01-24"
## [12106] "1977-11-11" "1977-11-11" "1977-11-11" "1977-11-11" "1977-11-11"
## [12111] "1977-11-11" "1987-04-29" "1987-04-29" "1987-04-29" "1987-04-29"
## [12116] "1987-04-29" "1987-04-29" "1987-04-29" "1987-04-29" "1987-04-29"
## [12121] "1987-04-29" "1987-04-29" "1987-04-29" "1971-07-29" "1971-07-29"
## [12126] "1985-08-27" "1985-08-27" "1985-08-27" "1985-08-27" "1985-08-27"
## [12131] "1985-08-27" "1985-08-27" "1985-08-27" "1973-06-23" "1973-06-23"
## [12136] "1973-06-23" "1973-06-23" "1973-06-23" "1973-06-23" "1978-11-05"
## [12141] "1978-11-05" "1979-02-15" "1979-02-15" "1979-02-15" "1979-02-15"
## [12146] "1979-02-15" "1980-08-20" "1980-08-20" "1980-08-20" "1980-08-20"
## [12151] "1980-08-20" "1980-08-20" "1980-08-20" "1980-08-20" "1980-08-20"
## [12156] "1988-07-10" "1988-07-10" "1988-07-10" "1988-07-10" "1988-07-10"
## [12161] "1988-07-10" "1981-01-09" "1981-01-09" "1981-01-09" "1981-08-14"
## [12166] "1981-08-14" "1981-08-14" "1981-08-14" "1981-08-14" "1981-08-14"
## [12171] "1981-08-14" "1981-08-14" "1981-08-14" "1981-08-14" "1981-08-14"
## [12176] "1981-08-14" "1981-08-14" "1981-08-14" "1981-08-14" "1981-08-14"
## [12181] "1981-08-14" "1981-08-14" "1981-08-14" "1981-08-14" "1992-04-23"
## [12186] "1992-04-23" "1992-04-23" "1979-04-13" "1979-04-13" "1979-04-13"
## [12191] "1976-03-09" "1976-03-09" "1976-03-09" "1976-03-09" "1976-03-09"
## [12196] "1976-03-09" "1976-03-09" "1976-03-09" "1976-03-09" "1976-03-09"
## [12201] "1976-03-09" "1976-03-09" "1976-03-09" "1987-02-25" "1987-02-25"
## [12206] "1987-02-25" "1987-02-25" "1987-02-25" "1986-07-19" "1986-07-19"
## [12211] "1986-07-19" "1986-07-19" "1986-07-19" "1986-07-19" "1984-07-08"
## [12216] "1984-07-08" "1984-07-08" "1984-07-08" "1984-07-08" "1984-07-08"
## [12221] "1984-07-08" "1984-07-08" "1984-07-08" "1984-07-08" "1984-07-08"
## [12226] "1984-07-08" "1978-07-09" "1978-07-09" "1978-07-09" "1978-07-09"
## [12231] "1978-07-09" "1978-07-09" "1978-07-09" "1978-07-09" "1984-02-03"
## [12236] "1984-02-03" "1984-02-03" "1984-02-03" "1984-02-03" "1984-02-03"
## [12241] "1984-02-03" "1984-02-03" "1976-11-06" "1976-11-06" "1976-11-06"
## [12246] "1976-11-06" "1976-11-06" "1976-11-06" "1976-11-06" "1973-05-09"
## [12251] "1973-05-09" "1973-05-09" "1973-05-09" "1973-05-09" "1973-05-09"
## [12256] "1980-03-29" "1980-03-29" "1980-03-29" "1980-03-29" "1980-03-29"
## [12261] "1980-03-29" "1980-03-29" "1980-03-29" "1978-08-14" "1978-08-14"
## [12266] "1978-08-14" "1978-08-14" "1978-08-14" "1978-08-14" "1978-08-14"
## [12271] "1978-08-14" "1978-08-14" "1978-08-14" "1978-08-14" "1971-02-23"
## [12276] "1971-02-23" "1971-02-23" "1971-02-23" "1971-02-23" "1971-02-23"
## [12281] "1971-02-23" "1971-02-23" "1971-02-23" "1971-02-23" "1971-02-23"
## [12286] "1971-02-23" "1971-02-23" "1971-02-23" "1971-02-23" "1971-02-23"
## [12291] "1971-02-23" "1971-02-23" "1971-02-23" "1971-02-23" "1971-02-23"
## [12296] "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11"
## [12301] "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11"
## [12306] "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11"
## [12311] "1989-05-18" "1989-05-18" "1989-05-18" "1989-05-18" "1989-05-18"
## [12316] "1989-05-18" "1989-05-18" "1989-05-18" "1989-05-18" "1989-05-18"
## [12321] "1989-05-18" "1990-04-21" "1990-04-21" "1990-04-21" "1990-04-21"
## [12326] "1992-04-05" "1992-04-05" "1992-04-05" "1992-04-05" "1992-04-05"
## [12331] "1992-04-05" "1992-04-05" "1992-04-05" "1978-03-09" "1978-03-09"
## [12336] "1978-03-09" "1978-03-09" "1978-03-09" "1978-03-09" "1978-03-09"
## [12341] "1980-06-27" "1980-06-27" "1975-10-18" "1975-10-18" "1975-10-18"
## [12346] "1975-10-18" "1975-10-18" "1975-10-18" "1975-10-18" "1975-10-18"
## [12351] "1975-10-18" "1975-10-18" "1975-10-18" "1975-10-18" "1975-10-18"
## [12356] "1975-10-18" "1979-08-19" "1979-08-19" "1977-06-23" "1977-06-23"
## [12361] "1977-06-23" "1977-06-23" "1977-06-23" "1977-06-23" "1977-06-23"
## [12366] "1977-06-23" "1989-05-20" "1989-05-20" "1989-05-20" "1989-05-20"
## [12371] "1989-05-20" "1989-05-20" "1989-05-20" "1989-05-20" "1989-01-22"
## [12376] "1989-01-22" "1979-06-10" "1979-06-10" "1979-06-10" "1979-06-10"
## [12381] "1979-06-10" "1979-06-10" "1979-06-10" "1979-06-10" "1972-03-10"
## [12386] "1972-03-10" "1972-03-10" "1972-03-10" "1972-03-10" "1972-03-10"
## [12391] "1972-03-10" "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09"
## [12396] "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09"
## [12401] "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09"
## [12406] "1990-12-09" "1980-02-24" "1980-02-24" "1980-02-24" "1980-02-24"
## [12411] "1980-02-24" "1980-02-24" "1980-02-24" "1980-02-24" "1975-02-20"
## [12416] "1975-02-20" "1975-02-20" "1975-02-20" "1975-02-20" "1975-02-20"
## [12421] "1975-02-20" "1972-02-28" "1972-02-28" "1972-02-28" "1972-02-28"
## [12426] "1972-02-28" "1972-02-28" "1972-02-28" "1982-12-06" "1982-12-06"
## [12431] "1982-12-06" "1982-12-06" "1982-12-06" "1982-12-06" "1982-12-06"
## [12436] "1982-12-06" "1982-12-06" "1982-12-06" "1988-04-19" "1988-04-19"
## [12441] "1988-04-19" "1988-04-19" "1988-04-19" "1986-07-05" "1986-07-05"
## [12446] "1986-07-05" "1986-07-05" "1986-07-05" "1985-09-10" "1985-09-10"
## [12451] "1985-09-10" "1985-09-10" "1985-09-10" "1985-09-10" "1985-09-10"
## [12456] "1985-09-10" "1985-09-10" "1985-09-10" "1985-09-10" "1985-09-10"
## [12461] "1985-09-10" "1985-09-10" "1985-09-10" "1985-09-10" "1985-09-10"
## [12466] "1985-09-10" "1983-11-01" "1983-11-01" "1983-11-01" "1983-11-01"
## [12471] "1983-11-01" "1983-11-01" "1983-11-01" "1983-11-01" "1983-11-01"
## [12476] "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01"
## [12481] "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01"
## [12486] "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01" "1971-02-20"
## [12491] "1971-02-20" "1971-02-20" "1971-02-20" "1971-02-20" "1971-02-20"
## [12496] "1971-02-20" "1971-02-20" "1971-02-20" "1971-02-20" "1971-02-20"
## [12501] "1971-02-20" "1979-07-21" "1979-07-21" "1979-07-21" "1979-07-21"
## [12506] "1979-07-21" "1990-04-09" "1990-04-09" "1974-06-14" "1974-06-14"
## [12511] "1974-06-14" "1974-06-14" "1974-06-14" "1974-06-14" "1974-06-14"
## [12516] "1974-06-14" "1974-06-14" "1974-06-14" "1974-06-14" "1974-06-14"
## [12521] "1974-06-14" "1991-09-22" "1991-09-22" "1991-09-22" "1991-09-22"
## [12526] "1991-09-22" "1991-09-22" "1992-12-04" "1992-12-04" "1992-12-04"
## [12531] "1992-12-04" "1992-12-04" "1984-10-21" "1984-10-21" "1984-10-21"
## [12536] "1984-10-21" "1984-10-21" "1984-10-21" "1984-10-21" "1984-10-21"
## [12541] "1991-01-13" "1991-01-13" "1991-01-13" "1991-01-13" "1991-01-13"
## [12546] "1991-01-13" "1991-01-13" "1991-01-13" "1991-01-13" "1991-01-13"
## [12551] "1991-01-13" "1991-01-13" "1991-01-13" "1991-01-13" "1991-01-13"
## [12556] "1991-01-13" "1978-03-07" "1978-03-07" "1978-03-07" "1978-03-07"
## [12561] "1978-03-07" "1976-01-05" "1976-01-05" "1976-01-05" "1976-01-05"
## [12566] "1976-01-05" "1992-04-22" "1992-04-22" "1992-04-22" "1992-04-22"
## [12571] "1992-04-22" "1992-04-22" "1992-04-22" "1992-04-22" "1992-04-22"
## [12576] "1992-04-22" "1981-04-29" "1981-04-29" "1981-04-29" "1981-04-29"
## [12581] "1981-04-29" "1981-04-29" "1981-04-29" "1981-04-29" "1981-04-29"
## [12586] "1992-02-01" "1992-02-01" "1992-02-01" "1992-02-01" "1992-02-01"
## [12591] "1992-01-28" "1992-01-28" "1992-01-28" "1992-01-28" "1992-01-28"
## [12596] "1992-01-28" "1992-01-28" "1992-01-28" "1992-01-28" "1992-01-28"
## [12601] "1992-01-28" "1992-01-28" "1992-01-28" "1992-01-28" "1992-01-28"
## [12606] "1992-01-28" "1991-05-06" "1991-05-06" "1992-01-05" "1992-01-05"
## [12611] "1992-01-05" "1992-01-05" "1992-01-05" "1992-01-05" "1992-01-05"
## [12616] "1992-01-05" "1992-01-05" "1992-01-05" "1972-01-24" "1972-01-24"
## [12621] "1972-01-24" "1972-01-24" "1972-01-24" "1972-01-24" "1972-01-24"
## [12626] "1972-01-24" "1972-01-24" "1982-09-06" "1982-09-06" "1982-09-06"
## [12631] "1982-09-06" "1982-09-06" "1982-09-06" "1982-09-06" "1982-09-06"
## [12636] "1982-09-06" "1982-09-06" "1989-05-29" "1989-05-29" "1989-05-29"
## [12641] "1989-05-29" "1989-05-29" "1989-05-29" "1989-05-29" "1989-08-03"
## [12646] "1989-08-03" "1989-08-03" "1989-08-03" "1989-08-03" "1989-08-03"
## [12651] "1989-08-03" "1981-05-17" "1981-05-17" "1981-05-17" "1981-05-17"
## [12656] "1981-05-17" "1981-05-17" "1973-07-28" "1973-07-28" "1973-07-28"
## [12661] "1973-07-28" "1973-07-28" "1973-07-28" "1973-07-28" "1973-07-28"
## [12666] "1973-07-28" "1973-07-28" "1973-07-28" "1973-07-28" "1973-07-28"
## [12671] "1990-05-01" "1990-05-01" "1990-05-01" "1990-05-01" "1990-05-01"
## [12676] "1990-05-01" "1990-05-01" "1990-05-01" "1990-05-01" "1990-05-01"
## [12681] "1990-05-01" "1990-05-01" "1990-05-01" "1990-05-01" "1990-05-01"
## [12686] "1990-05-01" "1990-05-01" "1990-05-01" "1990-05-01" "1990-05-01"
## [12691] "1979-10-25" "1979-10-25" "1979-10-25" "1979-10-25" "1979-10-25"
## [12696] "1977-05-06" "1977-05-06" "1977-05-06" "1977-05-06" "1977-05-06"
## [12701] "1977-05-06" "1977-05-06" "1977-05-06" "1977-05-06" "1977-05-06"
## [12706] "1977-05-06" "1977-08-01" "1977-08-01" "1987-05-13" "1987-05-13"
## [12711] "1987-05-13" "1987-05-13" "1987-05-13" "1987-05-13" "1987-05-13"
## [12716] "1987-05-13" "1987-05-13" "1987-05-13" "1985-05-14" "1985-05-14"
## [12721] "1985-05-14" "1985-05-14" "1985-05-14" "1985-05-14" "1985-05-14"
## [12726] "1985-05-14" "1985-05-14" "1985-05-14" "1985-05-14" "1985-05-14"
## [12731] "1985-05-14" "1985-05-14" "1985-05-14" "1985-05-14" "1989-06-04"
## [12736] "1989-06-04" "1989-06-04" "1989-06-04" "1989-06-04" "1989-06-04"
## [12741] "1989-06-04" "1989-06-04" "1989-06-04" "1989-06-04" "1989-06-04"
## [12746] "1989-06-04" "1989-06-04" "1989-06-04" "1989-06-04" "1989-06-04"
## [12751] "1986-06-12" "1986-06-12" "1986-06-12" "1986-06-12" "1986-06-12"
## [12756] "1986-06-12" "1986-06-12" "1986-06-12" "1986-06-12" "1986-06-12"
## [12761] "1975-08-27" "1975-08-27" "1975-08-27" "1975-08-27" "1975-08-27"
## [12766] "1975-08-27" "1975-08-27" "1975-08-27" "1975-08-27" "1976-02-04"
## [12771] "1976-02-04" "1976-02-04" "1976-02-04" "1976-02-04" "1976-02-04"
## [12776] "1973-10-25" "1973-10-25" "1973-10-25" "1973-10-25" "1973-10-25"
## [12781] "1973-10-25" "1973-10-25" "1973-10-25" "1973-10-25" "1973-10-25"
## [12786] "1973-10-25" "1973-10-25" "1973-10-25" "1973-10-25" "1973-10-25"
## [12791] "1973-10-25" "1973-10-25" "1973-10-25" "1973-10-25" "1982-03-21"
## [12796] "1982-03-21" "1982-03-21" "1982-03-21" "1982-03-21" "1982-03-21"
## [12801] "1982-03-21" "1982-03-21" "1982-03-21" "1982-03-21" "1982-03-21"
## [12806] "1982-03-21" "1982-03-21" "1979-05-27" "1979-05-27" "1979-05-27"
## [12811] "1979-05-27" "1979-05-27" "1979-05-27" "1979-05-27" "1979-05-27"
## [12816] "1984-07-06" "1984-07-06" "1984-07-06" "1984-07-06" "1984-07-06"
## [12821] "1984-07-06" "1984-07-06" "1984-07-06" "1984-07-06" "1979-07-29"
## [12826] "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29"
## [12831] "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29" "1979-07-29"
## [12836] "1979-07-29" "1979-07-29" "1985-10-11" "1985-10-11" "1985-10-11"
## [12841] "1985-10-11" "1985-10-11" "1985-10-11" "1983-05-25" "1983-05-25"
## [12846] "1983-05-25" "1983-05-25" "1983-05-25" "1983-05-25" "1983-05-25"
## [12851] "1983-05-25" "1983-05-25" "1983-05-25" "1983-05-25" "1983-05-25"
## [12856] "1983-05-25" "1983-05-25" "1975-08-15" "1975-08-15" "1975-08-15"
## [12861] "1975-08-15" "1975-08-15" "1975-08-15" "1975-08-15" "1975-08-15"
## [12866] "1975-08-15" "1975-08-15" "1975-08-15" "1975-08-15" "1975-08-15"
## [12871] "1975-08-15" "1972-07-22" "1972-07-22" "1972-07-22" "1972-07-22"
## [12876] "1983-01-16" "1983-01-16" "1983-01-16" "1983-01-16" "1983-01-16"
## [12881] "1983-01-16" "1983-01-16" "1983-01-16" "1983-01-16" "1983-01-16"
## [12886] "1991-03-02" "1991-03-02" "1991-03-02" "1991-03-02" "1991-03-02"
## [12891] "1991-03-02" "1991-03-02" "1991-03-02" "1988-04-22" "1988-04-22"
## [12896] "1984-03-05" "1984-03-05" "1984-03-05" "1984-03-05" "1984-03-05"
## [12901] "1984-03-05" "1984-04-04" "1984-04-04" "1976-08-28" "1976-08-28"
## [12906] "1976-08-28" "1976-08-28" "1976-08-28" "1976-08-28" "1976-08-28"
## [12911] "1976-08-28" "1976-08-28" "1976-08-28" "1976-08-28" "1976-08-28"
## [12916] "1976-08-28" "1976-08-28" "1987-07-26" "1987-07-26" "1987-07-26"
## [12921] "1987-07-26" "1987-07-26" "1987-07-26" "1987-07-26" "1987-07-26"
## [12926] "1976-08-20" "1976-08-20" "1976-08-20" "1976-08-20" "1976-08-20"
## [12931] "1976-08-20" "1976-08-20" "1976-08-20" "1976-08-20" "1976-08-20"
## [12936] "1976-08-20" "1978-04-21" "1978-04-21" "1978-04-21" "1978-04-21"
## [12941] "1978-04-21" "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26"
## [12946] "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26"
## [12951] "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26"
## [12956] "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26"
## [12961] "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26"
## [12966] "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26"
## [12971] "1979-02-26" "1979-02-26" "1979-02-26" "1979-02-26" "1982-07-15"
## [12976] "1982-07-15" "1982-07-15" "1971-04-06" "1971-04-06" "1971-04-06"
## [12981] "1971-04-06" "1971-04-06" "1971-04-06" "1971-04-06" "1971-04-06"
## [12986] "1971-04-06" "1971-04-06" "1971-04-06" "1992-08-17" "1992-08-17"
## [12991] "1992-08-17" "1992-08-17" "1992-08-17" "1992-08-17" "1992-08-17"
## [12996] "1992-08-17" "1992-08-17" "1992-08-17" "1992-08-17" "1992-08-17"
## [13001] "1981-04-28" "1981-04-28" "1981-04-28" "1982-12-13" "1982-12-13"
## [13006] "1982-12-13" "1982-12-13" "1982-12-13" "1982-12-13" "1982-12-13"
## [13011] "1982-12-13" "1977-07-18" "1977-07-18" "1977-07-18" "1977-07-18"
## [13016] "1977-07-18" "1977-07-18" "1977-07-18" "1977-07-18" "1977-07-18"
## [13021] "1977-07-18" "1977-07-18" "1977-07-18" "1977-07-18" "1977-07-18"
## [13026] "1977-07-18" "1987-10-11" "1987-10-11" "1987-10-11" "1987-10-11"
## [13031] "1987-10-11" "1987-10-11" "1987-10-11" "1987-10-11" "1987-10-11"
## [13036] "1987-10-11" "1987-10-11" "1987-10-11" "1987-10-11" "1987-10-11"
## [13041] "1987-10-11" "1987-10-11" "1987-10-11" "1987-10-11" "1984-06-09"
## [13046] "1984-06-09" "1984-06-09" "1984-06-09" "1984-06-09" "1984-06-09"
## [13051] "1984-06-09" "1984-06-09" "1984-06-09" "1984-06-09" "1984-06-09"
## [13056] "1984-06-09" "1984-06-09" "1984-06-09" "1975-07-10" "1975-07-10"
## [13061] "1975-07-10" "1975-07-10" "1981-12-20" "1981-12-20" "1981-12-20"
## [13066] "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20"
## [13071] "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20"
## [13076] "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20" "1981-12-20"
## [13081] "1981-12-20" "1984-03-16" "1984-03-16" "1984-03-16" "1984-03-16"
## [13086] "1970-10-22" "1970-10-22" "1970-10-22" "1970-10-22" "1970-10-22"
## [13091] "1970-10-22" "1970-10-22" "1970-10-22" "1970-10-22" "1970-10-22"
## [13096] "1970-10-22" "1970-10-22" "1970-10-22" "1970-10-22" "1978-11-09"
## [13101] "1978-11-09" "1978-11-09" "1978-11-09" "1978-11-09" "1978-11-09"
## [13106] "1978-11-09" "1978-11-09" "1978-11-09" "1978-11-09" "1978-11-09"
## [13111] "1978-11-09" "1978-11-09" "1978-11-09" "1978-11-09" "1983-04-12"
## [13116] "1983-04-12" "1992-03-10" "1992-03-10" "1992-03-10" "1992-03-10"
## [13121] "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09"
## [13126] "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09"
## [13131] "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09"
## [13136] "1992-10-09" "1992-10-09" "1992-10-09" "1982-03-23" "1982-03-23"
## [13141] "1982-03-23" "1971-08-08" "1971-08-08" "1971-05-20" "1971-05-20"
## [13146] "1971-05-20" "1971-05-20" "1971-05-20" "1971-05-20" "1971-05-20"
## [13151] "1971-05-20" "1971-05-20" "1971-05-20" "1971-05-20" "1971-05-20"
## [13156] "1971-05-20" "1971-05-20" "1971-05-20" "1971-05-20" "1971-05-20"
## [13161] "1971-05-20" "1971-05-20" "1971-05-20" "1971-05-20" "1992-04-29"
## [13166] "1992-04-29" "1992-04-29" "1992-04-29" "1992-04-29" "1992-04-29"
## [13171] "1992-04-29" "1991-06-14" "1991-06-14" "1991-06-14" "1991-06-14"
## [13176] "1991-06-14" "1991-06-14" "1991-06-14" "1991-06-14" "1991-06-14"
## [13181] "1991-06-14" "1991-06-14" "1991-06-14" "1991-06-14" "1988-07-17"
## [13186] "1988-07-17" "1988-07-17" "1988-07-17" "1988-07-17" "1988-07-17"
## [13191] "1988-07-17" "1988-07-17" "1988-07-17" "1988-07-17" "1988-07-17"
## [13196] "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12"
## [13201] "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12"
## [13206] "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12"
## [13211] "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12"
## [13216] "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12" "1977-06-12"
## [13221] "1977-06-12" "1977-06-12" "1977-06-12" "1979-05-27" "1979-05-27"
## [13226] "1979-05-27" "1979-05-27" "1979-05-27" "1979-05-27" "1979-05-27"
## [13231] "1979-05-27" "1981-12-13" "1981-12-13" "1988-09-13" "1988-09-13"
## [13236] "1988-09-13" "1988-09-13" "1988-09-13" "1988-09-13" "1988-09-13"
## [13241] "1988-09-13" "1988-09-13" "1988-09-13" "1988-09-13" "1988-09-13"
## [13246] "1988-09-13" "1973-05-14" "1973-05-14" "1973-05-14" "1973-05-14"
## [13251] "1973-05-14" "1973-05-14" "1973-05-14" "1973-05-14" "1973-05-14"
## [13256] "1973-05-14" "1973-05-14" "1973-05-14" "1973-05-14" "1973-05-14"
## [13261] "1981-11-12" "1981-11-12" "1981-11-12" "1981-11-12" "1981-11-12"
## [13266] "1981-11-12" "1981-11-12" "1981-11-12" "1981-11-12" "1981-11-12"
## [13271] "1981-11-12" "1981-11-12" "1981-11-12" "1981-11-12" "1981-11-12"
## [13276] "1981-11-12" "1981-11-12" "1981-11-12" "1981-11-12" "1981-11-12"
## [13281] "1971-12-27" "1971-12-27" "1971-12-27" "1971-12-27" "1971-12-27"
## [13286] "1971-12-27" "1971-12-27" "1971-12-27" "1971-12-27" "1971-12-27"
## [13291] "1971-12-27" "1971-12-27" "1971-12-27" "1971-12-27" "1971-12-27"
## [13296] "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16"
## [13301] "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16"
## [13306] "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16" "1992-06-16"
## [13311] "1992-06-16" "1975-02-08" "1975-02-08" "1975-02-08" "1975-02-08"
## [13316] "1975-02-08" "1975-02-08" "1975-02-08" "1975-02-08" "1975-02-08"
## [13321] "1975-02-08" "1980-11-16" "1980-11-16" "1980-11-16" "1980-11-16"
## [13326] "1980-11-16" "1987-12-11" "1987-12-11" "1987-12-11" "1981-02-04"
## [13331] "1981-02-04" "1981-02-04" "1981-02-04" "1984-05-15" "1984-05-15"
## [13336] "1970-05-12" "1970-05-12" "1970-05-12" "1970-05-12" "1986-03-13"
## [13341] "1986-03-13" "1986-03-13" "1986-03-13" "1986-03-13" "1986-03-13"
## [13346] "1986-03-13" "1986-03-13" "1986-03-13" "1986-03-13" "1983-09-18"
## [13351] "1983-09-18" "1983-09-18" "1983-09-18" "1983-09-18" "1983-09-18"
## [13356] "1980-05-07" "1980-05-07" "1980-05-07" "1980-05-07" "1980-05-07"
## [13361] "1980-05-07" "1980-05-07" "1973-11-10" "1973-11-10" "1973-11-10"
## [13366] "1973-11-10" "1973-11-10" "1973-11-10" "1982-07-09" "1982-07-09"
## [13371] "1982-07-09" "1982-07-09" "1973-10-09" "1973-10-09" "1973-10-09"
## [13376] "1973-10-09" "1973-10-09" "1974-09-01" "1974-09-01" "1974-09-01"
## [13381] "1974-09-01" "1974-09-01" "1974-09-01" "1974-09-01" "1974-09-01"
## [13386] "1974-09-01" "1974-09-01" "1974-09-01" "1974-09-01" "1974-09-01"
## [13391] "1974-09-01" "1974-09-01" "1974-09-01" "1974-09-01" "1974-09-01"
## [13396] "1974-02-04" "1974-02-04" "1974-02-04" "1974-02-04" "1974-02-04"
## [13401] "1974-02-04" "1974-02-04" "1974-02-04" "1974-02-04" "1974-02-04"
## [13406] "1974-02-04" "1986-03-24" "1986-03-24" "1986-03-24" "1986-03-24"
## [13411] "1986-03-24" "1986-03-24" "1974-04-17" "1974-04-17" "1974-04-17"
## [13416] "1974-04-17" "1974-04-17" "1974-04-17" "1974-04-17" "1974-04-17"
## [13421] "1974-04-17" "1974-04-17" "1974-04-17" "1974-04-17" "1974-04-17"
## [13426] "1974-04-17" "1983-11-27" "1983-11-27" "1983-11-27" "1983-11-27"
## [13431] "1983-11-27" "1983-11-27" "1983-11-27" "1972-03-06" "1972-03-06"
## [13436] "1972-03-06" "1972-03-06" "1974-08-24" "1974-08-24" "1974-08-24"
## [13441] "1974-08-24" "1974-08-24" "1974-08-24" "1974-08-24" "1974-08-24"
## [13446] "1974-08-24" "1974-08-24" "1974-08-24" "1974-08-24" "1991-06-21"
## [13451] "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21" "1982-12-12"
## [13456] "1982-12-12" "1982-12-12" "1982-12-12" "1982-12-12" "1982-12-12"
## [13461] "1982-12-12" "1982-12-12" "1982-12-12" "1982-12-12" "1982-12-12"
## [13466] "1982-12-12" "1982-12-12" "1982-12-12" "1982-12-12" "1982-12-12"
## [13471] "1984-08-03" "1984-08-03" "1984-08-03" "1984-08-03" "1984-08-03"
## [13476] "1987-02-14" "1987-02-14" "1987-02-14" "1987-02-14" "1987-02-14"
## [13481] "1987-02-14" "1987-02-14" "1987-02-14" "1987-02-14" "1987-02-14"
## [13486] "1987-02-14" "1987-02-14" "1987-02-14" "1987-02-14" "1987-02-14"
## [13491] "1987-02-14" "1987-02-14" "1987-02-14" "1987-02-14" "1987-02-14"
## [13496] "1987-02-14" "1987-02-14" "1987-02-14" "1987-02-14" "1987-02-14"
## [13501] "1980-03-19" "1980-03-19" "1980-03-19" "1980-03-19" "1973-03-11"
## [13506] "1973-03-11" "1973-03-11" "1973-03-11" "1973-03-11" "1973-03-11"
## [13511] "1973-03-11" "1973-03-11" "1973-03-11" "1973-03-11" "1973-03-11"
## [13516] "1973-03-11" "1973-03-11" "1973-03-11" "1973-03-11" "1973-03-11"
## [13521] "1973-03-11" "1975-09-03" "1975-09-03" "1975-09-03" "1975-09-03"
## [13526] "1975-09-03" "1975-09-03" "1975-09-03" "1975-09-03" "1975-09-03"
## [13531] "1975-09-03" "1975-09-03" "1975-09-03" "1975-09-03" "1975-09-03"
## [13536] "1975-09-03" "1975-09-03" "1975-09-03" "1975-09-03" "1975-09-03"
## [13541] "1975-09-03" "1975-09-03" "1975-09-03" "1975-09-03" "1975-09-03"
## [13546] "1990-08-05" "1990-08-05" "1990-08-05" "1990-08-05" "1990-08-05"
## [13551] "1972-08-06" "1972-08-06" "1972-08-06" "1972-08-06" "1972-08-06"
## [13556] "1972-08-06" "1972-08-06" "1972-08-06" "1972-08-06" "1972-08-06"
## [13561] "1977-10-01" "1977-10-01" "1977-10-01" "1977-10-01" "1985-04-19"
## [13566] "1985-04-19" "1985-04-19" "1985-04-19" "1985-04-19" "1985-04-19"
## [13571] "1985-04-19" "1985-04-19" "1985-04-19" "1985-04-19" "1985-04-19"
## [13576] "1981-01-02" "1981-01-02" "1981-01-02" "1981-01-02" "1981-01-02"
## [13581] "1981-01-02" "1981-01-02" "1981-01-02" "1982-02-26" "1982-02-26"
## [13586] "1982-02-26" "1982-02-26" "1981-06-29" "1981-06-29" "1981-06-29"
## [13591] "1981-06-29" "1981-06-29" "1981-06-29" "1987-12-10" "1987-12-10"
## [13596] "1987-12-10" "1987-12-10" "1987-12-10" "1991-04-14" "1991-04-14"
## [13601] "1991-04-14" "1991-04-14" "1991-04-14" "1980-07-07" "1980-07-07"
## [13606] "1980-07-07" "1980-07-07" "1980-07-07" "1980-07-07" "1980-07-07"
## [13611] "1980-07-07" "1980-07-07" "1980-07-07" "1980-07-07" "1977-09-28"
## [13616] "1977-09-28" "1977-09-28" "1977-09-28" "1977-09-28" "1977-09-28"
## [13621] "1981-07-21" "1981-07-21" "1981-07-21" "1979-01-04" "1979-01-04"
## [13626] "1979-01-04" "1979-01-04" "1979-01-04" "1979-01-04" "1979-01-04"
## [13631] "1979-01-04" "1979-01-04" "1979-01-04" "1979-01-04" "1979-01-04"
## [13636] "1979-01-04" "1979-01-04" "1979-01-04" "1982-09-17" "1982-09-17"
## [13641] "1982-09-17" "1982-09-17" "1982-09-17" "1979-01-23" "1979-01-23"
## [13646] "1979-01-23" "1979-01-23" "1979-01-23" "1979-01-23" "1979-01-23"
## [13651] "1979-01-23" "1979-01-23" "1979-01-23" "1979-01-23" "1978-09-19"
## [13656] "1978-09-19" "1978-09-19" "1978-09-19" "1978-09-19" "1978-09-19"
## [13661] "1975-12-13" "1975-12-13" "1975-12-13" "1985-06-05" "1985-06-05"
## [13666] "1985-06-05" "1985-06-05" "1985-06-05" "1985-06-05" "1985-04-09"
## [13671] "1985-04-09" "1988-10-03" "1988-10-03" "1988-10-03" "1970-06-26"
## [13676] "1970-06-26" "1970-06-26" "1970-06-26" "1970-06-26" "1970-06-26"
## [13681] "1970-06-26" "1970-06-26" "1970-06-26" "1970-06-26" "1970-06-26"
## [13686] "1970-06-26" "1970-06-26" "1970-06-26" "1970-06-26" "1970-06-26"
## [13691] "1970-06-26" "1970-06-26" "1989-02-10" "1989-02-10" "1989-02-10"
## [13696] "1989-02-10" "1989-02-10" "1989-02-10" "1989-02-10" "1989-02-10"
## [13701] "1989-02-10" "1989-02-10" "1989-02-10" "1989-04-04" "1989-04-04"
## [13706] "1989-04-04" "1989-04-04" "1989-04-04" "1989-04-04" "1989-04-04"
## [13711] "1989-04-04" "1982-09-13" "1982-09-13" "1982-09-13" "1973-01-03"
## [13716] "1973-01-03" "1973-01-03" "1973-01-03" "1973-01-03" "1973-01-03"
## [13721] "1973-01-03" "1986-10-14" "1986-10-14" "1986-10-14" "1986-10-14"
## [13726] "1986-10-14" "1986-10-14" "1986-10-14" "1986-10-14" "1986-10-14"
## [13731] "1980-12-28" "1980-12-28" "1980-12-28" "1980-12-28" "1980-12-28"
## [13736] "1980-12-28" "1980-12-28" "1980-12-28" "1980-12-28" "1980-12-28"
## [13741] "1980-12-28" "1980-12-28" "1980-12-28" "1980-12-28" "1989-05-01"
## [13746] "1989-05-01" "1989-05-01" "1989-05-01" "1989-05-01" "1989-05-01"
## [13751] "1989-05-01" "1989-05-01" "1989-05-01" "1989-05-01" "1989-05-01"
## [13756] "1989-05-01" "1989-05-01" "1971-07-08" "1971-07-08" "1971-07-08"
## [13761] "1971-07-08" "1971-07-08" "1971-07-08" "1971-07-08" "1971-07-08"
## [13766] "1971-07-08" "1971-07-08" "1971-07-08" "1971-07-08" "1971-07-08"
## [13771] "1977-11-20" "1977-11-20" "1977-11-20" "1977-11-20" "1977-11-20"
## [13776] "1977-11-20" "1977-11-20" "1977-11-20" "1973-07-09" "1973-07-09"
## [13781] "1973-07-09" "1973-07-09" "1973-07-09" "1973-07-09" "1973-07-09"
## [13786] "1973-07-09" "1973-07-09" "1973-07-09" "1973-07-09" "1973-07-09"
## [13791] "1973-07-09" "1973-07-09" "1973-07-09" "1973-07-09" "1973-07-09"
## [13796] "1973-07-09" "1973-07-09" "1973-07-09" "1973-07-09" "1984-08-18"
## [13801] "1984-08-18" "1984-08-18" "1984-08-18" "1984-08-18" "1984-08-18"
## [13806] "1984-08-18" "1984-08-18" "1984-08-18" "1984-08-18" "1980-06-22"
## [13811] "1980-06-22" "1980-06-22" "1980-06-22" "1980-06-22" "1980-06-22"
## [13816] "1992-04-26" "1992-04-26" "1992-04-26" "1992-04-26" "1992-04-26"
## [13821] "1992-04-26" "1992-04-26" "1992-04-26" "1992-04-26" "1992-04-26"
## [13826] "1992-04-26" "1992-04-26" "1992-04-26" "1992-04-26" "1992-04-26"
## [13831] "1992-04-26" "1992-04-26" "1992-04-26" "1992-04-26" "1992-04-26"
## [13836] "1975-05-07" "1975-05-07" "1975-05-07" "1975-05-07" "1975-05-07"
## [13841] "1975-05-07" "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20"
## [13846] "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20" "1979-12-22"
## [13851] "1979-12-22" "1979-12-22" "1979-12-22" "1979-12-22" "1987-03-12"
## [13856] "1987-03-12" "1987-03-12" "1987-03-12" "1987-03-12" "1987-03-12"
## [13861] "1987-03-12" "1987-03-12" "1987-03-12" "1987-03-12" "1987-03-12"
## [13866] "1987-03-12" "1987-03-12" "1987-03-12" "1987-03-12" "1987-03-12"
## [13871] "1987-03-12" "1987-03-12" "1987-03-12" "1987-03-12" "1987-03-12"
## [13876] "1987-03-12" "1987-03-12" "1980-08-12" "1980-08-12" "1980-08-12"
## [13881] "1980-08-12" "1980-08-12" "1980-08-12" "1980-08-12" "1980-08-12"
## [13886] "1980-08-12" "1980-08-12" "1980-08-12" "1980-08-12" "1983-07-08"
## [13891] "1983-07-08" "1983-07-08" "1983-07-08" "1983-07-08" "1983-07-08"
## [13896] "1983-07-08" "1983-07-08" "1983-07-08" "1983-07-08" "1983-07-08"
## [13901] "1983-07-08" "1983-07-08" "1983-07-08" "1992-03-19" "1992-03-19"
## [13906] "1992-03-19" "1992-03-19" "1992-03-19" "1992-03-19" "1992-03-19"
## [13911] "1973-04-02" "1973-04-02" "1973-04-02" "1973-04-02" "1973-04-02"
## [13916] "1973-04-02" "1973-04-02" "1973-04-02" "1973-04-02" "1973-04-02"
## [13921] "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13"
## [13926] "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13"
## [13931] "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13"
## [13936] "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13"
## [13941] "1980-07-13" "1980-07-13" "1980-07-13" "1972-09-12" "1972-09-12"
## [13946] "1981-03-03" "1981-03-03" "1981-03-03" "1981-03-03" "1981-03-03"
## [13951] "1980-06-21" "1980-06-21" "1980-06-21" "1980-06-21" "1980-06-21"
## [13956] "1990-02-03" "1990-02-03" "1990-02-03" "1990-02-03" "1990-02-03"
## [13961] "1990-02-03" "1990-02-03" "1990-02-03" "1990-02-03" "1990-02-03"
## [13966] "1990-02-03" "1990-02-03" "1990-02-03" "1990-02-03" "1990-02-03"
## [13971] "1990-02-03" "1990-02-03" "1990-02-03" "1990-02-03" "1990-02-03"
## [13976] "1975-11-14" "1975-11-14" "1975-11-14" "1975-11-14" "1975-11-14"
## [13981] "1975-11-14" "1975-11-14" "1975-11-14" "1975-11-14" "1975-11-14"
## [13986] "1975-11-14" "1975-11-14" "1975-11-14" "1975-11-14" "1975-11-14"
## [13991] "1975-11-14" "1975-11-14" "1980-11-28" "1980-11-28" "1980-11-28"
## [13996] "1980-11-28" "1980-11-28" "1980-11-28" "1980-11-28" "1980-11-28"
## [14001] "1976-08-02" "1976-08-02" "1976-08-02" "1976-08-02" "1976-08-02"
## [14006] "1976-08-02" "1990-08-24" "1990-08-24" "1990-08-24" "1990-08-24"
## [14011] "1990-08-24" "1990-08-24" "1990-08-24" "1990-08-24" "1980-12-09"
## [14016] "1980-12-09" "1981-03-27" "1981-03-27" "1981-03-27" "1981-03-27"
## [14021] "1981-03-27" "1981-03-27" "1981-03-27" "1981-03-27" "1981-03-27"
## [14026] "1981-03-27" "1981-03-27" "1981-03-27" "1981-03-27" "1971-11-25"
## [14031] "1971-11-25" "1971-11-25" "1978-05-12" "1978-05-12" "1978-05-12"
## [14036] "1978-05-12" "1978-05-12" "1978-05-12" "1978-05-12" "1978-05-12"
## [14041] "1978-05-12" "1990-10-09" "1990-10-09" "1990-10-09" "1990-10-09"
## [14046] "1974-10-06" "1974-10-06" "1974-10-06" "1974-10-06" "1974-10-06"
## [14051] "1986-11-09" "1986-11-09" "1986-11-09" "1986-11-09" "1986-11-09"
## [14056] "1986-11-09" "1986-11-09" "1986-11-09" "1986-11-09" "1986-11-09"
## [14061] "1986-11-09" "1978-04-25" "1978-04-25" "1978-04-25" "1978-04-25"
## [14066] "1978-04-25" "1978-04-25" "1978-04-25" "1978-04-25" "1978-04-25"
## [14071] "1978-04-25" "1978-04-25" "1978-04-25" "1978-04-25" "1978-04-25"
## [14076] "1989-03-27" "1989-03-27" "1989-03-27" "1989-03-27" "1989-03-27"
## [14081] "1989-03-27" "1989-03-27" "1989-03-27" "1989-03-27" "1989-03-27"
## [14086] "1988-06-07" "1988-06-07" "1988-06-07" "1988-06-07" "1988-06-07"
## [14091] "1988-06-07" "1988-06-07" "1988-06-07" "1988-06-07" "1988-06-07"
## [14096] "1988-06-07" "1988-06-07" "1988-06-07" "1975-02-03" "1975-02-03"
## [14101] "1975-02-03" "1975-02-03" "1975-02-03" "1975-02-03" "1975-02-03"
## [14106] "1989-10-01" "1989-10-01" "1989-10-01" "1982-12-06" "1982-12-06"
## [14111] "1982-12-06" "1982-12-06" "1982-12-06" "1982-12-06" "1982-12-06"
## [14116] "1978-07-29" "1978-07-29" "1978-07-29" "1978-07-29" "1978-07-29"
## [14121] "1978-07-29" "1977-12-06" "1977-12-06" "1977-12-06" "1977-12-06"
## [14126] "1977-12-06" "1977-12-06" "1977-12-06" "1989-01-09" "1989-01-09"
## [14131] "1989-01-09" "1989-01-09" "1989-01-09" "1989-01-09" "1989-01-09"
## [14136] "1989-01-09" "1989-01-09" "1989-01-09" "1989-01-09" "1989-01-09"
## [14141] "1983-12-09" "1983-12-09" "1983-12-09" "1983-12-09" "1983-12-09"
## [14146] "1983-12-09" "1983-12-09" "1983-12-09" "1983-12-09" "1983-12-09"
## [14151] "1983-12-09" "1983-12-09" "1983-12-09" "1983-12-09" "1983-12-09"
## [14156] "1983-12-09" "1980-06-15" "1980-06-15" "1980-06-15" "1980-06-15"
## [14161] "1980-06-15" "1980-06-15" "1981-04-17" "1981-04-17" "1974-01-29"
## [14166] "1974-01-29" "1989-02-06" "1989-02-06" "1989-02-06" "1989-02-06"
## [14171] "1989-02-06" "1989-02-06" "1976-11-16" "1976-11-16" "1976-12-07"
## [14176] "1976-12-07" "1976-12-07" "1976-12-07" "1984-07-12" "1984-07-12"
## [14181] "1984-07-12" "1984-07-12" "1984-07-12" "1984-07-12" "1984-07-12"
## [14186] "1978-01-21" "1978-01-21" "1978-01-21" "1975-09-26" "1975-09-26"
## [14191] "1975-09-26" "1975-09-26" "1975-09-26" "1975-09-26" "1975-09-26"
## [14196] "1975-09-26" "1975-09-26" "1975-09-26" "1975-09-26" "1975-09-26"
## [14201] "1975-09-26" "1975-09-26" "1975-09-26" "1976-12-17" "1976-12-17"
## [14206] "1976-12-17" "1976-12-17" "1976-12-17" "1976-12-17" "1976-12-17"
## [14211] "1976-12-17" "1976-12-17" "1976-12-17" "1976-12-17" "1976-12-17"
## [14216] "1976-12-17" "1978-12-06" "1978-12-06" "1978-12-06" "1978-12-06"
## [14221] "1978-12-06" "1978-12-06" "1978-12-06" "1978-12-06" "1978-12-06"
## [14226] "1978-12-06" "1978-12-06" "1978-12-06" "1985-12-04" "1985-12-04"
## [14231] "1985-12-04" "1985-12-04" "1985-12-04" "1985-12-04" "1985-12-04"
## [14236] "1985-12-04" "1986-11-20" "1986-11-20" "1986-11-20" "1986-11-20"
## [14241] "1986-11-20" "1986-11-20" "1988-09-27" "1988-09-27" "1988-09-27"
## [14246] "1988-09-27" "1981-12-11" "1981-12-11" "1981-12-11" "1981-12-11"
## [14251] "1981-12-11" "1981-12-11" "1981-12-11" "1981-12-11" "1981-12-11"
## [14256] "1981-12-11" "1975-07-14" "1975-07-14" "1975-07-14" "1975-07-14"
## [14261] "1975-07-14" "1975-07-14" "1975-07-14" "1975-07-14" "1975-07-14"
## [14266] "1975-07-14" "1975-07-14" "1975-07-14" "1975-07-14" "1975-07-14"
## [14271] "1975-07-14" "1975-07-14" "1975-07-14" "1975-07-14" "1970-08-09"
## [14276] "1970-08-09" "1970-08-09" "1970-08-09" "1970-08-09" "1970-08-09"
## [14281] "1970-08-09" "1970-08-09" "1970-08-09" "1970-08-09" "1970-08-09"
## [14286] "1970-08-09" "1970-08-09" "1970-08-09" "1970-08-09" "1970-08-09"
## [14291] "1970-08-09" "1970-08-09" "1982-07-02" "1982-07-02" "1982-07-02"
## [14296] "1982-07-02" "1982-07-02" "1982-07-02" "1982-07-02" "1982-07-02"
## [14301] "1982-07-02" "1982-07-02" "1979-09-18" "1979-09-18" "1979-09-18"
## [14306] "1979-09-18" "1979-09-18" "1991-02-26" "1991-02-26" "1991-02-26"
## [14311] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26"
## [14316] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26"
## [14321] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26"
## [14326] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26"
## [14331] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26"
## [14336] "1987-04-26" "1987-04-26" "1987-04-26" "1987-04-26" "1987-04-26"
## [14341] "1987-04-26" "1987-04-26" "1990-06-28" "1990-06-28" "1990-06-28"
## [14346] "1990-06-28" "1990-06-28" "1990-06-28" "1980-01-20" "1980-01-20"
## [14351] "1970-12-16" "1970-12-16" "1970-12-16" "1970-12-16" "1970-12-16"
## [14356] "1983-04-17" "1983-04-17" "1980-12-27" "1980-12-27" "1980-12-27"
## [14361] "1980-12-27" "1980-12-27" "1980-12-27" "1980-12-27" "1980-12-27"
## [14366] "1980-12-27" "1980-12-27" "1980-12-27" "1979-10-23" "1979-10-23"
## [14371] "1979-10-23" "1979-10-23" "1979-10-23" "1979-10-23" "1979-10-23"
## [14376] "1979-10-23" "1979-10-23" "1979-10-23" "1979-10-23" "1979-10-23"
## [14381] "1979-10-23" "1979-10-23" "1979-10-23" "1979-10-23" "1979-10-23"
## [14386] "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26"
## [14391] "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26"
## [14396] "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26"
## [14401] "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26"
## [14406] "1973-05-26" "1973-05-26" "1973-05-26" "1972-08-02" "1972-08-02"
## [14411] "1972-08-02" "1972-08-02" "1972-08-02" "1971-01-10" "1971-01-10"
## [14416] "1971-01-10" "1971-01-10" "1971-01-10" "1971-01-10" "1971-01-10"
## [14421] "1971-01-10" "1971-01-10" "1971-01-10" "1971-01-10" "1971-01-10"
## [14426] "1989-06-14" "1989-06-14" "1971-07-04" "1971-07-04" "1971-07-04"
## [14431] "1971-07-04" "1971-07-04" "1971-07-04" "1976-04-15" "1976-04-15"
## [14436] "1976-04-15" "1976-04-15" "1976-04-15" "1976-04-15" "1976-04-15"
## [14441] "1976-04-15" "1976-04-15" "1976-04-15" "1976-04-15" "1976-04-15"
## [14446] "1976-04-15" "1976-04-15" "1976-04-15" "1976-06-03" "1976-06-03"
## [14451] "1976-06-03" "1976-06-03" "1991-01-18" "1991-01-18" "1991-01-18"
## [14456] "1991-01-18" "1991-01-18" "1991-01-18" "1991-01-18" "1991-01-18"
## [14461] "1991-01-18" "1991-01-18" "1991-01-18" "1991-01-18" "1991-01-18"
## [14466] "1982-03-26" "1982-03-26" "1982-03-26" "1982-03-26" "1982-03-26"
## [14471] "1982-03-26" "1982-03-26" "1982-03-26" "1982-03-26" "1982-03-26"
## [14476] "1982-03-26" "1982-03-26" "1982-03-26" "1982-03-26" "1982-03-26"
## [14481] "1982-03-26" "1982-03-26" "1981-11-17" "1981-11-17" "1981-11-17"
## [14486] "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17"
## [14491] "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17"
## [14496] "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17"
## [14501] "1981-11-17" "1981-11-17" "1981-11-17" "1978-03-06" "1978-03-06"
## [14506] "1978-03-06" "1978-03-06" "1978-03-06" "1978-03-06" "1978-03-06"
## [14511] "1986-10-03" "1986-10-03" "1986-10-03" "1986-10-03" "1986-10-03"
## [14516] "1986-10-03" "1986-10-03" "1986-10-03" "1986-10-03" "1986-10-03"
## [14521] "1986-10-03" "1986-10-03" "1986-10-03" "1986-10-03" "1986-10-03"
## [14526] "1986-10-03" "1985-10-09" "1985-10-09" "1985-10-09" "1985-10-09"
## [14531] "1985-10-09" "1982-07-18" "1982-07-18" "1982-07-18" "1982-07-18"
## [14536] "1982-07-18" "1982-07-18" "1982-07-18" "1982-07-18" "1982-07-18"
## [14541] "1982-07-18" "1982-07-18" "1982-07-18" "1982-07-18" "1982-07-18"
## [14546] "1982-07-18" "1982-07-18" "1982-07-18" "1973-01-05" "1973-01-05"
## [14551] "1973-01-05" "1973-01-05" "1973-01-05" "1973-01-05" "1973-01-05"
## [14556] "1973-01-05" "1973-01-05" "1973-01-05" "1981-06-03" "1981-06-03"
## [14561] "1981-06-03" "1981-06-03" "1981-06-03" "1981-06-03" "1981-06-03"
## [14566] "1981-06-03" "1981-06-03" "1981-06-03" "1981-06-03" "1980-02-20"
## [14571] "1980-02-20" "1980-02-20" "1980-02-20" "1980-02-20" "1980-02-20"
## [14576] "1991-10-05" "1991-10-05" "1991-10-05" "1991-10-05" "1991-10-05"
## [14581] "1991-10-05" "1991-10-05" "1991-10-05" "1991-10-05" "1991-10-05"
## [14586] "1991-10-05" "1991-10-05" "1991-10-05" "1991-10-05" "1991-10-05"
## [14591] "1991-10-05" "1991-10-05" "1991-10-05" "1973-11-10" "1973-11-10"
## [14596] "1973-11-10" "1973-11-10" "1973-11-10" "1973-11-10" "1973-11-10"
## [14601] "1973-11-10" "1973-11-10" "1973-11-10" "1973-11-10" "1973-11-10"
## [14606] "1976-04-05" "1976-04-05" "1976-04-05" "1976-04-05" "1976-04-05"
## [14611] "1976-04-05" "1976-04-05" "1976-04-05" "1988-05-08" "1988-05-08"
## [14616] "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08"
## [14621] "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08"
## [14626] "1975-07-11" "1975-07-11" "1975-07-11" "1975-07-11" "1975-07-11"
## [14631] "1975-07-11" "1975-07-11" "1975-07-11" "1975-07-11" "1975-07-11"
## [14636] "1980-12-12" "1980-12-12" "1980-12-12" "1980-12-12" "1980-12-12"
## [14641] "1980-12-12" "1980-12-12" "1980-12-12" "1980-12-12" "1980-12-12"
## [14646] "1980-12-12" "1980-12-12" "1980-12-12" "1980-12-12" "1980-12-12"
## [14651] "1980-12-12" "1980-12-12" "1980-12-12" "1980-12-12" "1980-12-12"
## [14656] "1980-12-12" "1980-12-12" "1980-12-12" "1985-06-27" "1985-06-27"
## [14661] "1988-05-02" "1988-05-02" "1982-08-07" "1982-08-07" "1982-08-07"
## [14666] "1982-08-07" "1982-08-07" "1982-08-07" "1982-08-07" "1982-08-07"
## [14671] "1982-08-07" "1982-08-07" "1979-08-20" "1979-08-20" "1979-08-20"
## [14676] "1979-08-20" "1979-08-20" "1983-07-17" "1983-07-17" "1983-07-17"
## [14681] "1983-07-17" "1983-07-17" "1983-07-17" "1983-07-17" "1975-05-20"
## [14686] "1975-05-20" "1975-05-20" "1975-05-20" "1975-05-20" "1975-05-20"
## [14691] "1975-05-20" "1975-05-20" "1975-05-20" "1984-04-26" "1984-04-26"
## [14696] "1984-04-26" "1984-04-26" "1984-04-26" "1984-04-26" "1984-04-26"
## [14701] "1984-04-26" "1984-04-26" "1984-04-26" "1984-04-26" "1984-04-26"
## [14706] "1984-04-26" "1983-10-01" "1983-10-01" "1983-10-01" "1983-10-01"
## [14711] "1983-10-01" "1983-10-01" "1983-10-01" "1983-10-01" "1983-10-01"
## [14716] "1980-11-28" "1980-11-28" "1980-11-28" "1980-11-28" "1980-11-28"
## [14721] "1980-11-28" "1980-11-28" "1980-11-28" "1980-11-28" "1992-11-17"
## [14726] "1992-11-17" "1992-11-17" "1992-11-17" "1992-08-19" "1992-08-19"
## [14731] "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19"
## [14736] "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19"
## [14741] "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19"
## [14746] "1992-08-19" "1992-08-19" "1983-12-15" "1983-12-15" "1983-12-15"
## [14751] "1983-12-15" "1983-12-15" "1983-12-15" "1990-01-23" "1990-01-23"
## [14756] "1990-01-23" "1990-01-23" "1990-01-23" "1990-01-23" "1990-01-23"
## [14761] "1990-01-23" "1990-01-23" "1990-01-23" "1990-01-23" "1990-01-23"
## [14766] "1990-01-23" "1981-04-08" "1981-04-08" "1981-04-08" "1981-04-08"
## [14771] "1981-04-08" "1981-04-08" "1972-02-28" "1972-02-28" "1972-02-28"
## [14776] "1972-02-28" "1972-02-28" "1972-02-28" "1972-02-28" "1972-02-28"
## [14781] "1972-02-28" "1972-02-28" "1972-02-28" "1972-02-28" "1972-02-28"
## [14786] "1972-02-28" "1972-02-28" "1972-02-28" "1972-02-28" "1972-02-28"
## [14791] "1972-02-28" "1972-02-28" "1972-02-28" "1990-01-23" "1990-01-23"
## [14796] "1990-01-23" "1990-01-23" "1990-01-23" "1990-01-23" "1970-06-05"
## [14801] "1970-06-05" "1970-06-05" "1970-06-05" "1970-06-05" "1970-06-05"
## [14806] "1976-10-09" "1976-10-09" "1976-10-09" "1976-10-09" "1976-10-09"
## [14811] "1988-04-21" "1988-04-21" "1988-04-21" "1988-04-21" "1988-04-21"
## [14816] "1988-04-21" "1988-04-21" "1988-04-21" "1988-04-21" "1988-04-21"
## [14821] "1988-04-21" "1988-04-21" "1988-04-21" "1988-04-21" "1988-04-21"
## [14826] "1988-04-21" "1988-04-21" "1988-04-21" "1978-02-19" "1978-02-19"
## [14831] "1978-02-19" "1978-02-19" "1978-02-19" "1990-03-21" "1990-03-21"
## [14836] "1990-03-21" "1990-03-21" "1990-03-21" "1990-03-21" "1990-03-21"
## [14841] "1990-03-21" "1990-03-21" "1990-03-21" "1990-03-21" "1990-03-21"
## [14846] "1990-03-21" "1988-10-13" "1988-10-13" "1988-10-13" "1988-10-13"
## [14851] "1988-10-13" "1988-10-13" "1988-10-13" "1988-10-13" "1988-10-13"
## [14856] "1988-10-13" "1988-10-13" "1988-10-13" "1988-10-13" "1992-03-20"
## [14861] "1992-03-20" "1992-03-20" "1992-03-20" "1992-03-20" "1992-03-20"
## [14866] "1992-03-20" "1992-03-20" "1978-10-05" "1978-10-05" "1978-10-05"
## [14871] "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05"
## [14876] "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05"
## [14881] "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05" "1982-11-28"
## [14886] "1982-11-28" "1982-11-28" "1982-11-28" "1982-11-28" "1982-11-28"
## [14891] "1982-11-28" "1982-11-28" "1982-11-28" "1982-11-28" "1982-11-28"
## [14896] "1982-11-28" "1982-11-28" "1982-11-28" "1982-11-28" "1982-11-28"
## [14901] "1982-11-28" "1982-11-28" "1982-11-28" "1985-06-04" "1985-06-04"
## [14906] "1985-06-04" "1985-06-04" "1985-06-04" "1985-06-04" "1973-11-28"
## [14911] "1973-11-28" "1973-11-28" "1973-11-28" "1973-11-28" "1973-11-28"
## [14916] "1973-11-28" "1977-03-25" "1977-03-25" "1977-03-25" "1977-03-25"
## [14921] "1977-03-25" "1977-03-25" "1977-03-25" "1977-03-25" "1977-03-25"
## [14926] "1977-03-25" "1976-02-01" "1976-02-01" "1988-12-16" "1988-12-16"
## [14931] "1988-12-16" "1988-12-16" "1988-12-16" "1988-12-16" "1988-12-16"
## [14936] "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24"
## [14941] "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24"
## [14946] "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24"
## [14951] "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24"
## [14956] "1973-12-24" "1991-09-14" "1991-09-14" "1991-09-14" "1972-06-24"
## [14961] "1972-06-24" "1985-07-10" "1985-07-10" "1985-07-10" "1985-07-10"
## [14966] "1985-07-10" "1985-07-10" "1985-07-10" "1985-07-10" "1985-07-10"
## [14971] "1985-07-10" "1985-07-10" "1985-07-10" "1985-07-10" "1985-07-10"
## [14976] "1985-07-10" "1985-07-10" "1985-07-10" "1985-07-10" "1985-07-10"
## [14981] "1975-11-09" "1975-11-09" "1975-11-09" "1975-11-09" "1975-11-09"
## [14986] "1975-11-09" "1975-11-09" "1975-11-09" "1975-11-09" "1975-11-09"
## [14991] "1992-09-10" "1992-09-10" "1992-09-10" "1992-09-10" "1974-04-20"
## [14996] "1974-04-20" "1974-04-20" "1974-04-20" "1974-04-20" "1974-04-20"
## [15001] "1974-04-20" "1974-04-20" "1974-04-20" "1974-04-20" "1974-04-20"
## [15006] "1974-04-20" "1974-04-20" "1974-04-20" "1974-04-20" "1974-04-20"
## [15011] "1974-04-20" "1972-06-17" "1972-06-17" "1972-06-17" "1972-06-17"
## [15016] "1972-06-17" "1972-06-17" "1972-06-17" "1972-06-17" "1972-06-17"
## [15021] "1972-06-17" "1990-03-21" "1990-03-21" "1990-03-21" "1990-03-21"
## [15026] "1990-03-21" "1990-03-21" "1986-01-10" "1986-01-10" "1986-01-10"
## [15031] "1986-01-10" "1986-01-10" "1986-01-10" "1986-01-10" "1986-12-29"
## [15036] "1986-12-29" "1986-12-29" "1986-12-29" "1986-12-29" "1986-12-29"
## [15041] "1986-12-29" "1986-12-29" "1986-12-29" "1986-12-29" "1986-12-29"
## [15046] "1986-12-29" "1986-12-29" "1971-01-14" "1971-01-14" "1971-01-14"
## [15051] "1971-01-14" "1971-01-14" "1971-01-14" "1971-01-14" "1971-01-14"
## [15056] "1971-01-14" "1971-01-14" "1971-01-14" "1971-01-14" "1971-01-14"
## [15061] "1971-01-14" "1971-01-14" "1977-10-11" "1977-10-11" "1977-10-11"
## [15066] "1977-10-11" "1977-10-11" "1977-10-11" "1977-10-11" "1977-10-11"
## [15071] "1977-10-11" "1977-10-11" "1981-11-26" "1981-11-26" "1981-11-26"
## [15076] "1981-11-26" "1981-11-26" "1981-11-26" "1981-11-26" "1981-11-26"
## [15081] "1981-11-26" "1981-11-26" "1981-11-26" "1981-11-26" "1981-11-26"
## [15086] "1981-11-26" "1981-11-26" "1981-11-26" "1984-04-02" "1984-04-02"
## [15091] "1984-04-02" "1984-04-02" "1984-04-02" "1988-09-15" "1988-09-15"
## [15096] "1988-09-15" "1988-09-15" "1978-06-21" "1978-06-21" "1978-06-21"
## [15101] "1978-06-21" "1978-06-21" "1978-06-21" "1978-06-21" "1978-06-21"
## [15106] "1978-06-21" "1978-06-21" "1978-06-21" "1978-06-21" "1978-06-21"
## [15111] "1978-06-21" "1978-06-21" "1978-06-21" "1978-06-21" "1978-06-21"
## [15116] "1978-06-21" "1978-06-21" "1978-06-21" "1978-06-21" "1978-06-21"
## [15121] "1978-01-18" "1978-01-18" "1977-08-23" "1977-08-23" "1977-08-23"
## [15126] "1977-08-23" "1977-05-27" "1977-05-27" "1987-07-14" "1987-07-14"
## [15131] "1987-07-14" "1987-07-14" "1987-07-14" "1987-07-14" "1987-07-14"
## [15136] "1987-07-14" "1987-07-14" "1987-07-14" "1987-07-14" "1987-07-14"
## [15141] "1987-07-14" "1986-03-06" "1986-03-06" "1986-03-06" "1986-03-06"
## [15146] "1986-03-06" "1986-03-06" "1986-03-06" "1986-03-06" "1990-10-24"
## [15151] "1990-10-24" "1990-10-24" "1990-10-24" "1990-10-24" "1990-10-24"
## [15156] "1990-10-24" "1982-07-08" "1982-07-08" "1982-07-08" "1982-07-08"
## [15161] "1982-07-08" "1982-07-08" "1982-07-08" "1977-12-16" "1977-12-16"
## [15166] "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16" "1977-12-16"
## [15171] "1980-08-18" "1980-08-18" "1980-08-18" "1980-08-18" "1980-08-18"
## [15176] "1976-08-14" "1976-08-14" "1976-08-14" "1976-08-14" "1992-08-13"
## [15181] "1992-08-13" "1992-08-13" "1992-08-13" "1992-08-13" "1992-08-13"
## [15186] "1992-08-13" "1992-08-13" "1992-08-13" "1992-08-13" "1992-08-13"
## [15191] "1992-08-13" "1992-08-18" "1992-08-18" "1992-08-18" "1992-08-18"
## [15196] "1992-08-18" "1992-08-18" "1992-08-18" "1992-08-18" "1992-08-18"
## [15201] "1992-08-18" "1972-11-28" "1972-11-28" "1972-11-28" "1972-11-28"
## [15206] "1972-11-28" "1972-11-28" "1972-11-28" "1972-11-28" "1972-11-28"
## [15211] "1972-11-28" "1972-11-28" "1979-03-07" "1979-03-07" "1979-03-07"
## [15216] "1979-03-07" "1979-03-07" "1979-03-07" "1979-03-07" "1979-03-07"
## [15221] "1982-11-06" "1982-11-06" "1982-11-06" "1982-11-06" "1982-11-06"
## [15226] "1982-11-06" "1982-11-06" "1982-11-06" "1982-11-06" "1982-11-06"
## [15231] "1982-11-06" "1982-11-06" "1982-11-06" "1982-11-06" "1977-12-29"
## [15236] "1977-12-29" "1977-12-29" "1977-12-29" "1977-12-29" "1977-12-29"
## [15241] "1977-12-29" "1977-12-29" "1977-12-29" "1977-12-29" "1984-03-05"
## [15246] "1984-03-05" "1988-10-24" "1988-10-24" "1988-10-24" "1988-10-24"
## [15251] "1988-10-24" "1988-10-24" "1979-01-03" "1979-01-03" "1979-01-03"
## [15256] "1979-01-03" "1979-01-03" "1979-01-03" "1987-01-07" "1987-01-07"
## [15261] "1973-03-11" "1973-03-11" "1973-03-11" "1973-03-11" "1973-03-11"
## [15266] "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01"
## [15271] "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01"
## [15276] "1975-08-01" "1976-01-29" "1976-01-29" "1976-01-29" "1992-12-16"
## [15281] "1992-12-16" "1992-12-16" "1992-12-16" "1992-12-16" "1992-12-16"
## [15286] "1992-12-16" "1992-12-16" "1992-12-16" "1992-12-16" "1992-12-16"
## [15291] "1987-11-16" "1987-11-16" "1987-11-16" "1987-11-16" "1987-11-16"
## [15296] "1987-11-16" "1987-11-16" "1987-11-16" "1987-11-16" "1987-11-16"
## [15301] "1987-11-16" "1987-11-16" "1987-11-16" "1987-11-16" "1987-11-16"
## [15306] "1987-11-16" "1987-11-16" "1987-11-16" "1988-09-25" "1988-09-25"
## [15311] "1988-09-25" "1988-09-25" "1988-09-25" "1988-09-25" "1988-09-25"
## [15316] "1988-09-25" "1988-09-25" "1988-09-25" "1988-09-25" "1988-09-25"
## [15321] "1988-09-25" "1988-09-25" "1988-09-25" "1988-09-25" "1988-09-25"
## [15326] "1983-12-21" "1983-12-21" "1983-12-21" "1983-12-21" "1983-12-21"
## [15331] "1992-12-27" "1992-12-27" "1992-12-27" "1992-12-27" "1992-12-27"
## [15336] "1972-10-05" "1972-10-05" "1972-10-05" "1972-10-05" "1972-10-05"
## [15341] "1972-10-05" "1972-10-05" "1972-10-05" "1972-10-05" "1972-10-05"
## [15346] "1972-10-05" "1972-10-05" "1972-10-05" "1981-11-02" "1981-11-02"
## [15351] "1981-11-02" "1981-11-02" "1981-11-02" "1982-06-09" "1982-06-09"
## [15356] "1982-06-09" "1982-06-09" "1982-06-09" "1982-06-09" "1982-06-09"
## [15361] "1985-05-11" "1985-05-11" "1985-05-11" "1986-06-23" "1986-06-23"
## [15366] "1986-06-23" "1986-06-23" "1986-06-23" "1972-09-03" "1972-09-03"
## [15371] "1972-09-03" "1972-09-03" "1972-09-03" "1972-09-03" "1972-09-03"
## [15376] "1972-09-03" "1972-09-03" "1972-09-03" "1972-09-03" "1972-09-03"
## [15381] "1972-09-03" "1989-12-10" "1989-12-10" "1989-12-10" "1989-12-10"
## [15386] "1989-12-10" "1989-12-10" "1989-12-10" "1989-12-10" "1989-12-10"
## [15391] "1989-12-10" "1989-12-10" "1989-12-10" "1989-12-10" "1976-01-02"
## [15396] "1976-01-02" "1976-01-02" "1976-01-02" "1976-01-02" "1976-01-02"
## [15401] "1976-01-02" "1976-01-02" "1976-01-02" "1976-01-02" "1976-01-02"
## [15406] "1976-01-02" "1976-01-02" "1976-01-02" "1970-04-29" "1970-04-29"
## [15411] "1970-04-29" "1970-04-29" "1970-04-29" "1970-04-29" "1970-04-29"
## [15416] "1970-04-29" "1981-02-26" "1981-02-26" "1980-10-19" "1980-10-19"
## [15421] "1980-10-19" "1980-10-19" "1980-10-19" "1980-10-19" "1980-10-19"
## [15426] "1979-07-09" "1979-07-09" "1979-07-09" "1978-04-22" "1978-04-22"
## [15431] "1978-04-22" "1978-04-22" "1978-04-22" "1978-04-22" "1978-04-22"
## [15436] "1978-04-22" "1978-04-22" "1978-04-22" "1978-04-22" "1978-04-22"
## [15441] "1978-04-22" "1978-04-22" "1978-04-22" "1978-04-22" "1985-12-26"
## [15446] "1985-12-26" "1985-12-26" "1985-12-26" "1985-12-26" "1985-12-26"
## [15451] "1985-12-26" "1985-12-26" "1985-12-26" "1985-12-26" "1985-12-26"
## [15456] "1985-12-26" "1985-12-26" "1985-12-26" "1985-12-26" "1985-12-26"
## [15461] "1985-12-26" "1985-12-26" "1984-01-03" "1984-01-03" "1984-01-03"
## [15466] "1984-01-03" "1984-01-03" "1984-01-03" "1984-01-03" "1984-01-03"
## [15471] "1984-01-03" "1984-01-03" "1975-01-18" "1975-01-18" "1975-01-18"
## [15476] "1975-01-18" "1975-01-18" "1975-01-18" "1989-02-27" "1989-02-27"
## [15481] "1989-02-27" "1989-02-27" "1989-02-27" "1971-04-11" "1971-04-11"
## [15486] "1971-04-11" "1971-04-11" "1971-04-11" "1971-04-11" "1971-04-11"
## [15491] "1971-04-11" "1971-04-11" "1971-04-11" "1983-04-18" "1983-04-18"
## [15496] "1983-04-18" "1991-01-01" "1991-01-01" "1991-01-01" "1992-07-26"
## [15501] "1992-07-26" "1992-07-26" "1992-07-26" "1992-07-26" "1992-07-26"
## [15506] "1983-11-29" "1983-11-29" "1983-11-29" "1983-11-29" "1983-11-29"
## [15511] "1985-02-21" "1985-02-21" "1985-02-21" "1985-02-21" "1985-02-21"
## [15516] "1985-02-21" "1985-02-21" "1985-02-21" "1985-02-21" "1985-02-21"
## [15521] "1985-02-21" "1985-02-21" "1985-02-21" "1985-02-21" "1985-02-21"
## [15526] "1985-02-21" "1985-02-21" "1991-08-14" "1991-08-14" "1991-08-14"
## [15531] "1991-08-14" "1991-08-14" "1991-08-14" "1991-08-14" "1991-08-14"
## [15536] "1991-08-14" "1987-11-26" "1987-11-26" "1987-11-26" "1987-11-26"
## [15541] "1987-11-26" "1987-11-26" "1987-11-26" "1987-11-26" "1987-11-26"
## [15546] "1987-11-26" "1978-01-07" "1978-01-07" "1978-01-07" "1978-01-07"
## [15551] "1978-01-07" "1982-11-16" "1982-11-16" "1982-11-16" "1982-11-16"
## [15556] "1982-11-16" "1982-11-16" "1982-11-16" "1982-11-16" "1982-11-16"
## [15561] "1982-11-16" "1986-02-04" "1986-02-04" "1986-02-04" "1986-02-04"
## [15566] "1986-02-04" "1986-02-04" "1986-02-04" "1986-02-04" "1986-02-04"
## [15571] "1986-02-04" "1986-02-04" "1986-02-04" "1986-02-04" "1975-03-17"
## [15576] "1975-03-17" "1975-03-17" "1975-03-17" "1975-03-17" "1975-03-17"
## [15581] "1975-03-17" "1975-03-17" "1975-03-17" "1975-03-17" "1990-02-04"
## [15586] "1990-02-04" "1990-02-04" "1990-02-04" "1990-02-04" "1990-02-04"
## [15591] "1990-02-04" "1990-02-04" "1990-02-04" "1990-02-04" "1990-02-04"
## [15596] "1976-05-20" "1976-05-20" "1976-05-20" "1976-05-20" "1976-05-20"
## [15601] "1976-05-20" "1976-05-20" "1976-05-20" "1976-05-20" "1976-05-20"
## [15606] "1976-05-20" "1976-05-20" "1976-05-20" "1972-12-28" "1972-12-28"
## [15611] "1972-12-28" "1984-07-10" "1984-07-10" "1984-07-10" "1988-03-28"
## [15616] "1988-03-28" "1988-03-28" "1988-03-28" "1988-03-28" "1988-03-28"
## [15621] "1985-02-17" "1985-02-17" "1985-02-17" "1985-02-17" "1985-02-17"
## [15626] "1985-02-17" "1985-02-17" "1985-02-17" "1985-02-17" "1985-02-17"
## [15631] "1985-02-17" "1984-10-29" "1984-10-29" "1984-10-29" "1984-10-29"
## [15636] "1984-10-29" "1984-10-29" "1981-04-14" "1981-04-14" "1981-04-14"
## [15641] "1981-04-14" "1981-04-14" "1981-04-14" "1981-04-14" "1974-05-08"
## [15646] "1974-05-08" "1974-05-08" "1974-05-08" "1974-05-08" "1974-05-08"
## [15651] "1974-05-08" "1974-05-08" "1974-05-08" "1974-05-08" "1974-05-08"
## [15656] "1974-05-08" "1974-05-08" "1974-05-08" "1974-05-08" "1974-05-08"
## [15661] "1974-05-08" "1974-05-08" "1974-05-08" "1974-05-08" "1974-05-08"
## [15666] "1988-09-23" "1988-09-23" "1988-09-23" "1988-09-23" "1988-09-23"
## [15671] "1988-09-23" "1992-03-14" "1992-03-14" "1992-03-14" "1992-03-14"
## [15676] "1992-03-14" "1992-03-14" "1992-03-14" "1992-03-14" "1992-03-14"
## [15681] "1970-01-07" "1970-01-07" "1991-03-17" "1991-03-17" "1991-03-17"
## [15686] "1991-03-17" "1991-03-17" "1991-03-17" "1991-03-17" "1991-03-17"
## [15691] "1991-03-17" "1991-03-17" "1991-03-17" "1991-03-17" "1991-03-17"
## [15696] "1991-03-17" "1991-03-17" "1991-03-17" "1991-03-17" "1991-03-17"
## [15701] "1991-03-17" "1991-03-17" "1991-03-17" "1972-09-16" "1972-09-16"
## [15706] "1972-09-16" "1972-09-16" "1972-09-16" "1972-09-16" "1972-09-16"
## [15711] "1988-11-17" "1988-11-17" "1988-11-17" "1988-11-17" "1988-11-17"
## [15716] "1988-11-17" "1988-11-17" "1987-05-04" "1987-05-04" "1987-05-04"
## [15721] "1987-05-04" "1987-05-04" "1987-05-04" "1987-05-04" "1987-05-04"
## [15726] "1987-05-04" "1987-05-04" "1987-05-04" "1987-05-04" "1987-05-04"
## [15731] "1975-07-21" "1975-07-21" "1975-07-21" "1975-07-21" "1975-07-21"
## [15736] "1975-07-21" "1975-07-21" "1975-07-21" "1975-07-21" "1975-07-21"
## [15741] "1975-07-21" "1975-07-21" "1975-07-21" "1975-07-21" "1980-01-08"
## [15746] "1980-01-08" "1974-03-13" "1974-03-13" "1974-03-13" "1974-03-13"
## [15751] "1974-03-13" "1974-03-13" "1974-03-13" "1974-03-13" "1974-03-13"
## [15756] "1971-01-02" "1971-01-02" "1971-01-02" "1971-01-02" "1971-01-02"
## [15761] "1971-01-02" "1971-01-02" "1971-01-02" "1971-01-02" "1991-07-06"
## [15766] "1991-07-06" "1991-07-06" "1991-07-06" "1991-07-06" "1991-07-06"
## [15771] "1991-07-06" "1991-07-06" "1991-07-06" "1991-07-06" "1991-07-06"
## [15776] "1991-07-06" "1991-07-06" "1991-07-06" "1991-07-06" "1978-09-22"
## [15781] "1978-09-22" "1978-09-22" "1978-09-22" "1978-09-22" "1978-09-22"
## [15786] "1978-09-22" "1978-09-22" "1978-09-22" "1978-09-22" "1978-09-22"
## [15791] "1978-09-22" "1978-09-22" "1978-09-22" "1978-09-22" "1978-09-22"
## [15796] "1978-09-22" "1978-09-22" "1984-12-02" "1984-12-02" "1984-12-02"
## [15801] "1984-12-02" "1984-12-02" "1984-12-02" "1984-12-02" "1984-12-02"
## [15806] "1984-12-02" "1984-12-02" "1984-12-02" "1984-12-02" "1984-12-02"
## [15811] "1984-12-02" "1984-12-02" "1984-12-02" "1984-12-02" "1984-12-02"
## [15816] "1984-12-02" "1984-12-02" "1992-12-04" "1992-12-04" "1992-12-04"
## [15821] "1992-12-04" "1992-12-04" "1992-12-04" "1992-12-04" "1992-12-04"
## [15826] "1992-12-04" "1992-12-04" "1992-12-04" "1992-12-04" "1992-12-04"
## [15831] "1992-12-04" "1975-10-06" "1975-10-06" "1975-10-06" "1975-10-06"
## [15836] "1975-10-06" "1975-10-06" "1975-10-06" "1975-10-06" "1975-10-06"
## [15841] "1975-10-06" "1975-10-06" "1975-10-06" "1975-10-06" "1975-10-06"
## [15846] "1975-10-06" "1975-10-06" "1975-10-06" "1975-10-06" "1987-01-08"
## [15851] "1987-01-08" "1987-01-08" "1987-01-08" "1987-01-08" "1987-01-08"
## [15856] "1987-01-08" "1987-01-08" "1987-01-08" "1987-01-08" "1984-12-23"
## [15861] "1984-12-23" "1984-12-23" "1984-12-23" "1984-12-23" "1984-12-23"
## [15866] "1984-12-23" "1984-12-23" "1975-04-06" "1975-04-06" "1975-04-06"
## [15871] "1975-04-06" "1975-04-06" "1975-04-06" "1975-04-06" "1975-04-06"
## [15876] "1979-11-09" "1979-11-09" "1979-11-09" "1979-11-09" "1979-11-09"
## [15881] "1979-11-09" "1979-11-09" "1979-11-09" "1979-11-09" "1979-11-09"
## [15886] "1979-11-09" "1979-11-09" "1979-11-09" "1979-11-09" "1979-11-09"
## [15891] "1979-11-09" "1979-11-09" "1979-11-09" "1979-11-09" "1979-11-09"
## [15896] "1979-11-09" "1977-09-11" "1977-09-11" "1977-09-11" "1977-09-11"
## [15901] "1990-09-05" "1990-09-05" "1990-09-05" "1990-09-05" "1990-09-05"
## [15906] "1982-06-02" "1982-06-02" "1982-06-02" "1982-06-02" "1982-06-02"
## [15911] "1982-06-02" "1982-06-02" "1982-06-02" "1982-06-02" "1982-06-02"
## [15916] "1982-06-02" "1982-06-02" "1987-01-07" "1987-01-07" "1992-11-07"
## [15921] "1992-11-07" "1992-11-07" "1988-07-12" "1988-07-12" "1988-07-12"
## [15926] "1988-07-12" "1988-07-12" "1988-07-12" "1988-07-12" "1988-07-12"
## [15931] "1988-07-12" "1988-07-12" "1988-07-12" "1988-07-12" "1988-07-12"
## [15936] "1988-07-12" "1988-07-12" "1988-07-12" "1988-01-28" "1988-01-28"
## [15941] "1988-01-28" "1988-01-28" "1988-01-28" "1988-01-28" "1988-01-28"
## [15946] "1988-01-28" "1988-01-28" "1988-01-28" "1988-01-28" "1988-01-28"
## [15951] "1988-01-28" "1988-01-28" "1988-01-28" "1988-01-28" "1988-01-28"
## [15956] "1988-01-28" "1988-01-28" "1992-01-21" "1992-01-21" "1992-01-21"
## [15961] "1992-01-21" "1992-01-21" "1992-01-21" "1990-04-24" "1990-04-24"
## [15966] "1990-04-24" "1990-04-24" "1990-04-24" "1990-04-24" "1990-04-24"
## [15971] "1990-04-24" "1990-04-24" "1990-04-24" "1986-10-06" "1986-10-06"
## [15976] "1986-10-06" "1986-10-06" "1986-10-06" "1986-10-06" "1986-10-06"
## [15981] "1986-10-06" "1986-10-06" "1979-12-28" "1979-12-28" "1979-12-28"
## [15986] "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28"
## [15991] "1979-12-28" "1984-10-02" "1984-10-02" "1984-10-02" "1975-03-29"
## [15996] "1975-03-29" "1975-03-29" "1975-03-29" "1975-03-29" "1992-03-15"
## [16001] "1992-03-15" "1992-03-15" "1992-03-15" "1992-03-15" "1983-07-25"
## [16006] "1983-07-25" "1983-07-25" "1983-07-25" "1983-07-25" "1971-08-03"
## [16011] "1971-08-03" "1971-08-03" "1971-08-03" "1971-08-03" "1970-04-04"
## [16016] "1970-04-04" "1970-04-04" "1970-04-04" "1970-04-04" "1970-04-04"
## [16021] "1991-04-28" "1991-04-28" "1991-04-28" "1991-04-28" "1991-04-28"
## [16026] "1991-04-28" "1991-04-28" "1991-04-28" "1991-04-28" "1980-11-19"
## [16031] "1980-11-19" "1980-11-19" "1980-11-19" "1980-11-19" "1980-11-19"
## [16036] "1980-11-19" "1980-11-19" "1980-11-19" "1980-11-19" "1980-11-19"
## [16041] "1980-11-19" "1980-11-19" "1980-11-19" "1980-11-19" "1988-05-17"
## [16046] "1988-05-17" "1988-05-17" "1988-05-17" "1988-05-17" "1988-05-17"
## [16051] "1977-01-05" "1977-01-05" "1977-01-05" "1977-01-05" "1977-01-05"
## [16056] "1977-01-05" "1977-01-05" "1977-01-05" "1981-05-25" "1981-05-25"
## [16061] "1981-05-25" "1981-05-25" "1981-05-25" "1981-05-25" "1981-05-25"
## [16066] "1981-05-25" "1979-08-04" "1979-08-04" "1979-08-04" "1979-08-04"
## [16071] "1979-08-04" "1979-08-04" "1979-08-04" "1979-08-04" "1979-08-04"
## [16076] "1979-08-04" "1979-08-04" "1979-08-04" "1979-08-04" "1979-08-04"
## [16081] "1979-08-04" "1979-08-04" "1979-08-04" "1979-08-04" "1979-08-04"
## [16086] "1979-08-04" "1979-08-04" "1979-08-04" "1979-08-04" "1973-12-08"
## [16091] "1973-12-08" "1973-12-08" "1973-12-08" "1973-12-08" "1987-04-04"
## [16096] "1987-04-04" "1987-04-04" "1987-04-04" "1987-04-04" "1987-04-04"
## [16101] "1987-04-04" "1987-04-04" "1975-08-27" "1975-08-27" "1975-08-27"
## [16106] "1975-08-27" "1975-08-27" "1975-08-27" "1986-04-26" "1986-04-26"
## [16111] "1986-04-26" "1977-05-27" "1977-05-27" "1977-05-27" "1977-05-27"
## [16116] "1977-05-27" "1984-06-23" "1984-06-23" "1984-06-23" "1984-06-23"
## [16121] "1984-06-23" "1973-02-27" "1973-02-27" "1973-02-27" "1973-02-27"
## [16126] "1973-02-27" "1973-02-27" "1973-02-27" "1973-02-27" "1973-02-27"
## [16131] "1973-02-27" "1973-02-27" "1973-02-27" "1973-02-27" "1973-02-27"
## [16136] "1973-02-27" "1973-02-27" "1973-02-27" "1973-02-27" "1973-02-27"
## [16141] "1973-02-27" "1973-02-27" "1973-02-27" "1973-02-27" "1973-02-27"
## [16146] "1973-02-27" "1989-03-13" "1989-03-13" "1989-03-13" "1989-03-13"
## [16151] "1989-03-13" "1989-03-13" "1989-03-13" "1989-03-13" "1989-03-13"
## [16156] "1991-10-07" "1991-10-07" "1991-10-07" "1991-10-07" "1991-10-07"
## [16161] "1991-10-07" "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24"
## [16166] "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24"
## [16171] "1979-11-24" "1979-11-24" "1985-02-16" "1985-02-16" "1985-02-16"
## [16176] "1985-02-16" "1985-02-16" "1985-02-16" "1985-02-16" "1985-02-16"
## [16181] "1985-02-16" "1985-02-16" "1985-02-16" "1985-02-16" "1985-02-16"
## [16186] "1985-02-16" "1985-02-16" "1985-02-16" "1985-02-16" "1985-02-16"
## [16191] "1973-03-07" "1973-03-07" "1973-03-07" "1973-03-07" "1973-03-07"
## [16196] "1973-03-07" "1973-03-07" "1973-03-07" "1973-03-07" "1973-03-07"
## [16201] "1973-02-28" "1973-02-28" "1973-02-28" "1973-02-28" "1973-02-28"
## [16206] "1973-02-28" "1973-02-28" "1973-02-28" "1973-02-28" "1981-09-04"
## [16211] "1981-09-04" "1981-09-04" "1981-09-04" "1981-09-04" "1981-09-04"
## [16216] "1972-03-09" "1972-03-09" "1972-03-09" "1972-03-09" "1972-03-09"
## [16221] "1972-03-09" "1972-03-09" "1972-03-09" "1981-05-26" "1981-05-26"
## [16226] "1981-05-26" "1981-05-26" "1981-05-26" "1981-05-26" "1981-05-26"
## [16231] "1992-03-09" "1992-03-09" "1992-03-09" "1992-03-09" "1992-03-09"
## [16236] "1992-03-09" "1992-03-09" "1992-03-09" "1972-07-04" "1972-07-04"
## [16241] "1972-07-04" "1972-07-04" "1972-07-04" "1972-07-04" "1972-07-04"
## [16246] "1972-07-04" "1972-07-04" "1972-07-04" "1972-07-04" "1972-07-04"
## [16251] "1972-07-04" "1972-07-04" "1972-07-04" "1972-07-04" "1972-07-04"
## [16256] "1972-07-04" "1972-07-04" "1972-07-04" "1972-07-04" "1983-01-01"
## [16261] "1983-01-01" "1983-01-01" "1983-01-01" "1983-01-01" "1975-06-01"
## [16266] "1975-06-01" "1975-06-01" "1975-06-01" "1975-06-01" "1975-06-01"
## [16271] "1975-06-01" "1975-06-01" "1975-06-01" "1975-06-01" "1975-06-01"
## [16276] "1975-06-01" "1975-06-01" "1975-06-01" "1975-06-01" "1980-05-06"
## [16281] "1980-05-06" "1980-05-06" "1980-05-06" "1980-05-06" "1980-05-06"
## [16286] "1980-05-06" "1980-05-06" "1985-08-25" "1985-08-25" "1985-08-25"
## [16291] "1985-08-25" "1985-08-25" "1985-08-25" "1984-04-09" "1984-04-09"
## [16296] "1984-04-09" "1984-04-09" "1984-04-09" "1984-04-09" "1984-04-09"
## [16301] "1984-04-09" "1984-04-09" "1987-09-01" "1987-09-01" "1987-09-01"
## [16306] "1987-09-01" "1987-09-01" "1987-09-01" "1987-09-01" "1987-09-01"
## [16311] "1987-09-01" "1983-06-19" "1983-06-19" "1983-06-19" "1983-06-19"
## [16316] "1983-06-19" "1983-06-19" "1983-06-19" "1983-06-19" "1985-07-29"
## [16321] "1985-07-29" "1985-07-29" "1985-07-29" "1985-07-29" "1989-11-18"
## [16326] "1989-11-18" "1989-11-18" "1989-11-18" "1989-11-18" "1989-11-18"
## [16331] "1989-11-18" "1989-11-18" "1989-11-18" "1989-11-18" "1989-11-18"
## [16336] "1989-11-18" "1989-11-18" "1989-11-18" "1981-02-13" "1981-02-13"
## [16341] "1981-02-13" "1981-02-13" "1981-02-13" "1981-02-13" "1981-02-13"
## [16346] "1981-02-13" "1981-02-13" "1981-02-13" "1981-02-13" "1981-02-13"
## [16351] "1981-02-13" "1981-02-13" "1981-02-13" "1981-02-13" "1981-02-13"
## [16356] "1981-02-13" "1981-02-13" "1981-02-13" "1981-02-13" "1981-02-13"
## [16361] "1981-02-13" "1981-02-13" "1981-02-13" "1981-02-13" "1981-02-13"
## [16366] "1981-02-13" "1981-02-13" "1992-01-27" "1992-01-27" "1992-01-27"
## [16371] "1992-01-27" "1992-01-27" "1992-01-27" "1992-01-27" "1986-06-08"
## [16376] "1986-06-08" "1986-06-08" "1986-06-08" "1986-06-08" "1986-06-08"
## [16381] "1992-12-08" "1992-12-08" "1992-12-08" "1992-12-08" "1992-12-08"
## [16386] "1992-12-08" "1986-07-06" "1986-07-06" "1986-07-06" "1986-07-06"
## [16391] "1986-07-06" "1986-07-06" "1986-07-06" "1986-07-06" "1986-07-06"
## [16396] "1986-07-06" "1986-07-06" "1986-07-06" "1986-07-06" "1974-09-05"
## [16401] "1974-09-05" "1974-09-05" "1974-09-05" "1974-09-05" "1974-09-05"
## [16406] "1974-09-05" "1974-09-05" "1974-09-05" "1971-05-25" "1971-05-25"
## [16411] "1971-05-25" "1989-05-05" "1989-05-05" "1989-05-05" "1989-05-05"
## [16416] "1989-05-05" "1989-05-05" "1989-05-05" "1989-05-05" "1989-05-05"
## [16421] "1989-05-05" "1989-05-05" "1989-05-05" "1990-06-06" "1990-06-06"
## [16426] "1990-06-06" "1990-06-06" "1990-06-06" "1990-06-06" "1990-06-06"
## [16431] "1990-06-06" "1990-06-06" "1990-06-06" "1990-06-06" "1990-06-06"
## [16436] "1978-03-02" "1978-03-02" "1978-03-02" "1978-03-02" "1978-03-02"
## [16441] "1978-03-02" "1978-03-02" "1978-03-02" "1978-03-02" "1978-03-02"
## [16446] "1992-07-03" "1992-07-03" "1992-07-03" "1992-07-03" "1992-07-03"
## [16451] "1992-07-03" "1992-07-03" "1992-07-03" "1992-07-03" "1992-07-03"
## [16456] "1992-07-03" "1986-02-02" "1986-02-02" "1986-02-02" "1986-02-02"
## [16461] "1986-02-02" "1986-02-02" "1986-02-02" "1986-02-02" "1986-02-02"
## [16466] "1986-02-02" "1986-02-02" "1986-02-02" "1986-02-02" "1986-02-02"
## [16471] "1986-02-02" "1986-02-02" "1986-02-02" "1986-02-02" "1986-02-02"
## [16476] "1980-03-10" "1980-03-10" "1987-08-23" "1987-08-23" "1987-08-23"
## [16481] "1987-08-23" "1987-08-23" "1987-08-23" "1987-08-23" "1987-08-23"
## [16486] "1987-08-23" "1987-08-23" "1986-11-13" "1986-11-13" "1986-11-13"
## [16491] "1986-11-13" "1986-11-13" "1980-11-01" "1980-11-01" "1980-11-01"
## [16496] "1974-02-02" "1974-02-02" "1974-02-02" "1974-02-02" "1974-02-02"
## [16501] "1974-02-02" "1974-02-02" "1974-02-02" "1974-02-02" "1974-02-02"
## [16506] "1974-02-02" "1974-02-02" "1992-05-04" "1992-05-04" "1992-05-04"
## [16511] "1992-05-04" "1992-05-04" "1992-05-04" "1992-05-04" "1992-05-04"
## [16516] "1992-05-04" "1992-05-04" "1992-05-04" "1985-03-12" "1985-03-12"
## [16521] "1985-03-12" "1985-03-12" "1985-03-12" "1985-03-12" "1985-03-12"
## [16526] "1985-03-12" "1985-03-12" "1985-03-12" "1985-03-12" "1985-03-12"
## [16531] "1985-03-12" "1985-03-12" "1985-03-12" "1985-03-12" "1985-03-12"
## [16536] "1985-03-12" "1985-03-12" "1985-03-12" "1985-03-12" "1985-03-12"
## [16541] "1985-03-12" "1985-03-12" "1980-12-14" "1980-12-14" "1980-12-14"
## [16546] "1980-12-14" "1980-12-14" "1980-12-14" "1980-12-14" "1980-12-14"
## [16551] "1980-12-14" "1980-12-14" "1980-12-14" "1980-12-14" "1980-12-14"
## [16556] "1980-12-14" "1980-12-14" "1980-12-14" "1980-12-14" "1980-12-14"
## [16561] "1980-12-14" "1981-05-23" "1981-05-23" "1981-05-23" "1981-05-23"
## [16566] "1981-05-23" "1981-05-23" "1970-12-17" "1970-12-17" "1970-12-17"
## [16571] "1975-06-19" "1975-06-19" "1975-06-19" "1975-06-19" "1975-06-19"
## [16576] "1979-07-20" "1979-07-20" "1979-07-20" "1979-07-20" "1979-07-20"
## [16581] "1979-07-20" "1979-07-20" "1979-07-20" "1989-07-13" "1989-07-13"
## [16586] "1989-07-13" "1989-07-13" "1989-07-13" "1989-07-13" "1989-07-13"
## [16591] "1989-07-13" "1989-07-13" "1989-07-13" "1989-07-13" "1989-07-13"
## [16596] "1987-10-20" "1987-10-20" "1987-10-20" "1987-10-20" "1987-10-20"
## [16601] "1987-10-20" "1987-10-20" "1989-01-02" "1989-01-02" "1989-01-02"
## [16606] "1989-01-02" "1989-01-02" "1989-01-02" "1989-01-02" "1989-01-02"
## [16611] "1987-08-12" "1987-08-12" "1987-08-12" "1979-12-17" "1979-12-17"
## [16616] "1979-12-17" "1979-12-17" "1979-12-17" "1979-12-17" "1979-12-17"
## [16621] "1979-12-17" "1979-12-17" "1979-12-17" "1979-12-17" "1982-11-25"
## [16626] "1982-11-25" "1982-11-25" "1982-11-25" "1982-11-25" "1982-11-25"
## [16631] "1982-11-25" "1982-11-25" "1982-11-25" "1982-11-25" "1987-07-08"
## [16636] "1987-07-08" "1987-07-08" "1987-07-08" "1989-10-12" "1989-10-12"
## [16641] "1989-10-12" "1989-10-12" "1989-10-12" "1989-10-12" "1989-10-12"
## [16646] "1989-10-12" "1989-10-12" "1989-10-12" "1981-04-17" "1981-04-17"
## [16651] "1981-04-17" "1981-04-17" "1981-04-17" "1981-04-17" "1981-04-17"
## [16656] "1981-04-17" "1973-04-03" "1973-04-03" "1973-04-03" "1973-04-03"
## [16661] "1973-04-03" "1991-02-17" "1991-02-17" "1991-02-17" "1991-02-17"
## [16666] "1991-02-17" "1991-02-17" "1991-02-17" "1991-02-17" "1991-02-17"
## [16671] "1991-02-17" "1989-05-09" "1989-05-09" "1989-05-09" "1989-05-09"
## [16676] "1985-07-13" "1985-07-13" "1985-07-13" "1985-07-13" "1985-07-13"
## [16681] "1977-01-13" "1977-01-13" "1977-04-27" "1977-04-27" "1977-04-27"
## [16686] "1977-04-27" "1977-04-27" "1985-01-13" "1985-01-13" "1985-01-13"
## [16691] "1985-01-13" "1985-01-13" "1985-01-13" "1985-01-13" "1985-01-13"
## [16696] "1982-06-07" "1982-06-07" "1984-01-03" "1984-01-03" "1984-01-03"
## [16701] "1984-01-03" "1978-02-11" "1978-02-11" "1978-02-11" "1978-02-11"
## [16706] "1978-02-11" "1978-02-11" "1978-02-11" "1978-02-11" "1992-02-25"
## [16711] "1992-02-25" "1992-02-25" "1992-02-25" "1992-02-25" "1992-02-25"
## [16716] "1992-02-25" "1992-02-25" "1992-02-25" "1992-02-25" "1992-02-25"
## [16721] "1992-02-25" "1992-02-25" "1992-02-25" "1992-02-25" "1984-12-21"
## [16726] "1984-12-21" "1984-12-21" "1987-07-21" "1987-07-21" "1987-07-21"
## [16731] "1987-07-21" "1987-07-21" "1987-07-21" "1987-07-21" "1987-07-21"
## [16736] "1987-07-21" "1987-07-21" "1987-07-21" "1987-07-21" "1987-07-21"
## [16741] "1987-07-21" "1974-08-13" "1974-08-13" "1974-08-13" "1974-08-13"
## [16746] "1974-08-13" "1974-08-13" "1974-08-13" "1974-08-13" "1974-08-13"
## [16751] "1974-08-13" "1974-08-13" "1974-08-13" "1974-08-13" "1974-08-13"
## [16756] "1974-08-13" "1974-08-13" "1974-08-13" "1974-08-13" "1974-08-13"
## [16761] "1991-08-12" "1991-08-12" "1991-08-12" "1991-08-12" "1991-08-12"
## [16766] "1977-02-18" "1977-02-18" "1977-02-03" "1977-02-03" "1977-02-03"
## [16771] "1977-02-03" "1977-02-03" "1977-02-03" "1977-02-03" "1977-02-03"
## [16776] "1977-02-03" "1977-02-03" "1974-11-28" "1974-11-28" "1974-11-28"
## [16781] "1974-11-28" "1974-11-28" "1974-11-28" "1974-11-28" "1974-11-28"
## [16786] "1974-11-28" "1974-11-28" "1974-11-28" "1974-11-28" "1974-11-28"
## [16791] "1974-11-28" "1974-11-28" "1974-11-28" "1974-11-28" "1974-11-28"
## [16796] "1974-11-28" "1982-03-15" "1982-03-15" "1982-03-15" "1982-03-15"
## [16801] "1982-03-15" "1982-03-15" "1982-03-15" "1982-03-15" "1982-03-15"
## [16806] "1982-03-15" "1970-10-11" "1970-10-11" "1970-10-11" "1970-10-11"
## [16811] "1970-10-11" "1970-10-11" "1990-09-08" "1990-09-08" "1990-09-08"
## [16816] "1990-09-08" "1990-09-08" "1990-09-08" "1990-09-08" "1986-07-16"
## [16821] "1986-07-16" "1986-07-16" "1986-07-16" "1986-07-16" "1988-11-20"
## [16826] "1988-11-20" "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07"
## [16831] "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07"
## [16836] "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07"
## [16841] "1974-05-07" "1974-05-07" "1987-10-05" "1987-10-05" "1987-10-05"
## [16846] "1987-10-05" "1987-10-05" "1987-10-05" "1987-10-05" "1976-06-11"
## [16851] "1976-06-11" "1976-06-11" "1976-06-11" "1976-06-11" "1976-06-11"
## [16856] "1976-06-11" "1976-06-11" "1976-06-11" "1976-06-11" "1976-06-11"
## [16861] "1989-11-17" "1989-11-17" "1989-11-17" "1989-11-17" "1989-11-17"
## [16866] "1989-11-17" "1989-11-17" "1989-11-17" "1989-11-17" "1989-11-17"
## [16871] "1989-11-17" "1989-11-17" "1977-04-29" "1977-04-29" "1977-04-29"
## [16876] "1977-04-29" "1977-04-29" "1976-11-09" "1976-11-09" "1976-11-09"
## [16881] "1976-11-09" "1976-11-09" "1976-11-09" "1976-11-09" "1976-11-09"
## [16886] "1976-11-09" "1976-11-09" "1976-11-09" "1988-07-06" "1988-07-06"
## [16891] "1988-07-06" "1988-07-06" "1988-07-06" "1988-07-06" "1988-07-06"
## [16896] "1988-07-06" "1988-07-06" "1988-07-06" "1988-07-06" "1988-07-06"
## [16901] "1988-07-06" "1988-07-06" "1988-07-06" "1992-02-26" "1992-02-26"
## [16906] "1983-02-14" "1983-02-14" "1983-02-14" "1989-10-24" "1989-10-24"
## [16911] "1989-10-24" "1989-10-24" "1989-10-24" "1989-10-24" "1990-11-20"
## [16916] "1990-11-20" "1990-11-20" "1990-11-20" "1985-05-24" "1985-05-24"
## [16921] "1985-05-24" "1985-05-24" "1985-05-24" "1985-05-24" "1985-09-03"
## [16926] "1985-09-03" "1985-09-03" "1985-09-03" "1985-09-03" "1985-09-03"
## [16931] "1985-09-03" "1985-09-03" "1985-09-03" "1985-09-03" "1985-09-03"
## [16936] "1985-09-03" "1985-09-03" "1981-08-04" "1981-08-04" "1981-08-04"
## [16941] "1981-08-04" "1981-08-04" "1981-08-04" "1981-08-04" "1981-08-04"
## [16946] "1981-08-04" "1981-08-04" "1979-10-17" "1979-10-17" "1979-10-17"
## [16951] "1979-10-17" "1979-10-17" "1979-10-17" "1979-10-17" "1979-10-17"
## [16956] "1979-10-17" "1979-10-17" "1979-10-17" "1979-10-17" "1987-08-29"
## [16961] "1987-08-29" "1987-08-29" "1972-03-01" "1972-03-01" "1972-03-01"
## [16966] "1972-03-01" "1972-03-01" "1972-03-01" "1972-03-01" "1972-03-01"
## [16971] "1972-03-01" "1972-03-01" "1991-12-23" "1991-12-23" "1991-12-23"
## [16976] "1991-12-23" "1982-08-29" "1982-08-29" "1982-08-29" "1982-08-29"
## [16981] "1982-08-29" "1982-08-29" "1982-08-29" "1982-08-29" "1992-07-04"
## [16986] "1992-07-04" "1992-07-04" "1992-07-04" "1992-07-04" "1992-07-04"
## [16991] "1992-07-04" "1992-07-04" "1992-07-04" "1992-07-04" "1992-07-04"
## [16996] "1992-07-04" "1992-01-18" "1992-01-18" "1992-01-18" "1992-01-18"
## [17001] "1992-01-18" "1992-03-23" "1992-03-23" "1992-03-23" "1992-03-23"
## [17006] "1992-03-23" "1992-03-23" "1992-03-23" "1992-03-23" "1992-03-23"
## [17011] "1992-03-23" "1987-02-24" "1987-02-24" "1987-02-24" "1987-02-24"
## [17016] "1987-02-24" "1987-02-24" "1987-02-24" "1987-02-24" "1987-02-24"
## [17021] "1987-02-24" "1987-02-24" "1987-02-24" "1987-02-24" "1987-02-24"
## [17026] "1987-02-24" "1987-02-24" "1978-08-26" "1978-08-26" "1984-07-14"
## [17031] "1984-07-14" "1984-07-14" "1984-07-14" "1984-07-14" "1984-07-14"
## [17036] "1984-07-14" "1984-07-14" "1984-07-14" "1984-07-14" "1984-07-14"
## [17041] "1984-07-14" "1977-08-09" "1977-08-09" "1977-08-09" "1977-08-09"
## [17046] "1977-08-09" "1977-08-09" "1977-08-09" "1977-08-09" "1977-08-09"
## [17051] "1977-08-09" "1977-08-09" "1977-08-09" "1977-08-09" "1977-08-09"
## [17056] "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13"
## [17061] "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13"
## [17066] "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13"
## [17071] "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13"
## [17076] "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08"
## [17081] "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08"
## [17086] "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08"
## [17091] "1987-10-08" "1987-10-08" "1987-10-08" "1987-05-12" "1987-05-12"
## [17096] "1987-05-12" "1987-05-12" "1987-05-12" "1987-05-12" "1987-05-12"
## [17101] "1987-05-12" "1987-05-12" "1987-05-12" "1987-05-12" "1981-04-04"
## [17106] "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04"
## [17111] "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04" "1983-03-17"
## [17116] "1983-03-17" "1983-03-17" "1983-03-17" "1983-03-17" "1983-03-17"
## [17121] "1983-03-17" "1983-03-17" "1983-03-17" "1983-03-17" "1977-09-16"
## [17126] "1977-09-16" "1977-09-16" "1977-09-16" "1977-09-16" "1977-09-16"
## [17131] "1977-09-16" "1977-09-16" "1977-09-16" "1980-04-10" "1980-04-10"
## [17136] "1980-04-10" "1980-04-10" "1980-03-21" "1980-03-21" "1980-03-21"
## [17141] "1980-03-21" "1980-03-21" "1980-03-21" "1980-03-21" "1980-03-21"
## [17146] "1980-03-21" "1980-03-21" "1980-03-21" "1980-03-21" "1980-03-21"
## [17151] "1980-03-21" "1975-04-14" "1975-04-14" "1976-08-17" "1976-08-17"
## [17156] "1976-08-17" "1976-08-17" "1976-08-17" "1976-08-17" "1976-08-17"
## [17161] "1976-08-17" "1987-03-14" "1987-03-14" "1987-03-14" "1987-03-14"
## [17166] "1987-03-14" "1987-03-14" "1987-03-14" "1987-03-14" "1987-03-14"
## [17171] "1987-03-14" "1987-03-14" "1987-03-14" "1987-03-14" "1987-03-14"
## [17176] "1987-03-14" "1979-04-22" "1979-04-22" "1979-04-22" "1979-04-22"
## [17181] "1979-04-22" "1991-11-29" "1991-11-29" "1991-11-29" "1992-10-10"
## [17186] "1992-10-10" "1992-10-10" "1992-10-10" "1992-10-10" "1992-10-10"
## [17191] "1992-10-10" "1992-10-10" "1974-03-04" "1974-03-04" "1984-07-05"
## [17196] "1984-07-05" "1984-07-05" "1991-09-13" "1991-09-13" "1991-09-13"
## [17201] "1991-09-13" "1991-09-13" "1984-10-26" "1984-10-26" "1984-10-26"
## [17206] "1984-10-26" "1984-10-26" "1984-10-26" "1984-10-26" "1984-10-26"
## [17211] "1984-10-26" "1984-10-26" "1973-10-15" "1973-10-15" "1973-10-15"
## [17216] "1973-10-15" "1973-10-15" "1973-10-15" "1973-10-15" "1973-10-15"
## [17221] "1978-09-29" "1978-09-29" "1978-09-29" "1978-09-29" "1978-09-29"
## [17226] "1978-09-29" "1978-09-29" "1971-04-08" "1971-04-08" "1971-04-08"
## [17231] "1971-04-08" "1971-04-08" "1971-04-08" "1971-04-08" "1971-11-22"
## [17236] "1971-11-22" "1971-11-22" "1971-11-22" "1971-11-22" "1971-11-22"
## [17241] "1971-11-22" "1971-11-22" "1971-11-22" "1980-01-01" "1980-01-01"
## [17246] "1980-01-01" "1980-01-01" "1980-01-01" "1980-01-01" "1980-01-01"
## [17251] "1980-01-01" "1980-01-01" "1976-01-24" "1976-01-24" "1976-01-24"
## [17256] "1976-01-24" "1976-01-24" "1976-01-24" "1976-01-24" "1976-01-24"
## [17261] "1976-01-24" "1976-01-24" "1976-01-24" "1976-01-24" "1976-01-24"
## [17266] "1976-01-24" "1976-01-24" "1976-01-24" "1976-01-24" "1976-01-24"
## [17271] "1976-01-24" "1976-01-24" "1976-01-24" "1984-07-08" "1984-07-08"
## [17276] "1984-07-08" "1984-07-08" "1984-07-08" "1984-07-08" "1984-07-08"
## [17281] "1984-07-08" "1984-07-08" "1979-04-25" "1979-04-25" "1979-04-25"
## [17286] "1987-09-12" "1987-09-12" "1987-09-12" "1987-09-12" "1987-09-12"
## [17291] "1987-09-12" "1983-09-24" "1983-09-24" "1983-09-24" "1983-09-24"
## [17296] "1983-09-24" "1983-09-24" "1983-09-24" "1976-11-03" "1976-11-03"
## [17301] "1976-11-03" "1976-11-03" "1976-11-03" "1976-11-03" "1976-11-03"
## [17306] "1976-11-03" "1976-11-03" "1976-11-03" "1976-11-03" "1976-11-03"
## [17311] "1976-05-08" "1976-05-08" "1976-05-08" "1976-05-08" "1976-05-08"
## [17316] "1976-05-08" "1976-05-08" "1976-05-08" "1976-05-08" "1976-05-08"
## [17321] "1976-05-08" "1976-05-08" "1976-05-08" "1976-05-08" "1976-05-08"
## [17326] "1976-05-08" "1976-05-08" "1984-04-27" "1984-04-27" "1986-04-17"
## [17331] "1986-04-17" "1986-04-17" "1986-04-17" "1986-04-17" "1986-04-17"
## [17336] "1981-01-14" "1981-01-14" "1981-01-14" "1981-01-14" "1981-01-14"
## [17341] "1981-01-14" "1981-01-14" "1981-01-14" "1981-01-14" "1981-01-14"
## [17346] "1981-01-14" "1981-01-14" "1981-01-14" "1978-05-21" "1978-05-21"
## [17351] "1978-05-21" "1978-05-21" "1978-05-21" "1978-05-21" "1978-05-21"
## [17356] "1978-05-21" "1978-05-21" "1978-05-21" "1978-05-21" "1978-05-21"
## [17361] "1978-05-21" "1978-05-21" "1978-05-21" "1978-05-21" "1978-05-21"
## [17366] "1978-05-21" "1978-05-21" "1978-05-21" "1975-03-08" "1975-03-08"
## [17371] "1975-03-08" "1975-03-08" "1975-03-08" "1975-03-08" "1975-03-08"
## [17376] "1975-03-08" "1975-03-08" "1975-03-08" "1975-03-08" "1975-03-08"
## [17381] "1982-01-04" "1982-01-04" "1982-01-04" "1982-01-04" "1982-01-04"
## [17386] "1974-11-22" "1974-11-22" "1974-11-22" "1974-11-22" "1974-11-22"
## [17391] "1974-11-22" "1974-11-22" "1974-11-22" "1974-11-22" "1971-06-04"
## [17396] "1971-06-04" "1971-06-04" "1971-06-04" "1971-06-04" "1971-06-04"
## [17401] "1971-06-04" "1971-06-04" "1971-06-04" "1971-06-04" "1971-06-04"
## [17406] "1971-06-04" "1971-06-04" "1971-06-04" "1971-06-04" "1971-06-04"
## [17411] "1971-06-04" "1971-06-04" "1971-06-04" "1975-02-17" "1975-02-17"
## [17416] "1975-02-17" "1975-02-17" "1975-02-17" "1975-02-17" "1975-02-17"
## [17421] "1975-02-17" "1975-02-17" "1975-02-17" "1980-12-03" "1980-12-03"
## [17426] "1980-12-03" "1980-12-03" "1980-12-03" "1988-07-29" "1988-07-29"
## [17431] "1988-07-29" "1988-07-29" "1988-07-29" "1988-07-29" "1988-07-29"
## [17436] "1988-07-29" "1988-07-29" "1988-07-29" "1988-07-29" "1988-07-29"
## [17441] "1988-07-29" "1988-07-29" "1988-07-29" "1988-07-29" "1988-07-29"
## [17446] "1988-07-29" "1988-07-29" "1986-06-19" "1986-06-19" "1985-02-12"
## [17451] "1985-02-12" "1985-02-12" "1985-02-12" "1985-02-12" "1985-02-12"
## [17456] "1985-02-12" "1985-02-12" "1985-02-12" "1985-02-12" "1985-02-12"
## [17461] "1985-02-12" "1985-02-12" "1985-02-12" "1985-02-12" "1985-02-12"
## [17466] "1970-06-10" "1970-06-10" "1970-06-10" "1970-06-10" "1970-06-10"
## [17471] "1982-08-12" "1982-08-12" "1982-08-12" "1982-08-12" "1982-08-12"
## [17476] "1982-08-12" "1982-08-12" "1982-08-12" "1982-08-12" "1982-08-12"
## [17481] "1982-08-12" "1982-08-12" "1982-08-12" "1979-09-09" "1979-09-09"
## [17486] "1979-09-09" "1979-09-09" "1979-09-09" "1979-09-09" "1979-09-09"
## [17491] "1979-09-09" "1979-09-09" "1979-09-09" "1970-09-07" "1970-09-07"
## [17496] "1970-09-07" "1970-09-07" "1970-09-07" "1985-12-12" "1985-12-12"
## [17501] "1985-12-12" "1985-12-12" "1985-12-12" "1980-12-16" "1980-12-16"
## [17506] "1980-12-16" "1980-12-16" "1980-12-16" "1980-12-16" "1980-12-16"
## [17511] "1980-12-16" "1980-12-16" "1982-07-14" "1982-07-14" "1982-07-14"
## [17516] "1982-07-14" "1982-07-14" "1982-07-14" "1982-07-14" "1982-07-14"
## [17521] "1982-07-14" "1982-07-14" "1982-07-14" "1982-07-14" "1980-12-04"
## [17526] "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04"
## [17531] "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04"
## [17536] "1990-02-22" "1990-02-22" "1990-02-22" "1978-01-01" "1978-01-01"
## [17541] "1978-01-01" "1978-01-01" "1973-12-27" "1973-12-27" "1973-12-27"
## [17546] "1973-12-27" "1973-12-27" "1973-12-27" "1984-02-09" "1984-02-09"
## [17551] "1984-02-09" "1973-01-17" "1973-01-17" "1973-01-17" "1973-01-17"
## [17556] "1973-01-17" "1973-01-17" "1973-01-17" "1973-01-17" "1973-01-17"
## [17561] "1973-01-17" "1973-01-17" "1973-01-17" "1973-01-17" "1973-01-17"
## [17566] "1973-01-17" "1973-01-17" "1979-08-22" "1979-08-22" "1979-08-22"
## [17571] "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22"
## [17576] "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22"
## [17581] "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22"
## [17586] "1979-08-22" "1979-08-22" "1979-08-22" "1983-02-20" "1983-02-20"
## [17591] "1983-02-20" "1983-02-20" "1983-02-20" "1983-02-20" "1983-02-20"
## [17596] "1983-02-20" "1983-02-20" "1983-02-20" "1973-06-11" "1973-06-11"
## [17601] "1973-06-11" "1973-06-11" "1973-06-11" "1977-08-16" "1977-08-16"
## [17606] "1977-08-16" "1977-08-16" "1977-08-16" "1977-08-16" "1977-08-16"
## [17611] "1975-10-16" "1975-10-16" "1975-10-16" "1975-10-16" "1975-10-16"
## [17616] "1975-10-16" "1975-10-16" "1975-10-16" "1975-10-16" "1975-10-16"
## [17621] "1975-10-16" "1975-10-16" "1979-11-29" "1979-11-29" "1979-11-29"
## [17626] "1979-11-29" "1979-11-29" "1979-11-29" "1979-11-29" "1979-11-29"
## [17631] "1979-11-29" "1979-11-29" "1979-11-29" "1971-01-11" "1971-01-11"
## [17636] "1971-01-11" "1971-01-11" "1971-01-11" "1971-01-11" "1971-01-11"
## [17641] "1983-08-10" "1983-08-10" "1983-08-10" "1983-09-26" "1983-09-26"
## [17646] "1983-09-26" "1985-11-25" "1985-11-25" "1985-11-25" "1985-11-25"
## [17651] "1985-11-25" "1985-11-25" "1985-11-25" "1985-11-25" "1985-11-25"
## [17656] "1985-11-25" "1983-04-08" "1983-04-08" "1983-04-08" "1983-04-08"
## [17661] "1983-04-08" "1983-04-08" "1983-04-08" "1983-04-08" "1983-04-08"
## [17666] "1986-03-16" "1986-03-16" "1986-03-16" "1986-03-16" "1986-03-16"
## [17671] "1986-03-16" "1982-04-20" "1982-04-20" "1982-04-20" "1982-04-20"
## [17676] "1982-04-20" "1974-07-26" "1974-07-26" "1974-07-26" "1974-07-26"
## [17681] "1974-07-26" "1974-07-26" "1974-07-26" "1974-07-26" "1974-07-26"
## [17686] "1974-07-26" "1974-07-26" "1974-07-26" "1974-07-26" "1974-07-26"
## [17691] "1988-01-20" "1988-01-20" "1988-01-20" "1988-01-20" "1988-01-20"
## [17696] "1985-11-02" "1985-11-02" "1985-11-02" "1985-11-02" "1985-11-02"
## [17701] "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28"
## [17706] "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28"
## [17711] "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28" "1990-02-20"
## [17716] "1990-02-20" "1990-02-20" "1990-02-20" "1990-02-20" "1990-02-20"
## [17721] "1990-02-20" "1990-02-20" "1990-02-20" "1990-02-20" "1990-02-20"
## [17726] "1990-02-20" "1990-02-20" "1990-02-20" "1990-02-20" "1990-02-20"
## [17731] "1990-02-20" "1990-02-20" "1990-02-20" "1990-02-20" "1977-01-15"
## [17736] "1977-01-15" "1977-01-15" "1977-01-15" "1977-01-15" "1977-01-15"
## [17741] "1977-01-15" "1977-01-15" "1977-01-15" "1977-01-15" "1977-01-15"
## [17746] "1977-01-15" "1977-01-15" "1989-11-28" "1989-11-28" "1989-11-28"
## [17751] "1989-11-28" "1989-11-28" "1991-08-04" "1991-08-04" "1991-08-04"
## [17756] "1991-08-04" "1991-08-04" "1991-08-04" "1991-08-04" "1991-08-04"
## [17761] "1983-11-09" "1983-11-09" "1983-11-09" "1986-04-19" "1986-04-19"
## [17766] "1986-04-19" "1986-04-19" "1986-04-19" "1986-04-19" "1986-04-19"
## [17771] "1986-04-19" "1986-04-19" "1986-04-19" "1986-04-19" "1986-04-19"
## [17776] "1986-04-19" "1986-04-19" "1986-04-19" "1986-04-19" "1986-04-19"
## [17781] "1986-04-19" "1989-10-14" "1989-10-14" "1989-10-14" "1989-10-14"
## [17786] "1989-10-14" "1989-10-14" "1989-10-14" "1989-10-14" "1989-10-14"
## [17791] "1989-10-14" "1989-10-14" "1989-10-14" "1989-10-14" "1989-10-14"
## [17796] "1989-10-14" "1989-10-14" "1989-10-14" "1989-10-14" "1989-10-14"
## [17801] "1989-10-14" "1989-10-14" "1983-09-19" "1983-09-19" "1983-09-19"
## [17806] "1983-09-19" "1983-09-19" "1983-09-19" "1983-09-19" "1983-09-19"
## [17811] "1983-09-19" "1983-09-19" "1983-09-19" "1971-06-23" "1971-06-23"
## [17816] "1971-06-23" "1971-06-23" "1971-06-23" "1971-06-23" "1971-06-23"
## [17821] "1971-06-23" "1971-06-23" "1971-06-23" "1971-06-23" "1971-02-01"
## [17826] "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01"
## [17831] "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01"
## [17836] "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01"
## [17841] "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01"
## [17846] "1971-02-01" "1974-01-29" "1974-01-29" "1974-01-29" "1974-01-29"
## [17851] "1974-01-29" "1974-01-29" "1974-01-29" "1974-01-29" "1974-01-29"
## [17856] "1974-01-29" "1974-01-29" "1974-01-29" "1974-01-29" "1974-01-29"
## [17861] "1974-01-29" "1974-01-29" "1974-01-29" "1974-01-29" "1985-12-04"
## [17866] "1985-12-04" "1985-12-04" "1985-12-04" "1985-12-04" "1985-12-04"
## [17871] "1985-12-04" "1978-04-08" "1978-04-08" "1978-04-08" "1978-04-08"
## [17876] "1978-04-08" "1978-04-08" "1978-04-08" "1978-04-08" "1978-04-08"
## [17881] "1978-04-08" "1978-04-08" "1978-04-08" "1970-07-26" "1970-07-26"
## [17886] "1970-07-26" "1970-07-26" "1970-07-26" "1970-07-26" "1970-07-26"
## [17891] "1970-07-26" "1992-02-17" "1992-02-17" "1992-02-17" "1992-02-17"
## [17896] "1992-02-17" "1992-02-17" "1992-02-17" "1992-02-17" "1985-07-21"
## [17901] "1985-07-21" "1985-07-21" "1985-07-21" "1985-07-21" "1985-07-21"
## [17906] "1985-07-21" "1985-07-21" "1985-07-21" "1985-07-21" "1985-07-21"
## [17911] "1991-08-03" "1991-08-03" "1991-08-03" "1991-08-03" "1991-08-03"
## [17916] "1991-08-03" "1991-08-03" "1991-08-03" "1991-08-03" "1991-08-03"
## [17921] "1989-08-21" "1989-08-21" "1989-08-21" "1989-08-21" "1989-08-21"
## [17926] "1989-08-21" "1989-08-21" "1989-08-21" "1989-08-21" "1989-08-21"
## [17931] "1989-08-21" "1989-08-21" "1989-08-21" "1989-08-21" "1989-08-21"
## [17936] "1989-08-21" "1977-10-09" "1977-10-09" "1977-10-09" "1977-10-09"
## [17941] "1977-10-09" "1977-10-09" "1977-10-09" "1977-10-09" "1977-10-09"
## [17946] "1977-10-09" "1977-10-09" "1977-10-09" "1977-10-09" "1977-10-09"
## [17951] "1977-10-09" "1977-10-09" "1977-10-09" "1977-10-09" "1977-10-09"
## [17956] "1977-10-09" "1977-10-09" "1987-07-23" "1987-07-23" "1987-07-23"
## [17961] "1987-07-23" "1987-07-23" "1984-08-01" "1984-08-01" "1984-08-01"
## [17966] "1984-08-01" "1984-08-01" "1984-08-01" "1984-08-01" "1984-08-01"
## [17971] "1984-08-01" "1984-08-01" "1984-08-01" "1984-08-01" "1984-08-01"
## [17976] "1984-08-01" "1984-08-01" "1984-08-01" "1973-01-28" "1973-01-28"
## [17981] "1973-01-28" "1973-01-28" "1973-01-28" "1973-01-28" "1973-01-28"
## [17986] "1973-01-28" "1973-01-28" "1973-01-28" "1973-01-28" "1984-06-21"
## [17991] "1984-06-21" "1984-06-21" "1984-06-21" "1984-06-21" "1984-06-21"
## [17996] "1984-06-21" "1984-06-21" "1984-06-21" "1984-06-21" "1984-06-21"
## [18001] "1984-06-21" "1984-06-21" "1984-06-21" "1984-06-21" "1984-06-21"
## [18006] "1984-06-21" "1984-06-21" "1984-06-21" "1984-06-21" "1984-06-21"
## [18011] "1984-06-21" "1984-06-21" "1984-06-21" "1984-06-21" "1984-06-21"
## [18016] "1981-11-09" "1981-11-09" "1981-11-09" "1981-11-09" "1981-11-09"
## [18021] "1981-11-09" "1981-11-09" "1981-11-09" "1981-11-09" "1981-11-09"
## [18026] "1981-11-09" "1981-11-09" "1981-11-09" "1979-03-08" "1979-03-08"
## [18031] "1979-03-08" "1979-03-08" "1979-03-08" "1979-03-08" "1979-03-08"
## [18036] "1979-03-08" "1979-03-08" "1979-03-08" "1979-03-08" "1979-03-08"
## [18041] "1979-03-08" "1971-05-22" "1971-05-22" "1971-05-22" "1971-05-22"
## [18046] "1971-05-22" "1979-06-05" "1979-06-05" "1979-06-05" "1979-06-05"
## [18051] "1979-06-05" "1979-06-05" "1979-06-05" "1979-06-05" "1979-06-05"
## [18056] "1979-06-05" "1979-06-05" "1979-06-05" "1979-06-05" "1979-06-05"
## [18061] "1979-06-05" "1979-06-05" "1978-05-22" "1978-05-22" "1978-05-22"
## [18066] "1978-05-22" "1978-05-22" "1978-05-22" "1978-05-22" "1978-05-22"
## [18071] "1978-05-22" "1971-09-16" "1971-09-16" "1971-09-16" "1971-09-16"
## [18076] "1986-08-07" "1986-08-07" "1972-01-22" "1972-01-22" "1972-01-22"
## [18081] "1972-01-22" "1972-01-22" "1972-01-22" "1972-01-22" "1972-01-22"
## [18086] "1972-01-22" "1972-01-22" "1972-01-22" "1972-01-22" "1972-01-22"
## [18091] "1972-01-22" "1972-01-22" "1988-04-04" "1988-04-04" "1988-04-04"
## [18096] "1988-04-04" "1988-04-04" "1988-04-04" "1988-04-04" "1988-04-04"
## [18101] "1974-08-27" "1974-08-27" "1974-08-27" "1974-08-27" "1974-08-27"
## [18106] "1974-08-27" "1974-08-27" "1974-08-27" "1974-08-27" "1974-08-27"
## [18111] "1974-08-27" "1974-08-27" "1974-08-27" "1974-08-27" "1974-08-27"
## [18116] "1974-08-27" "1974-08-27" "1982-08-14" "1982-08-14" "1982-08-14"
## [18121] "1982-08-14" "1982-08-14" "1982-08-14" "1982-08-14" "1977-09-24"
## [18126] "1977-09-24" "1977-09-24" "1977-09-24" "1977-09-24" "1977-09-24"
## [18131] "1977-09-24" "1977-09-24" "1977-09-24" "1977-09-24" "1977-09-24"
## [18136] "1977-09-24" "1977-09-24" "1977-09-24" "1985-03-11" "1985-03-11"
## [18141] "1985-03-11" "1985-03-11" "1985-03-11" "1985-03-11" "1985-03-11"
## [18146] "1985-03-11" "1985-03-11" "1985-03-11" "1985-03-11" "1985-03-11"
## [18151] "1985-11-03" "1985-11-03" "1985-11-03" "1985-11-03" "1984-10-09"
## [18156] "1984-10-09" "1984-10-09" "1984-10-09" "1984-10-09" "1984-10-09"
## [18161] "1984-10-09" "1984-10-09" "1984-10-09" "1984-10-09" "1984-10-09"
## [18166] "1984-10-09" "1987-01-17" "1987-01-17" "1987-01-17" "1987-01-17"
## [18171] "1987-01-17" "1987-01-17" "1987-01-17" "1987-01-17" "1978-01-21"
## [18176] "1978-01-21" "1978-01-21" "1978-01-21" "1978-01-21" "1978-01-21"
## [18181] "1978-01-21" "1978-01-21" "1978-01-21" "1978-01-21" "1978-01-21"
## [18186] "1978-01-21" "1978-01-21" "1974-06-04" "1974-06-04" "1974-06-04"
## [18191] "1974-06-04" "1974-06-04" "1974-06-04" "1974-06-04" "1974-06-04"
## [18196] "1974-06-04" "1974-06-04" "1974-06-04" "1974-06-04" "1974-06-04"
## [18201] "1978-11-13" "1978-11-13" "1978-11-13" "1978-11-13" "1978-11-13"
## [18206] "1978-11-13" "1978-11-13" "1978-11-13" "1975-09-17" "1975-09-17"
## [18211] "1975-09-17" "1975-09-17" "1975-09-17" "1975-09-17" "1975-09-17"
## [18216] "1975-09-17" "1970-01-10" "1970-01-10" "1970-01-10" "1970-01-10"
## [18221] "1970-01-10" "1970-01-10" "1970-01-10" "1970-01-10" "1970-01-10"
## [18226] "1970-01-10" "1970-01-10" "1970-01-10" "1970-01-10" "1970-01-10"
## [18231] "1986-01-27" "1986-01-27" "1986-01-27" "1986-01-27" "1986-01-27"
## [18236] "1986-01-27" "1986-01-27" "1986-01-27" "1986-01-27" "1986-01-27"
## [18241] "1986-01-27" "1986-01-27" "1974-08-08" "1974-08-08" "1974-08-08"
## [18246] "1974-08-08" "1974-08-08" "1984-08-25" "1984-08-25" "1984-08-25"
## [18251] "1984-08-25" "1984-08-25" "1983-03-29" "1983-03-29" "1983-03-29"
## [18256] "1983-03-29" "1983-03-29" "1983-03-29" "1983-03-29" "1983-03-29"
## [18261] "1983-03-29" "1983-03-29" "1983-03-29" "1983-03-29" "1983-03-29"
## [18266] "1983-03-29" "1978-08-14" "1978-08-14" "1978-08-14" "1978-08-14"
## [18271] "1978-08-14" "1978-08-14" "1978-08-14" "1987-06-01" "1987-06-01"
## [18276] "1987-06-01" "1987-06-01" "1987-06-01" "1987-06-01" "1987-06-01"
## [18281] "1987-06-01" "1987-06-01" "1987-06-01" "1987-06-01" "1987-06-01"
## [18286] "1987-06-01" "1987-06-01" "1987-06-01" "1987-06-01" "1987-06-01"
## [18291] "1987-06-01" "1987-06-01" "1987-06-01" "1989-01-04" "1989-01-04"
## [18296] "1985-07-18" "1985-07-18" "1985-07-18" "1971-09-11" "1971-09-11"
## [18301] "1971-09-11" "1971-09-11" "1971-09-11" "1971-09-11" "1988-02-07"
## [18306] "1988-02-07" "1988-02-07" "1988-02-07" "1988-02-07" "1988-02-07"
## [18311] "1988-02-07" "1988-02-07" "1988-02-07" "1975-01-05" "1975-01-05"
## [18316] "1989-11-02" "1989-11-02" "1988-05-12" "1988-05-12" "1988-05-12"
## [18321] "1988-05-12" "1988-05-12" "1988-05-12" "1988-05-12" "1987-07-20"
## [18326] "1987-07-20" "1987-07-20" "1987-07-20" "1987-07-20" "1987-07-20"
## [18331] "1987-07-20" "1987-07-20" "1987-07-20" "1987-07-20" "1987-07-20"
## [18336] "1987-07-20" "1987-07-20" "1987-07-20" "1987-07-20" "1987-07-20"
## [18341] "1987-07-20" "1987-06-11" "1987-06-11" "1987-06-11" "1987-06-11"
## [18346] "1987-06-11" "1987-06-11" "1987-06-11" "1992-02-29" "1992-02-29"
## [18351] "1992-02-29" "1992-02-29" "1992-02-29" "1992-02-29" "1992-02-29"
## [18356] "1992-02-29" "1992-02-29" "1970-12-18" "1970-12-18" "1970-12-18"
## [18361] "1970-12-18" "1970-12-18" "1970-12-18" "1990-07-04" "1990-07-04"
## [18366] "1990-07-04" "1990-07-04" "1990-07-04" "1990-07-04" "1990-07-04"
## [18371] "1990-07-04" "1982-03-16" "1982-03-16" "1982-03-16" "1982-03-16"
## [18376] "1982-03-16" "1982-03-16" "1982-03-16" "1982-03-16" "1982-03-16"
## [18381] "1982-03-16" "1982-03-16" "1982-03-16" "1982-03-16" "1977-10-27"
## [18386] "1977-10-27" "1977-10-27" "1977-10-27" "1977-10-27" "1977-12-01"
## [18391] "1977-12-01" "1977-12-01" "1977-12-01" "1977-12-01" "1977-12-01"
## [18396] "1977-12-01" "1977-12-01" "1977-12-01" "1977-12-01" "1977-12-01"
## [18401] "1988-05-19" "1988-05-19" "1982-07-25" "1982-07-25" "1982-07-25"
## [18406] "1982-07-25" "1982-07-25" "1982-07-25" "1982-07-25" "1975-12-26"
## [18411] "1975-12-26" "1975-12-26" "1975-12-26" "1975-12-26" "1975-12-26"
## [18416] "1975-12-26" "1975-12-26" "1975-12-26" "1975-12-26" "1975-12-26"
## [18421] "1975-12-26" "1975-12-26" "1975-12-26" "1975-12-26" "1975-12-26"
## [18426] "1990-10-05" "1990-10-05" "1990-10-05" "1990-10-05" "1990-10-05"
## [18431] "1990-10-05" "1988-12-07" "1988-12-07" "1988-12-07" "1988-12-07"
## [18436] "1988-12-07" "1988-12-07" "1988-12-07" "1988-12-07" "1988-12-07"
## [18441] "1988-12-07" "1988-12-07" "1988-12-07" "1988-12-07" "1988-12-07"
## [18446] "1988-12-07" "1988-12-07" "1985-07-25" "1985-07-25" "1985-07-25"
## [18451] "1985-07-25" "1985-07-25" "1985-07-25" "1985-07-25" "1985-07-25"
## [18456] "1985-07-25" "1985-07-25" "1985-07-25" "1985-07-25" "1985-07-25"
## [18461] "1983-12-24" "1983-12-24" "1983-12-24" "1983-12-24" "1983-12-24"
## [18466] "1983-12-24" "1983-12-24" "1983-12-24" "1983-12-24" "1983-12-24"
## [18471] "1983-12-24" "1983-12-24" "1983-12-24" "1983-12-24" "1983-12-24"
## [18476] "1983-12-24" "1983-12-24" "1983-12-24" "1983-12-24" "1983-12-24"
## [18481] "1983-12-24" "1983-12-24" "1983-12-24" "1983-12-24" "1983-12-24"
## [18486] "1983-12-24" "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26"
## [18491] "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26"
## [18496] "1979-10-01" "1979-10-01" "1984-08-27" "1984-08-27" "1984-08-27"
## [18501] "1984-08-27" "1984-08-27" "1984-08-27" "1984-08-27" "1984-08-27"
## [18506] "1984-08-27" "1984-08-27" "1984-08-27" "1984-08-27" "1984-08-27"
## [18511] "1972-01-13" "1972-01-13" "1972-01-13" "1971-03-02" "1971-03-02"
## [18516] "1971-03-02" "1971-03-02" "1971-03-02" "1971-03-02" "1971-03-02"
## [18521] "1971-03-02" "1971-03-02" "1971-03-02" "1971-03-02" "1971-03-02"
## [18526] "1971-03-02" "1971-03-02" "1971-03-02" "1985-12-28" "1985-12-28"
## [18531] "1985-12-28" "1985-12-28" "1985-12-28" "1985-12-28" "1985-12-28"
## [18536] "1971-10-24" "1971-10-24" "1971-10-24" "1971-10-24" "1971-10-24"
## [18541] "1988-05-03" "1988-05-03" "1988-05-03" "1988-05-03" "1988-05-03"
## [18546] "1988-05-03" "1988-05-03" "1988-05-03" "1988-05-03" "1988-05-03"
## [18551] "1977-01-02" "1977-01-02" "1977-01-02" "1977-01-02" "1977-01-02"
## [18556] "1977-01-02" "1977-01-02" "1977-01-02" "1978-04-16" "1978-04-16"
## [18561] "1978-04-16" "1978-04-16" "1978-04-16" "1978-04-16" "1978-04-16"
## [18566] "1978-04-16" "1978-04-16" "1983-04-21" "1983-04-21" "1983-04-21"
## [18571] "1983-04-21" "1983-04-21" "1983-04-21" "1983-04-21" "1983-04-21"
## [18576] "1983-04-21" "1983-04-21" "1983-04-21" "1983-04-21" "1983-04-21"
## [18581] "1983-04-21" "1983-04-21" "1992-09-16" "1992-09-16" "1992-09-16"
## [18586] "1992-09-16" "1992-09-16" "1992-09-16" "1992-09-16" "1992-09-16"
## [18591] "1992-09-16" "1992-09-16" "1992-09-16" "1992-09-16" "1992-09-16"
## [18596] "1989-08-05" "1989-08-05" "1989-08-05" "1989-08-05" "1989-08-05"
## [18601] "1989-08-05" "1989-08-05" "1991-08-21" "1991-08-21" "1991-08-21"
## [18606] "1991-08-21" "1991-08-21" "1991-08-21" "1991-08-21" "1991-08-21"
## [18611] "1991-08-21" "1991-08-21" "1991-08-21" "1991-08-21" "1991-08-21"
## [18616] "1991-08-21" "1991-08-21" "1991-08-21" "1991-08-21" "1988-02-22"
## [18621] "1988-02-22" "1988-02-22" "1988-02-22" "1988-02-22" "1988-02-22"
## [18626] "1987-04-11" "1987-04-11" "1987-04-11" "1987-04-11" "1987-04-11"
## [18631] "1987-04-11" "1987-04-11" "1987-04-11" "1987-04-11" "1980-03-05"
## [18636] "1980-03-05" "1980-03-05" "1980-03-05" "1980-03-05" "1980-03-05"
## [18641] "1980-03-05" "1980-03-05" "1980-03-05" "1980-03-05" "1980-03-05"
## [18646] "1978-10-01" "1978-10-01" "1978-10-01" "1978-10-01" "1978-10-01"
## [18651] "1978-10-01" "1978-10-01" "1978-10-01" "1978-10-01" "1978-10-01"
## [18656] "1977-02-20" "1977-02-20" "1977-02-20" "1977-02-20" "1977-02-20"
## [18661] "1975-12-07" "1975-12-07" "1975-12-07" "1979-06-23" "1979-06-23"
## [18666] "1979-06-23" "1979-06-23" "1979-06-23" "1979-06-23" "1987-03-01"
## [18671] "1987-03-01" "1987-03-01" "1987-03-01" "1987-03-01" "1987-03-01"
## [18676] "1987-03-01" "1987-03-01" "1980-12-20" "1980-12-20" "1980-12-20"
## [18681] "1980-12-20" "1980-12-20" "1980-12-20" "1980-12-20" "1978-01-07"
## [18686] "1978-01-07" "1978-01-07" "1978-01-07" "1978-01-07" "1978-01-07"
## [18691] "1978-01-07" "1978-01-07" "1983-12-05" "1983-12-05" "1991-11-18"
## [18696] "1991-11-18" "1991-11-18" "1991-11-18" "1991-11-18" "1991-11-18"
## [18701] "1991-11-18" "1991-11-18" "1991-11-18" "1990-08-21" "1990-08-21"
## [18706] "1992-06-27" "1992-06-27" "1992-06-27" "1992-06-27" "1992-06-27"
## [18711] "1992-06-27" "1992-06-27" "1992-06-27" "1992-06-27" "1992-06-27"
## [18716] "1992-06-27" "1979-07-11" "1979-07-11" "1979-07-11" "1979-07-11"
## [18721] "1979-07-11" "1977-10-06" "1977-10-06" "1977-10-06" "1977-10-06"
## [18726] "1977-10-06" "1977-10-06" "1977-10-06" "1977-10-06" "1972-02-10"
## [18731] "1972-02-10" "1972-02-10" "1972-02-10" "1972-02-10" "1972-02-10"
## [18736] "1972-02-10" "1972-02-10" "1972-02-10" "1972-02-10" "1972-02-10"
## [18741] "1972-02-10" "1990-07-21" "1990-07-21" "1990-07-21" "1990-07-21"
## [18746] "1990-07-21" "1990-07-21" "1990-07-21" "1990-07-21" "1990-07-21"
## [18751] "1990-07-21" "1990-07-21" "1990-07-21" "1990-07-21" "1990-07-21"
## [18756] "1990-07-21" "1990-07-21" "1990-07-21" "1983-07-22" "1983-07-22"
## [18761] "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22"
## [18766] "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22"
## [18771] "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22" "1975-11-26"
## [18776] "1975-11-26" "1975-11-26" "1975-11-26" "1977-09-26" "1977-09-26"
## [18781] "1977-09-26" "1977-09-26" "1977-09-26" "1977-09-26" "1977-09-26"
## [18786] "1977-09-26" "1977-09-26" "1977-09-26" "1977-09-26" "1977-09-26"
## [18791] "1977-09-26" "1977-09-26" "1981-10-09" "1981-10-09" "1981-10-09"
## [18796] "1981-10-09" "1981-10-09" "1981-10-09" "1981-10-09" "1981-10-09"
## [18801] "1981-10-09" "1981-10-09" "1981-10-09" "1980-08-08" "1980-08-08"
## [18806] "1980-08-08" "1980-08-08" "1980-08-08" "1980-08-08" "1980-08-08"
## [18811] "1980-08-08" "1980-08-08" "1980-08-08" "1980-08-08" "1980-08-08"
## [18816] "1980-08-08" "1989-01-14" "1989-01-14" "1989-01-14" "1989-01-14"
## [18821] "1989-01-14" "1989-01-14" "1989-01-14" "1989-01-14" "1989-01-14"
## [18826] "1974-11-09" "1974-11-09" "1974-11-09" "1974-11-09" "1974-11-09"
## [18831] "1974-11-09" "1974-11-09" "1992-09-20" "1992-09-20" "1992-09-20"
## [18836] "1992-09-20" "1992-09-20" "1992-09-20" "1992-09-20" "1992-09-20"
## [18841] "1992-09-20" "1992-09-20" "1992-09-20" "1992-09-20" "1990-07-09"
## [18846] "1990-07-09" "1990-07-09" "1973-01-21" "1973-01-21" "1973-01-21"
## [18851] "1971-11-19" "1971-11-19" "1971-11-19" "1971-11-19" "1971-11-19"
## [18856] "1971-11-19" "1971-11-19" "1971-11-19" "1971-11-19" "1971-11-19"
## [18861] "1971-11-19" "1971-11-19" "1971-11-19" "1971-11-19" "1975-04-09"
## [18866] "1975-04-09" "1975-04-09" "1975-04-09" "1975-04-09" "1975-04-09"
## [18871] "1978-09-09" "1978-09-09" "1978-09-09" "1978-09-09" "1975-06-14"
## [18876] "1975-06-14" "1975-06-14" "1975-06-14" "1975-06-14" "1975-06-14"
## [18881] "1975-06-14" "1975-06-14" "1975-06-14" "1975-06-14" "1975-06-14"
## [18886] "1975-06-14" "1974-10-26" "1974-10-26" "1974-10-26" "1974-10-26"
## [18891] "1974-10-26" "1974-10-26" "1974-10-26" "1974-10-26" "1974-10-26"
## [18896] "1974-10-26" "1974-10-26" "1974-10-26" "1970-11-19" "1970-11-19"
## [18901] "1970-11-19" "1970-11-19" "1989-07-16" "1989-07-16" "1985-07-27"
## [18906] "1985-07-27" "1985-07-27" "1985-07-27" "1985-07-27" "1981-06-25"
## [18911] "1981-06-25" "1981-06-25" "1981-06-25" "1981-06-25" "1981-06-25"
## [18916] "1988-08-22" "1988-08-22" "1988-08-22" "1988-08-22" "1988-08-22"
## [18921] "1990-12-15" "1990-12-15" "1990-12-15" "1990-12-15" "1990-12-15"
## [18926] "1990-12-15" "1990-12-15" "1990-12-15" "1990-12-15" "1990-12-15"
## [18931] "1990-12-15" "1990-12-15" "1970-02-01" "1970-02-01" "1970-02-01"
## [18936] "1970-02-01" "1970-02-01" "1970-02-01" "1970-02-01" "1970-02-01"
## [18941] "1982-03-19" "1982-03-19" "1982-03-19" "1982-03-19" "1982-03-19"
## [18946] "1982-03-19" "1982-03-19" "1982-03-19" "1982-03-19" "1982-03-19"
## [18951] "1980-01-27" "1980-01-27" "1980-01-27" "1980-01-27" "1980-01-27"
## [18956] "1970-08-07" "1970-08-07" "1970-08-07" "1970-08-07" "1970-08-07"
## [18961] "1970-08-07" "1970-08-07" "1970-08-07" "1970-08-07" "1970-08-07"
## [18966] "1981-07-13" "1981-07-13" "1981-07-13" "1981-07-13" "1981-07-13"
## [18971] "1981-07-13" "1981-07-13" "1981-07-13" "1981-07-13" "1981-07-13"
## [18976] "1981-07-13" "1981-07-13" "1981-07-13" "1970-10-08" "1970-10-08"
## [18981] "1970-10-08" "1970-10-08" "1970-10-08" "1970-10-08" "1970-10-08"
## [18986] "1970-10-08" "1970-10-08" "1970-10-08" "1970-10-08" "1970-10-08"
## [18991] "1970-10-08" "1970-10-08" "1970-10-08" "1970-10-08" "1970-10-08"
## [18996] "1970-10-08" "1970-10-08" "1970-10-08" "1970-10-08" "1970-10-08"
## [19001] "1979-03-25" "1979-03-25" "1979-03-25" "1979-03-25" "1979-03-25"
## [19006] "1979-03-25" "1992-09-07" "1992-09-07" "1992-09-07" "1992-09-07"
## [19011] "1974-10-24" "1974-10-24" "1974-10-24" "1974-10-24" "1974-10-24"
## [19016] "1975-12-17" "1975-12-17" "1975-12-17" "1975-12-17" "1975-12-17"
## [19021] "1975-12-17" "1975-12-17" "1975-12-17" "1975-12-17" "1975-02-04"
## [19026] "1975-02-04" "1975-02-04" "1975-02-04" "1975-02-04" "1975-02-04"
## [19031] "1975-02-04" "1975-02-04" "1975-02-04" "1975-02-04" "1975-02-04"
## [19036] "1974-12-03" "1974-12-03" "1974-12-03" "1974-12-03" "1974-12-03"
## [19041] "1974-12-03" "1974-12-03" "1989-11-10" "1989-11-10" "1989-11-10"
## [19046] "1982-07-27" "1982-07-27" "1982-07-27" "1982-07-27" "1982-07-27"
## [19051] "1982-07-27" "1982-07-27" "1982-07-27" "1982-07-27" "1982-07-27"
## [19056] "1982-07-27" "1982-07-27" "1982-07-27" "1982-07-27" "1982-07-27"
## [19061] "1982-07-27" "1982-07-27" "1982-07-27" "1982-07-27" "1982-07-27"
## [19066] "1982-07-27" "1982-07-27" "1982-07-27" "1982-07-27" "1982-03-07"
## [19071] "1982-03-07" "1982-03-07" "1982-03-07" "1982-03-07" "1982-03-07"
## [19076] "1982-03-07" "1982-03-07" "1992-10-15" "1992-10-15" "1992-10-15"
## [19081] "1992-10-15" "1992-10-15" "1992-10-15" "1992-10-15" "1992-10-15"
## [19086] "1992-10-15" "1992-10-15" "1992-10-15" "1992-10-15" "1992-10-15"
## [19091] "1992-10-15" "1992-10-15" "1992-10-15" "1992-10-15" "1992-10-15"
## [19096] "1992-10-15" "1992-10-15" "1981-09-26" "1981-09-26" "1981-09-26"
## [19101] "1981-09-26" "1981-09-26" "1981-09-26" "1981-09-26" "1981-09-26"
## [19106] "1981-09-26" "1981-09-26" "1981-09-26" "1981-09-26" "1981-09-26"
## [19111] "1981-09-26" "1981-09-26" "1978-02-19" "1978-02-19" "1978-02-19"
## [19116] "1978-02-19" "1978-02-19" "1978-02-19" "1978-02-19" "1978-02-19"
## [19121] "1980-03-06" "1980-03-06" "1980-03-06" "1980-03-06" "1980-03-06"
## [19126] "1980-03-06" "1980-03-06" "1980-03-06" "1980-03-06" "1982-09-12"
## [19131] "1982-09-12" "1982-09-12" "1982-09-12" "1982-09-12" "1982-09-12"
## [19136] "1982-09-12" "1982-09-12" "1982-09-12" "1982-09-12" "1982-09-12"
## [19141] "1982-09-12" "1982-09-12" "1982-09-12" "1982-09-12" "1982-09-12"
## [19146] "1976-07-22" "1976-07-22" "1976-07-22" "1976-07-22" "1976-07-22"
## [19151] "1976-07-22" "1976-07-22" "1976-07-22" "1976-07-22" "1976-07-22"
## [19156] "1976-07-22" "1976-07-22" "1976-07-22" "1976-07-22" "1976-07-22"
## [19161] "1976-07-22" "1976-07-22" "1976-07-22" "1976-07-22" "1981-01-01"
## [19166] "1981-01-01" "1978-11-24" "1978-11-24" "1978-11-24" "1978-11-24"
## [19171] "1977-11-21" "1977-11-21" "1977-11-21" "1977-11-21" "1977-11-21"
## [19176] "1977-11-21" "1977-11-21" "1977-11-21" "1977-11-21" "1976-02-21"
## [19181] "1976-02-21" "1976-02-21" "1976-02-21" "1976-02-21" "1976-02-21"
## [19186] "1976-02-21" "1976-02-21" "1976-02-21" "1981-08-13" "1981-08-13"
## [19191] "1981-08-13" "1981-08-13" "1978-05-02" "1978-05-02" "1978-05-02"
## [19196] "1978-05-02" "1978-05-02" "1978-05-02" "1983-04-20" "1983-04-20"
## [19201] "1983-04-20" "1983-04-20" "1983-04-20" "1983-04-20" "1983-04-20"
## [19206] "1983-04-20" "1984-11-22" "1984-11-22" "1984-11-22" "1984-11-22"
## [19211] "1984-11-22" "1984-11-22" "1984-11-22" "1984-11-22" "1984-11-22"
## [19216] "1984-11-22" "1984-11-22" "1984-11-22" "1984-11-22" "1984-11-22"
## [19221] "1984-11-22" "1984-11-22" "1984-11-22" "1980-07-11" "1980-07-11"
## [19226] "1980-07-11" "1980-07-11" "1980-07-11" "1980-07-11" "1980-07-11"
## [19231] "1980-07-11" "1980-07-11" "1980-07-11" "1980-07-11" "1980-07-11"
## [19236] "1980-07-11" "1980-07-11" "1980-07-11" "1980-07-11" "1975-10-12"
## [19241] "1975-10-12" "1975-10-12" "1975-10-12" "1975-10-12" "1975-10-12"
## [19246] "1975-10-12" "1971-07-18" "1971-07-18" "1971-07-18" "1971-07-18"
## [19251] "1982-01-29" "1982-01-29" "1973-05-11" "1973-05-11" "1973-05-11"
## [19256] "1973-05-11" "1973-05-11" "1973-05-11" "1973-05-11" "1973-05-11"
## [19261] "1973-05-11" "1973-05-11" "1973-05-11" "1973-05-11" "1973-05-11"
## [19266] "1973-05-11" "1973-05-11" "1973-05-11" "1973-05-11" "1973-05-11"
## [19271] "1973-05-11" "1973-05-11" "1973-05-11" "1973-05-11" "1973-05-11"
## [19276] "1973-05-11" "1978-07-23" "1978-07-23" "1978-07-23" "1978-07-23"
## [19281] "1978-07-23" "1978-07-23" "1978-07-23" "1978-07-23" "1978-07-23"
## [19286] "1978-07-23" "1978-07-23" "1978-07-23" "1978-07-23" "1978-07-23"
## [19291] "1978-07-23" "1978-07-23" "1978-07-23" "1978-07-23" "1978-07-23"
## [19296] "1978-07-23" "1978-07-23" "1978-07-23" "1978-07-23" "1988-01-22"
## [19301] "1988-01-22" "1988-01-22" "1988-01-22" "1988-01-22" "1988-01-22"
## [19306] "1988-01-22" "1978-01-22" "1978-01-22" "1978-01-22" "1978-01-22"
## [19311] "1987-04-18" "1987-04-18" "1987-04-18" "1971-02-26" "1971-02-26"
## [19316] "1978-04-28" "1978-04-28" "1978-04-28" "1978-04-28" "1978-04-28"
## [19321] "1978-04-28" "1978-04-28" "1978-04-28" "1978-04-28" "1978-04-28"
## [19326] "1978-04-28" "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01"
## [19331] "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01"
## [19336] "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01"
## [19341] "1985-05-01" "1988-10-07" "1988-10-07" "1988-10-07" "1988-10-07"
## [19346] "1988-10-07" "1988-10-07" "1988-10-07" "1988-10-07" "1988-10-07"
## [19351] "1988-10-07" "1988-10-07" "1978-03-26" "1978-03-26" "1978-03-26"
## [19356] "1978-03-26" "1976-05-02" "1976-05-02" "1976-05-02" "1976-05-02"
## [19361] "1976-05-02" "1976-05-02" "1978-11-24" "1978-11-24" "1978-11-24"
## [19366] "1978-11-24" "1978-11-24" "1978-11-24" "1978-11-24" "1972-09-05"
## [19371] "1972-09-05" "1972-09-05" "1972-09-05" "1972-09-05" "1972-09-05"
## [19376] "1972-09-05" "1972-09-05" "1972-09-05" "1972-09-05" "1972-09-05"
## [19381] "1972-09-05" "1972-09-05" "1972-09-05" "1984-07-15" "1984-07-15"
## [19386] "1984-07-15" "1984-07-15" "1984-07-15" "1984-07-15" "1987-02-04"
## [19391] "1987-02-04" "1987-02-04" "1987-02-04" "1987-02-04" "1987-02-04"
## [19396] "1987-02-04" "1987-02-04" "1987-02-04" "1987-02-04" "1987-02-04"
## [19401] "1987-02-04" "1987-02-04" "1987-02-04" "1987-02-04" "1987-02-04"
## [19406] "1987-02-04" "1987-02-04" "1987-02-04" "1987-02-04" "1987-02-04"
## [19411] "1987-02-04" "1987-02-04" "1977-11-05" "1977-11-05" "1977-11-05"
## [19416] "1977-11-05" "1977-11-05" "1977-11-05" "1977-11-05" "1977-11-05"
## [19421] "1977-11-05" "1977-11-05" "1977-11-05" "1977-11-05" "1980-02-04"
## [19426] "1980-02-04" "1980-02-04" "1980-02-04" "1980-02-04" "1980-02-04"
## [19431] "1980-02-04" "1980-02-04" "1980-02-04" "1980-02-04" "1980-02-04"
## [19436] "1989-12-29" "1989-12-29" "1989-12-29" "1989-12-29" "1989-12-29"
## [19441] "1989-12-29" "1989-12-29" "1989-12-29" "1991-11-22" "1991-11-22"
## [19446] "1991-11-22" "1991-11-22" "1991-11-22" "1991-11-22" "1991-11-22"
## [19451] "1991-11-22" "1986-10-25" "1986-10-25" "1986-10-25" "1986-10-25"
## [19456] "1986-10-25" "1986-10-25" "1986-10-25" "1986-10-25" "1986-10-25"
## [19461] "1986-10-25" "1986-10-25" "1986-10-25" "1986-10-25" "1986-10-25"
## [19466] "1986-07-16" "1986-07-16" "1986-07-16" "1986-07-16" "1986-07-16"
## [19471] "1992-10-23" "1992-10-23" "1992-10-23" "1992-10-23" "1992-10-23"
## [19476] "1992-10-23" "1992-10-23" "1992-10-23" "1992-10-23" "1992-10-23"
## [19481] "1992-10-23" "1992-10-23" "1992-10-23" "1992-10-23" "1976-04-18"
## [19486] "1976-04-18" "1976-04-18" "1976-04-18" "1976-04-18" "1981-05-12"
## [19491] "1981-05-12" "1981-05-12" "1981-05-12" "1981-05-12" "1981-05-12"
## [19496] "1981-05-12" "1981-05-12" "1981-05-12" "1981-05-12" "1981-05-12"
## [19501] "1981-05-12" "1981-05-12" "1981-05-12" "1972-03-03" "1972-03-03"
## [19506] "1972-03-03" "1992-02-22" "1992-02-22" "1992-02-22" "1989-08-02"
## [19511] "1989-08-02" "1984-12-05" "1984-12-05" "1974-09-21" "1974-09-21"
## [19516] "1974-09-21" "1974-09-21" "1974-09-21" "1974-09-21" "1974-09-21"
## [19521] "1974-09-21" "1974-09-21" "1987-03-10" "1987-03-10" "1987-03-10"
## [19526] "1987-03-10" "1987-03-10" "1987-03-10" "1987-03-10" "1987-03-10"
## [19531] "1987-03-10" "1987-03-10" "1987-03-10" "1987-03-10" "1987-03-10"
## [19536] "1987-03-10" "1987-03-10" "1987-03-10" "1987-03-10" "1987-03-10"
## [19541] "1970-06-01" "1970-06-01" "1970-06-01" "1970-06-01" "1970-06-01"
## [19546] "1970-06-01" "1970-06-01" "1970-06-01" "1982-09-17" "1982-09-17"
## [19551] "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17"
## [19556] "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17"
## [19561] "1982-09-17" "1983-09-19" "1983-09-19" "1983-09-19" "1983-09-19"
## [19566] "1983-09-19" "1983-09-19" "1983-09-19" "1983-09-19" "1983-09-19"
## [19571] "1983-09-19" "1983-09-19" "1983-09-19" "1983-09-19" "1988-04-28"
## [19576] "1988-04-28" "1988-04-28" "1988-04-28" "1988-04-28" "1988-04-28"
## [19581] "1988-04-28" "1988-04-28" "1988-04-28" "1982-05-29" "1982-05-29"
## [19586] "1982-05-29" "1982-05-29" "1982-05-29" "1982-05-29" "1982-05-29"
## [19591] "1982-05-29" "1982-05-29" "1989-05-25" "1989-05-25" "1989-05-25"
## [19596] "1989-05-25" "1989-05-25" "1989-05-25" "1989-05-25" "1989-05-25"
## [19601] "1989-05-25" "1989-05-25" "1989-05-25" "1989-05-25" "1989-05-25"
## [19606] "1989-05-25" "1989-05-25" "1978-02-15" "1978-02-15" "1978-02-15"
## [19611] "1978-02-15" "1978-02-15" "1978-02-15" "1978-02-15" "1975-12-23"
## [19616] "1975-12-23" "1975-12-23" "1975-12-23" "1975-12-23" "1975-12-23"
## [19621] "1975-12-23" "1975-12-23" "1970-10-05" "1970-10-05" "1970-10-05"
## [19626] "1970-10-05" "1970-10-05" "1970-10-05" "1970-10-05" "1970-10-05"
## [19631] "1970-10-05" "1970-10-05" "1976-10-27" "1976-10-27" "1976-10-27"
## [19636] "1976-10-27" "1974-11-29" "1974-11-29" "1974-11-29" "1974-11-29"
## [19641] "1974-11-29" "1974-11-29" "1974-11-29" "1990-03-14" "1990-03-14"
## [19646] "1990-03-14" "1990-03-14" "1990-03-14" "1990-03-14" "1990-03-14"
## [19651] "1990-03-14" "1990-03-14" "1990-03-14" "1990-03-14" "1990-03-14"
## [19656] "1990-03-14" "1990-03-14" "1990-03-14" "1971-10-07" "1971-10-07"
## [19661] "1971-10-07" "1971-10-07" "1971-10-07" "1980-09-29" "1980-09-29"
## [19666] "1980-09-29" "1980-09-29" "1980-09-29" "1980-09-29" "1980-09-29"
## [19671] "1980-09-29" "1980-09-29" "1980-09-29" "1980-09-29" "1980-09-29"
## [19676] "1980-09-29" "1980-09-29" "1986-12-10" "1986-12-10" "1986-12-10"
## [19681] "1986-12-10" "1986-12-10" "1986-12-10" "1986-12-10" "1986-12-10"
## [19686] "1986-12-10" "1986-12-10" "1986-12-10" "1986-12-10" "1986-12-10"
## [19691] "1986-12-10" "1986-12-10" "1986-12-10" "1986-12-10" "1986-12-10"
## [19696] "1986-12-10" "1986-12-10" "1986-12-10" "1986-12-10" "1986-12-10"
## [19701] "1986-12-10" "1986-12-10" "1990-03-22" "1990-03-22" "1990-03-22"
## [19706] "1990-03-22" "1990-03-22" "1990-03-22" "1990-03-22" "1990-03-22"
## [19711] "1990-03-22" "1990-03-22" "1990-03-22" "1990-03-22" "1990-03-22"
## [19716] "1990-03-22" "1990-03-22" "1990-03-22" "1990-03-22" "1990-03-22"
## [19721] "1990-03-22" "1990-03-22" "1972-05-26" "1972-05-26" "1972-05-26"
## [19726] "1972-05-26" "1972-05-26" "1972-05-26" "1972-05-26" "1972-05-26"
## [19731] "1972-05-26" "1972-05-26" "1981-10-08" "1981-10-08" "1981-10-08"
## [19736] "1981-10-08" "1981-10-08" "1981-10-08" "1981-10-08" "1981-10-08"
## [19741] "1981-10-08" "1972-07-27" "1972-07-27" "1972-07-27" "1972-07-27"
## [19746] "1972-07-27" "1972-07-27" "1972-07-27" "1972-07-27" "1972-07-27"
## [19751] "1972-07-27" "1972-07-27" "1978-07-13" "1978-07-13" "1978-07-13"
## [19756] "1978-07-13" "1978-07-13" "1974-10-22" "1974-10-22" "1974-10-22"
## [19761] "1974-10-22" "1974-10-22" "1974-10-22" "1974-10-22" "1974-10-22"
## [19766] "1974-10-22" "1974-10-22" "1974-10-22" "1974-10-22" "1974-10-22"
## [19771] "1974-10-22" "1974-10-22" "1974-10-22" "1974-10-22" "1974-10-22"
## [19776] "1974-10-22" "1988-01-06" "1988-01-06" "1988-01-06" "1988-01-06"
## [19781] "1988-01-06" "1988-01-06" "1988-01-06" "1988-01-06" "1988-01-06"
## [19786] "1988-01-06" "1979-09-17" "1979-09-17" "1979-09-17" "1979-09-17"
## [19791] "1979-09-17" "1979-09-17" "1979-09-17" "1979-09-17" "1979-09-17"
## [19796] "1979-09-17" "1979-09-17" "1979-09-17" "1992-07-24" "1992-07-24"
## [19801] "1992-07-24" "1992-07-24" "1992-07-24" "1992-07-24" "1992-07-24"
## [19806] "1992-07-24" "1992-07-24" "1992-07-24" "1992-07-24" "1992-07-24"
## [19811] "1992-07-24" "1992-07-24" "1992-07-24" "1992-07-24" "1992-07-24"
## [19816] "1992-07-24" "1986-12-21" "1986-12-21" "1986-12-21" "1986-12-21"
## [19821] "1986-12-21" "1986-12-21" "1986-12-21" "1986-12-21" "1986-12-21"
## [19826] "1986-12-21" "1974-10-27" "1974-10-27" "1974-10-27" "1974-10-27"
## [19831] "1974-10-27" "1974-10-27" "1974-10-27" "1974-10-27" "1974-10-27"
## [19836] "1974-10-27" "1974-10-27" "1979-02-19" "1979-02-19" "1979-02-19"
## [19841] "1979-02-19" "1979-02-19" "1992-04-06" "1992-04-06" "1992-04-06"
## [19846] "1992-04-06" "1992-12-25" "1992-12-25" "1992-12-25" "1992-12-25"
## [19851] "1992-12-25" "1992-12-25" "1992-12-25" "1992-12-25" "1992-12-25"
## [19856] "1992-12-25" "1975-09-07" "1975-09-07" "1975-09-07" "1975-09-07"
## [19861] "1975-09-07" "1975-09-07" "1975-09-07" "1975-09-07" "1975-09-07"
## [19866] "1975-09-07" "1975-09-07" "1975-09-07" "1971-05-20" "1971-05-20"
## [19871] "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15"
## [19876] "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15"
## [19881] "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15"
## [19886] "1988-10-11" "1988-10-11" "1988-10-11" "1988-10-11" "1988-10-11"
## [19891] "1991-09-13" "1991-09-13" "1991-09-13" "1991-09-13" "1991-09-13"
## [19896] "1992-01-01" "1992-01-01" "1992-01-01" "1992-01-01" "1992-01-01"
## [19901] "1992-01-01" "1992-01-01" "1992-01-01" "1992-01-01" "1992-01-01"
## [19906] "1992-01-01" "1992-01-01" "1992-01-01" "1992-01-01" "1992-10-14"
## [19911] "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14"
## [19916] "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14"
## [19921] "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14"
## [19926] "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14"
## [19931] "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14"
## [19936] "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14" "1992-10-14"
## [19941] "1987-12-15" "1987-12-15" "1987-12-15" "1987-12-15" "1987-12-15"
## [19946] "1987-12-15" "1987-12-15" "1987-12-15" "1987-12-15" "1987-12-15"
## [19951] "1987-12-15" "1990-08-23" "1990-08-23" "1992-04-16" "1992-04-16"
## [19956] "1988-02-01" "1988-02-01" "1988-02-01" "1988-02-01" "1988-02-01"
## [19961] "1988-02-01" "1972-05-22" "1972-05-22" "1972-05-22" "1972-05-22"
## [19966] "1972-05-22" "1972-05-22" "1972-05-22" "1972-05-22" "1972-05-22"
## [19971] "1975-08-04" "1975-08-04" "1975-08-04" "1975-08-04" "1975-08-04"
## [19976] "1975-08-04" "1975-08-04" "1975-08-04" "1975-08-04" "1975-08-04"
## [19981] "1975-08-04" "1975-08-04" "1975-08-04" "1975-08-04" "1975-08-04"
## [19986] "1975-08-04" "1990-08-18" "1990-08-18" "1990-08-18" "1977-12-13"
## [19991] "1977-12-13" "1977-12-13" "1977-12-13" "1977-12-13" "1977-12-13"
## [19996] "1977-12-13" "1977-12-13" "1977-12-13" "1977-12-13" "1979-02-22"
## [20001] "1979-02-22" "1979-02-22" "1975-05-07" "1975-05-07" "1975-05-07"
## [20006] "1975-05-07" "1975-05-07" "1975-05-07" "1975-05-07" "1975-05-07"
## [20011] "1975-05-07" "1988-06-28" "1988-06-28" "1988-06-28" "1988-06-28"
## [20016] "1988-06-28" "1988-06-28" "1987-05-24" "1987-05-24" "1990-02-05"
## [20021] "1990-02-05" "1990-02-05" "1990-02-05" "1990-02-05" "1990-02-05"
## [20026] "1990-02-05" "1990-02-05" "1990-02-05" "1990-02-05" "1990-02-05"
## [20031] "1991-01-16" "1991-01-16" "1991-01-16" "1991-01-16" "1991-01-16"
## [20036] "1991-01-16" "1991-01-16" "1991-01-16" "1991-01-16" "1991-01-16"
## [20041] "1991-01-16" "1991-01-16" "1972-03-15" "1972-03-15" "1972-03-15"
## [20046] "1972-03-15" "1972-03-15" "1972-03-15" "1986-06-16" "1986-06-16"
## [20051] "1974-11-15" "1974-11-15" "1974-11-15" "1974-11-15" "1974-11-15"
## [20056] "1974-11-15" "1974-11-15" "1974-11-15" "1974-11-15" "1974-11-15"
## [20061] "1974-11-15" "1974-11-15" "1986-03-24" "1986-03-24" "1986-03-24"
## [20066] "1986-03-24" "1986-03-24" "1986-03-24" "1986-03-24" "1986-03-24"
## [20071] "1986-03-24" "1986-03-24" "1986-03-24" "1986-03-24" "1986-03-24"
## [20076] "1981-12-05" "1981-12-05" "1981-12-05" "1981-12-05" "1981-12-05"
## [20081] "1982-10-27" "1982-10-27" "1982-10-27" "1982-10-27" "1982-10-27"
## [20086] "1982-10-27" "1982-10-27" "1982-10-27" "1982-10-27" "1982-10-27"
## [20091] "1982-10-27" "1982-10-27" "1979-12-24" "1979-12-24" "1979-08-21"
## [20096] "1979-08-21" "1979-08-21" "1979-08-21" "1979-08-21" "1979-08-21"
## [20101] "1979-08-21" "1979-08-21" "1979-08-21" "1988-07-26" "1988-07-26"
## [20106] "1988-07-26" "1988-07-26" "1988-07-26" "1988-07-26" "1988-07-26"
## [20111] "1988-07-26" "1988-07-26" "1988-07-26" "1988-07-26" "1988-07-26"
## [20116] "1988-07-26" "1988-07-26" "1988-07-26" "1977-09-16" "1977-09-16"
## [20121] "1977-09-16" "1977-09-16" "1977-09-16" "1988-12-13" "1988-12-13"
## [20126] "1988-12-13" "1988-12-13" "1988-12-13" "1988-12-13" "1988-12-13"
## [20131] "1988-12-13" "1988-12-13" "1988-12-13" "1988-12-13" "1988-12-13"
## [20136] "1988-12-13" "1976-02-07" "1976-02-07" "1976-02-07" "1986-11-26"
## [20141] "1986-11-26" "1986-11-26" "1986-11-26" "1986-11-26" "1980-02-06"
## [20146] "1980-02-06" "1980-02-06" "1980-02-06" "1980-02-06" "1980-02-06"
## [20151] "1980-02-06" "1980-02-06" "1980-02-06" "1980-02-06" "1980-02-06"
## [20156] "1980-02-06" "1980-02-06" "1980-02-06" "1974-12-11" "1974-12-11"
## [20161] "1974-12-11" "1974-12-11" "1974-12-11" "1974-12-11" "1974-12-11"
## [20166] "1974-12-11" "1974-12-11" "1974-12-11" "1974-12-11" "1974-12-11"
## [20171] "1974-12-11" "1974-12-11" "1974-12-11" "1974-12-11" "1974-12-11"
## [20176] "1974-12-11" "1990-03-10" "1990-03-10" "1990-03-10" "1990-03-10"
## [20181] "1990-03-10" "1990-03-10" "1990-03-10" "1990-03-10" "1990-03-10"
## [20186] "1981-04-13" "1981-04-13" "1981-04-13" "1981-04-13" "1981-04-13"
## [20191] "1979-05-24" "1979-05-24" "1979-05-24" "1979-05-24" "1979-05-24"
## [20196] "1979-05-24" "1979-05-24" "1979-05-24" "1979-05-24" "1979-05-24"
## [20201] "1979-05-24" "1979-05-24" "1979-05-24" "1979-05-24" "1979-05-24"
## [20206] "1979-05-24" "1981-07-19" "1981-07-19" "1983-10-16" "1983-10-16"
## [20211] "1983-10-16" "1983-10-16" "1983-10-16" "1985-12-24" "1985-12-24"
## [20216] "1985-12-24" "1985-12-24" "1985-12-24" "1985-12-24" "1985-12-24"
## [20221] "1985-12-24" "1985-12-24" "1985-12-24" "1985-12-24" "1985-12-24"
## [20226] "1985-12-24" "1985-12-24" "1985-12-24" "1985-12-24" "1985-12-24"
## [20231] "1985-12-24" "1985-12-24" "1985-12-24" "1984-06-09" "1984-06-09"
## [20236] "1984-06-09" "1984-06-09" "1984-06-09" "1980-01-04" "1980-01-04"
## [20241] "1980-01-04" "1980-01-04" "1980-01-04" "1974-07-19" "1974-07-19"
## [20246] "1974-07-19" "1974-07-19" "1974-07-19" "1974-07-19" "1974-07-19"
## [20251] "1974-07-19" "1974-07-19" "1974-07-19" "1982-11-05" "1982-11-05"
## [20256] "1982-11-05" "1982-11-05" "1982-11-05" "1982-11-05" "1983-03-17"
## [20261] "1983-03-17" "1983-03-17" "1983-03-17" "1983-03-17" "1983-03-17"
## [20266] "1983-03-17" "1983-03-17" "1983-03-17" "1983-03-17" "1983-03-17"
## [20271] "1983-03-17" "1983-03-17" "1986-05-13" "1986-05-13" "1986-05-13"
## [20276] "1986-05-13" "1986-05-13" "1986-05-13" "1986-05-13" "1986-05-13"
## [20281] "1982-02-03" "1982-02-03" "1982-02-03" "1982-02-03" "1982-02-03"
## [20286] "1982-02-03" "1984-06-08" "1984-06-08" "1984-06-08" "1984-06-08"
## [20291] "1984-06-08" "1984-06-08" "1984-06-08" "1984-06-08" "1984-06-08"
## [20296] "1984-06-08" "1981-04-20" "1981-04-20" "1981-04-20" "1981-04-20"
## [20301] "1981-04-20" "1981-04-20" "1981-04-20" "1981-04-20" "1981-04-20"
## [20306] "1981-04-20" "1981-04-20" "1976-09-14" "1976-09-14" "1976-09-14"
## [20311] "1976-09-14" "1976-09-14" "1976-09-14" "1976-09-14" "1988-08-04"
## [20316] "1988-08-04" "1988-08-04" "1988-08-04" "1988-08-04" "1988-08-04"
## [20321] "1988-08-04" "1988-08-04" "1988-08-04" "1988-08-04" "1988-08-04"
## [20326] "1988-08-04" "1988-08-04" "1988-08-04" "1988-08-04" "1988-08-04"
## [20331] "1985-11-19" "1985-11-19" "1985-11-19" "1985-11-19" "1985-11-19"
## [20336] "1985-11-19" "1982-02-26" "1982-02-26" "1982-02-26" "1982-02-26"
## [20341] "1982-02-26" "1982-02-26" "1982-02-26" "1982-02-26" "1982-02-26"
## [20346] "1982-02-26" "1982-02-26" "1982-02-26" "1982-02-26" "1982-02-26"
## [20351] "1982-02-26" "1982-02-26" "1982-02-26" "1982-02-26" "1982-02-26"
## [20356] "1984-10-24" "1984-10-24" "1984-10-24" "1984-10-24" "1984-10-24"
## [20361] "1984-10-24" "1984-10-24" "1984-10-24" "1973-08-20" "1973-08-20"
## [20366] "1973-08-20" "1973-08-20" "1973-08-20" "1973-08-20" "1973-08-20"
## [20371] "1973-08-20" "1973-08-20" "1973-08-20" "1973-08-20" "1973-08-20"
## [20376] "1985-03-25" "1985-03-25" "1985-03-25" "1985-03-25" "1985-03-25"
## [20381] "1985-03-25" "1985-03-25" "1985-03-25" "1982-11-23" "1982-11-23"
## [20386] "1982-11-23" "1982-11-23" "1982-11-23" "1982-11-23" "1982-11-23"
## [20391] "1982-11-23" "1982-11-23" "1982-11-23" "1982-11-23" "1982-11-23"
## [20396] "1982-11-23" "1982-11-23" "1982-11-23" "1982-11-23" "1982-11-23"
## [20401] "1982-11-23" "1992-10-23" "1992-10-23" "1976-09-04" "1976-09-04"
## [20406] "1974-07-01" "1974-07-01" "1974-07-01" "1974-07-01" "1974-07-01"
## [20411] "1974-07-01" "1974-07-01" "1974-07-01" "1974-07-01" "1974-07-01"
## [20416] "1974-07-01" "1974-07-01" "1984-02-22" "1984-02-22" "1984-02-22"
## [20421] "1984-02-22" "1984-02-22" "1984-02-22" "1984-02-22" "1984-02-22"
## [20426] "1984-02-22" "1984-02-22" "1984-02-22" "1984-02-22" "1984-02-22"
## [20431] "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28"
## [20436] "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28"
## [20441] "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28" "1979-12-28"
## [20446] "1981-10-23" "1981-10-23" "1981-10-23" "1971-06-29" "1971-06-29"
## [20451] "1971-06-29" "1971-06-29" "1971-06-29" "1971-06-29" "1971-06-29"
## [20456] "1971-06-29" "1971-06-29" "1971-06-29" "1987-08-29" "1987-08-29"
## [20461] "1987-08-29" "1987-08-29" "1987-08-29" "1987-08-29" "1987-08-29"
## [20466] "1987-08-29" "1987-08-29" "1987-08-29" "1987-08-29" "1987-08-29"
## [20471] "1987-08-29" "1987-08-29" "1982-01-01" "1982-01-01" "1982-01-01"
## [20476] "1982-01-01" "1982-01-01" "1982-01-01" "1982-01-01" "1982-01-01"
## [20481] "1982-01-01" "1974-11-14" "1974-11-14" "1974-11-14" "1974-11-14"
## [20486] "1974-11-14" "1974-11-14" "1974-11-14" "1974-11-14" "1986-09-28"
## [20491] "1986-09-28" "1986-09-28" "1986-09-28" "1986-09-28" "1986-09-28"
## [20496] "1986-09-28" "1986-09-28" "1986-09-28" "1986-09-28" "1986-09-28"
## [20501] "1986-09-28" "1986-09-28" "1986-09-28" "1986-09-28" "1986-09-28"
## [20506] "1986-09-28" "1981-02-21" "1981-02-21" "1981-02-21" "1981-02-21"
## [20511] "1981-02-21" "1981-02-21" "1981-02-21" "1981-02-21" "1974-06-21"
## [20516] "1974-06-21" "1974-06-21" "1974-06-21" "1974-06-21" "1974-06-21"
## [20521] "1974-06-21" "1974-06-21" "1974-06-21" "1974-06-21" "1987-07-25"
## [20526] "1987-07-25" "1987-07-25" "1987-07-25" "1987-07-25" "1987-07-25"
## [20531] "1987-07-25" "1970-02-18" "1970-02-18" "1970-02-18" "1970-02-18"
## [20536] "1970-02-18" "1970-02-18" "1970-02-18" "1970-02-18" "1970-02-18"
## [20541] "1970-02-18" "1970-02-18" "1983-11-28" "1983-11-28" "1983-11-28"
## [20546] "1983-11-28" "1983-11-28" "1983-11-28" "1983-11-28" "1983-11-28"
## [20551] "1983-11-28" "1983-11-28" "1983-11-28" "1983-11-28" "1983-11-28"
## [20556] "1983-11-28" "1983-11-28" "1983-11-28" "1983-11-28" "1983-11-28"
## [20561] "1983-11-28" "1983-11-28" "1990-01-04" "1990-01-04" "1990-01-04"
## [20566] "1990-01-04" "1990-01-04" "1990-01-04" "1990-01-04" "1990-01-04"
## [20571] "1990-01-04" "1990-01-04" "1990-01-04" "1990-01-04" "1990-01-04"
## [20576] "1990-01-04" "1977-07-03" "1977-07-03" "1977-07-03" "1977-07-03"
## [20581] "1977-07-03" "1977-07-03" "1977-07-03" "1977-07-03" "1977-07-03"
## [20586] "1977-07-03" "1977-07-03" "1977-07-03" "1977-07-03" "1977-07-03"
## [20591] "1977-07-03" "1977-07-03" "1977-07-03" "1977-07-03" "1977-07-03"
## [20596] "1977-07-03" "1977-07-03" "1977-07-03" "1975-11-12" "1975-11-12"
## [20601] "1975-11-12" "1975-11-12" "1975-11-12" "1975-11-12" "1975-11-12"
## [20606] "1975-11-12" "1975-11-12" "1975-11-12" "1975-11-12" "1975-11-12"
## [20611] "1975-11-12" "1975-11-12" "1975-11-12" "1975-11-12" "1975-11-12"
## [20616] "1975-11-12" "1975-11-12" "1975-11-12" "1975-11-12" "1975-11-12"
## [20621] "1975-11-12" "1975-11-12" "1975-11-12" "1979-01-06" "1979-01-06"
## [20626] "1990-10-07" "1990-10-07" "1990-10-07" "1990-10-07" "1990-10-07"
## [20631] "1990-10-07" "1990-10-07" "1990-10-07" "1988-08-01" "1988-08-01"
## [20636] "1988-08-01" "1988-08-01" "1988-08-01" "1975-04-06" "1975-04-06"
## [20641] "1975-04-06" "1975-04-06" "1975-04-06" "1975-04-06" "1975-04-06"
## [20646] "1970-10-16" "1970-10-16" "1970-10-16" "1970-10-16" "1970-10-16"
## [20651] "1970-10-16" "1970-10-16" "1976-06-13" "1976-06-13" "1976-06-13"
## [20656] "1976-06-13" "1976-06-13" "1977-09-11" "1977-09-11" "1977-09-11"
## [20661] "1977-09-11" "1977-09-11" "1977-09-11" "1977-09-11" "1977-09-11"
## [20666] "1977-09-11" "1977-09-11" "1977-09-11" "1992-02-03" "1992-02-03"
## [20671] "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03" "1992-02-03"
## [20676] "1992-02-03" "1978-02-28" "1978-02-28" "1978-02-28" "1978-02-28"
## [20681] "1978-02-28" "1978-02-28" "1978-02-28" "1978-02-28" "1978-02-28"
## [20686] "1976-02-01" "1976-02-01" "1976-02-01" "1980-06-19" "1980-06-19"
## [20691] "1980-06-19" "1980-06-19" "1971-03-05" "1971-03-05" "1971-03-05"
## [20696] "1971-03-05" "1975-12-08" "1975-12-08" "1975-12-08" "1975-12-08"
## [20701] "1975-12-08" "1975-12-08" "1975-12-08" "1975-12-08" "1975-12-08"
## [20706] "1975-12-08" "1975-12-08" "1975-12-08" "1975-12-08" "1975-12-08"
## [20711] "1975-12-08" "1975-12-08" "1975-12-08" "1990-12-15" "1990-12-15"
## [20716] "1990-12-15" "1990-12-15" "1990-12-15" "1990-12-15" "1990-12-15"
## [20721] "1990-12-15" "1990-12-15" "1990-12-15" "1990-12-15" "1978-03-17"
## [20726] "1978-03-17" "1991-04-24" "1991-04-24" "1991-04-24" "1991-04-24"
## [20731] "1991-04-24" "1991-04-24" "1991-04-24" "1991-04-24" "1991-04-24"
## [20736] "1991-04-24" "1991-04-24" "1991-04-24" "1988-03-16" "1988-03-16"
## [20741] "1988-03-16" "1984-03-16" "1984-03-16" "1984-03-16" "1973-10-10"
## [20746] "1973-10-10" "1973-10-10" "1973-10-10" "1973-10-10" "1992-12-05"
## [20751] "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05"
## [20756] "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05"
## [20761] "1992-12-05" "1992-12-05" "1976-06-29" "1976-06-29" "1976-06-29"
## [20766] "1976-06-29" "1976-06-29" "1976-06-29" "1976-06-29" "1976-06-29"
## [20771] "1976-06-29" "1976-06-29" "1982-01-27" "1982-01-27" "1982-01-27"
## [20776] "1982-01-27" "1982-01-27" "1982-01-27" "1982-01-27" "1982-01-27"
## [20781] "1979-10-12" "1979-10-12" "1979-10-12" "1979-10-12" "1979-10-12"
## [20786] "1979-10-12" "1979-10-12" "1979-10-12" "1979-10-12" "1979-10-12"
## [20791] "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29"
## [20796] "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29"
## [20801] "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29" "1992-06-29"
## [20806] "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27" "1972-08-27"
## [20811] "1972-08-27" "1972-08-27" "1990-07-05" "1990-07-05" "1990-07-05"
## [20816] "1990-07-05" "1990-07-05" "1990-07-05" "1990-07-05" "1987-06-04"
## [20821] "1987-06-04" "1987-06-04" "1987-06-04" "1987-06-04" "1981-04-04"
## [20826] "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04"
## [20831] "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04"
## [20836] "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04"
## [20841] "1981-04-04" "1981-04-04" "1981-04-04" "1977-01-11" "1977-01-11"
## [20846] "1977-01-11" "1977-01-11" "1977-01-11" "1977-01-11" "1977-01-11"
## [20851] "1975-10-02" "1975-10-02" "1975-10-02" "1975-10-02" "1975-10-02"
## [20856] "1975-10-02" "1975-10-02" "1975-10-02" "1974-02-24" "1974-02-24"
## [20861] "1974-02-24" "1974-02-24" "1974-02-24" "1974-02-24" "1974-02-24"
## [20866] "1974-02-24" "1974-02-24" "1991-04-26" "1991-04-26" "1984-02-06"
## [20871] "1984-02-06" "1984-02-06" "1984-02-06" "1981-10-12" "1981-10-12"
## [20876] "1981-10-12" "1981-10-12" "1981-10-12" "1981-10-12" "1981-10-12"
## [20881] "1973-05-03" "1973-05-03" "1973-05-03" "1973-05-03" "1973-05-03"
## [20886] "1973-05-03" "1973-05-03" "1973-05-03" "1973-05-03" "1973-05-03"
## [20891] "1973-05-03" "1973-05-03" "1973-05-03" "1973-05-03" "1973-05-03"
## [20896] "1973-05-03" "1979-12-20" "1979-12-20" "1979-12-20" "1979-12-20"
## [20901] "1979-12-20" "1979-12-20" "1979-12-20" "1979-12-20" "1979-12-20"
## [20906] "1979-12-20" "1979-12-20" "1979-12-20" "1979-12-20" "1979-12-20"
## [20911] "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19"
## [20916] "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19"
## [20921] "1970-06-19" "1990-07-17" "1990-07-17" "1990-07-17" "1990-07-17"
## [20926] "1990-07-17" "1990-07-17" "1990-07-17" "1990-07-17" "1990-07-17"
## [20931] "1990-07-17" "1990-07-17" "1990-07-17" "1990-07-17" "1990-07-17"
## [20936] "1990-07-17" "1990-07-17" "1970-08-06" "1970-08-06" "1970-08-06"
## [20941] "1970-08-06" "1970-08-06" "1970-08-06" "1970-08-06" "1975-11-18"
## [20946] "1975-11-18" "1975-11-18" "1975-11-18" "1975-11-18" "1972-01-28"
## [20951] "1972-01-28" "1972-01-28" "1972-01-28" "1972-01-28" "1974-02-07"
## [20956] "1974-02-07" "1974-02-07" "1974-02-07" "1974-02-07" "1974-02-07"
## [20961] "1974-02-07" "1974-02-07" "1974-02-07" "1974-02-07" "1974-02-07"
## [20966] "1974-02-07" "1974-02-07" "1974-02-07" "1974-02-07" "1985-06-26"
## [20971] "1985-06-26" "1985-06-26" "1985-06-26" "1985-06-26" "1985-06-26"
## [20976] "1985-06-26" "1985-06-26" "1985-06-26" "1985-06-26" "1985-06-26"
## [20981] "1985-06-26" "1985-06-26" "1985-06-26" "1985-06-26" "1988-04-09"
## [20986] "1988-04-09" "1980-01-13" "1980-01-13" "1980-01-13" "1980-01-13"
## [20991] "1980-01-13" "1980-01-13" "1980-01-13" "1980-01-13" "1980-01-13"
## [20996] "1981-12-14" "1981-12-14" "1981-12-14" "1981-12-14" "1981-12-14"
## [21001] "1981-12-14" "1981-12-14" "1974-08-06" "1974-08-06" "1974-08-06"
## [21006] "1974-08-06" "1974-08-06" "1974-08-06" "1992-12-05" "1992-12-05"
## [21011] "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05"
## [21016] "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05"
## [21021] "1984-01-11" "1984-01-11" "1984-01-11" "1984-01-11" "1984-01-11"
## [21026] "1983-07-02" "1983-07-02" "1983-07-02" "1983-07-02" "1983-07-02"
## [21031] "1983-07-02" "1983-07-02" "1983-07-02" "1983-07-02" "1983-07-02"
## [21036] "1983-07-02" "1983-07-02" "1982-04-04" "1982-04-04" "1982-04-04"
## [21041] "1982-04-04" "1982-04-04" "1982-04-04" "1982-04-04" "1992-09-12"
## [21046] "1992-09-12" "1992-09-12" "1992-09-12" "1992-09-12" "1992-09-12"
## [21051] "1992-09-12" "1992-09-12" "1992-09-12" "1992-09-12" "1992-09-12"
## [21056] "1992-09-12" "1984-11-27" "1984-11-27" "1984-11-27" "1984-11-27"
## [21061] "1984-11-27" "1984-11-27" "1984-11-27" "1984-11-27" "1984-11-27"
## [21066] "1984-11-27" "1984-11-27" "1984-11-27" "1984-11-27" "1984-11-27"
## [21071] "1984-11-27" "1984-11-27" "1984-11-27" "1984-11-27" "1972-11-24"
## [21076] "1972-11-24" "1972-11-24" "1972-11-24" "1972-11-24" "1972-11-24"
## [21081] "1972-11-24" "1972-11-24" "1972-11-24" "1972-11-24" "1972-11-24"
## [21086] "1972-11-24" "1972-11-24" "1972-11-24" "1972-11-24" "1972-11-24"
## [21091] "1972-11-24" "1978-05-26" "1978-05-26" "1978-05-26" "1978-05-26"
## [21096] "1978-05-26" "1978-05-26" "1978-05-26" "1989-09-06" "1989-09-06"
## [21101] "1989-09-06" "1989-09-06" "1989-09-06" "1989-09-06" "1989-09-06"
## [21106] "1989-09-06" "1989-09-06" "1989-09-06" "1989-09-06" "1976-01-05"
## [21111] "1976-01-05" "1976-01-05" "1980-06-28" "1980-06-28" "1980-06-28"
## [21116] "1980-06-28" "1980-06-28" "1980-06-28" "1980-06-28" "1980-06-28"
## [21121] "1980-06-28" "1980-06-28" "1980-06-28" "1980-06-28" "1980-06-28"
## [21126] "1980-06-28" "1980-06-28" "1980-06-28" "1980-06-28" "1984-03-20"
## [21131] "1984-03-20" "1988-09-08" "1988-09-08" "1988-09-08" "1988-09-08"
## [21136] "1988-09-08" "1988-09-08" "1988-09-08" "1978-03-12" "1978-03-12"
## [21141] "1975-02-27" "1975-02-27" "1975-02-27" "1975-02-27" "1975-02-27"
## [21146] "1975-02-27" "1975-02-27" "1975-02-27" "1975-02-27" "1975-02-27"
## [21151] "1975-02-27" "1975-02-27" "1977-07-13" "1977-07-13" "1972-08-20"
## [21156] "1972-08-20" "1972-08-20" "1972-08-20" "1975-02-06" "1975-02-06"
## [21161] "1975-02-06" "1975-02-06" "1975-02-06" "1975-02-06" "1975-02-06"
## [21166] "1975-02-06" "1975-02-06" "1975-02-06" "1975-02-06" "1975-02-06"
## [21171] "1975-02-06" "1975-02-06" "1975-02-06" "1975-02-06" "1975-02-06"
## [21176] "1987-03-13" "1987-03-13" "1987-03-13" "1988-10-26" "1988-10-26"
## [21181] "1988-10-26" "1988-10-26" "1988-10-26" "1988-10-26" "1988-10-26"
## [21186] "1988-10-26" "1988-10-26" "1988-10-26" "1988-10-26" "1988-10-26"
## [21191] "1988-10-26" "1984-02-22" "1984-02-22" "1984-02-22" "1984-02-22"
## [21196] "1988-01-07" "1988-01-07" "1988-01-07" "1988-01-07" "1988-01-07"
## [21201] "1988-01-07" "1988-01-07" "1988-01-07" "1988-01-07" "1988-01-07"
## [21206] "1977-04-10" "1977-04-10" "1977-04-10" "1977-04-10" "1977-04-10"
## [21211] "1977-04-10" "1977-04-10" "1977-04-10" "1977-04-10" "1977-04-10"
## [21216] "1977-04-10" "1977-04-10" "1974-10-14" "1974-10-14" "1974-10-14"
## [21221] "1974-10-14" "1974-10-14" "1974-10-14" "1974-10-14" "1976-08-20"
## [21226] "1976-08-20" "1976-08-20" "1976-08-20" "1976-08-20" "1971-02-14"
## [21231] "1971-02-14" "1971-02-14" "1971-02-14" "1971-02-14" "1971-02-14"
## [21236] "1971-02-14" "1971-02-14" "1971-02-14" "1971-02-14" "1973-09-26"
## [21241] "1973-09-26" "1973-09-26" "1973-09-26" "1982-01-24" "1982-01-24"
## [21246] "1982-01-24" "1982-01-24" "1982-01-24" "1982-01-24" "1982-01-24"
## [21251] "1982-01-24" "1982-01-24" "1982-01-24" "1982-01-24" "1982-01-24"
## [21256] "1982-01-24" "1982-01-24" "1982-01-24" "1982-01-24" "1982-01-24"
## [21261] "1982-01-24" "1982-01-24" "1976-03-25" "1976-03-25" "1976-03-25"
## [21266] "1976-03-25" "1976-03-25" "1976-03-25" "1976-03-25" "1986-07-03"
## [21271] "1986-07-03" "1986-07-03" "1986-07-03" "1986-07-03" "1986-07-03"
## [21276] "1986-07-03" "1978-01-12" "1978-01-12" "1978-01-12" "1978-01-12"
## [21281] "1978-01-12" "1978-01-12" "1978-01-12" "1978-01-12" "1987-05-17"
## [21286] "1987-05-17" "1987-05-17" "1987-05-17" "1987-05-17" "1987-05-17"
## [21291] "1987-05-17" "1987-05-17" "1987-05-17" "1970-09-17" "1970-09-17"
## [21296] "1970-09-17" "1978-09-13" "1978-09-13" "1978-09-13" "1976-05-14"
## [21301] "1976-05-14" "1978-04-19" "1978-04-19" "1978-04-19" "1978-04-19"
## [21306] "1986-02-23" "1986-02-23" "1986-02-23" "1977-07-03" "1977-07-03"
## [21311] "1977-07-03" "1977-07-03" "1977-07-03" "1977-07-03" "1983-08-05"
## [21316] "1983-08-05" "1983-08-05" "1983-08-05" "1983-08-05" "1978-12-17"
## [21321] "1978-12-17" "1978-12-17" "1978-12-17" "1978-12-17" "1984-04-29"
## [21326] "1984-04-29" "1984-04-29" "1972-09-16" "1972-09-16" "1972-09-16"
## [21331] "1972-09-16" "1972-09-16" "1988-09-17" "1988-09-17" "1988-09-17"
## [21336] "1988-09-17" "1988-09-17" "1988-09-17" "1988-09-17" "1988-09-17"
## [21341] "1988-09-17" "1988-09-17" "1988-09-17" "1988-09-17" "1988-09-17"
## [21346] "1988-09-17" "1988-09-17" "1988-09-17" "1988-09-17" "1991-10-02"
## [21351] "1991-10-02" "1991-10-02" "1991-10-02" "1991-10-02" "1971-07-11"
## [21356] "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11"
## [21361] "1971-07-11" "1971-07-11" "1984-10-10" "1984-10-10" "1970-12-27"
## [21366] "1970-12-27" "1970-12-27" "1970-12-27" "1970-12-27" "1970-12-27"
## [21371] "1970-12-27" "1970-12-27" "1970-12-27" "1970-12-27" "1970-12-27"
## [21376] "1971-03-15" "1971-03-15" "1971-03-15" "1971-03-15" "1971-03-15"
## [21381] "1971-03-15" "1971-03-15" "1971-03-15" "1971-03-15" "1971-03-15"
## [21386] "1971-03-15" "1971-03-15" "1971-03-15" "1971-03-15" "1973-09-12"
## [21391] "1973-09-12" "1973-09-12" "1973-09-12" "1973-09-12" "1973-09-12"
## [21396] "1973-09-12" "1973-09-12" "1973-09-12" "1978-07-06" "1978-07-06"
## [21401] "1978-07-06" "1978-07-06" "1978-07-06" "1978-07-06" "1978-07-06"
## [21406] "1989-09-01" "1989-09-01" "1989-09-01" "1989-09-01" "1989-09-01"
## [21411] "1989-09-01" "1989-09-01" "1989-09-01" "1989-09-01" "1989-09-01"
## [21416] "1989-09-01" "1989-09-01" "1989-09-01" "1989-09-01" "1989-09-01"
## [21421] "1989-09-01" "1989-09-01" "1989-09-01" "1989-09-01" "1989-09-01"
## [21426] "1989-09-01" "1989-09-01" "1989-09-01" "1986-10-12" "1986-10-12"
## [21431] "1986-10-12" "1986-10-12" "1986-10-12" "1986-10-12" "1986-10-12"
## [21436] "1986-10-12" "1986-10-12" "1986-10-12" "1986-10-12" "1986-10-12"
## [21441] "1986-10-12" "1986-10-12" "1986-10-12" "1986-10-12" "1986-10-12"
## [21446] "1986-10-12" "1986-10-12" "1991-11-26" "1991-11-26" "1985-01-18"
## [21451] "1985-01-18" "1985-01-18" "1985-01-18" "1985-01-18" "1985-01-18"
## [21456] "1985-01-18" "1985-01-18" "1985-01-18" "1985-01-18" "1985-01-18"
## [21461] "1985-01-18" "1985-01-18" "1989-10-27" "1989-10-27" "1989-10-27"
## [21466] "1989-10-27" "1989-10-27" "1970-04-18" "1970-04-18" "1970-04-18"
## [21471] "1970-04-18" "1985-09-04" "1985-09-04" "1985-09-04" "1985-09-04"
## [21476] "1985-09-04" "1992-09-20" "1992-09-20" "1992-09-20" "1992-09-20"
## [21481] "1992-09-20" "1992-09-20" "1973-09-10" "1973-09-10" "1973-09-10"
## [21486] "1973-06-04" "1973-06-04" "1973-06-04" "1985-05-20" "1985-05-20"
## [21491] "1985-05-20" "1985-05-20" "1985-05-20" "1985-05-20" "1985-05-20"
## [21496] "1985-05-20" "1985-05-20" "1985-05-20" "1985-05-20" "1985-05-20"
## [21501] "1985-05-20" "1985-05-20" "1985-05-20" "1985-05-20" "1981-05-10"
## [21506] "1981-05-10" "1981-05-10" "1981-05-10" "1981-05-10" "1975-06-01"
## [21511] "1975-06-01" "1975-06-01" "1975-06-01" "1975-06-01" "1974-11-28"
## [21516] "1974-11-28" "1974-11-28" "1974-11-28" "1974-11-28" "1980-12-11"
## [21521] "1980-12-11" "1980-12-11" "1980-12-11" "1987-09-17" "1987-09-17"
## [21526] "1987-09-17" "1987-09-17" "1987-09-17" "1987-09-17" "1987-09-17"
## [21531] "1987-09-17" "1987-09-17" "1987-09-17" "1987-09-17" "1987-09-17"
## [21536] "1987-09-17" "1987-09-17" "1987-09-17" "1987-09-17" "1987-09-17"
## [21541] "1987-09-17" "1987-09-17" "1987-09-17" "1987-09-17" "1987-09-17"
## [21546] "1987-09-17" "1987-09-17" "1987-09-17" "1987-09-17" "1980-11-25"
## [21551] "1980-11-25" "1980-11-25" "1980-11-25" "1980-11-25" "1980-11-25"
## [21556] "1980-11-25" "1980-11-25" "1980-11-25" "1981-08-01" "1981-08-01"
## [21561] "1972-03-01" "1972-03-01" "1972-03-01" "1972-03-01" "1972-03-01"
## [21566] "1972-03-01" "1972-03-01" "1972-03-01" "1972-03-01" "1972-03-01"
## [21571] "1981-10-01" "1981-10-01" "1981-10-01" "1981-10-01" "1981-10-01"
## [21576] "1981-10-01" "1981-10-01" "1981-10-01" "1974-09-02" "1974-09-02"
## [21581] "1974-09-02" "1974-09-02" "1974-09-02" "1981-01-09" "1981-01-09"
## [21586] "1981-01-09" "1981-01-09" "1981-01-09" "1981-01-09" "1978-02-28"
## [21591] "1978-02-28" "1971-07-14" "1971-07-14" "1971-07-14" "1971-07-14"
## [21596] "1971-07-14" "1989-06-19" "1989-06-19" "1989-06-19" "1989-06-19"
## [21601] "1989-06-19" "1989-06-19" "1989-06-19" "1989-06-19" "1989-06-19"
## [21606] "1987-03-26" "1987-03-26" "1987-03-26" "1987-03-26" "1987-03-26"
## [21611] "1987-03-26" "1987-03-26" "1987-03-26" "1987-03-26" "1987-03-26"
## [21616] "1987-03-26" "1987-03-26" "1987-03-26" "1972-06-28" "1972-06-28"
## [21621] "1972-06-28" "1972-06-28" "1972-06-28" "1972-06-28" "1972-06-28"
## [21626] "1972-06-28" "1972-06-28" "1972-06-28" "1972-06-28" "1972-06-28"
## [21631] "1972-06-28" "1972-06-28" "1972-06-28" "1979-01-11" "1979-01-11"
## [21636] "1979-01-11" "1979-01-11" "1979-01-11" "1979-01-11" "1979-01-11"
## [21641] "1979-01-11" "1979-01-11" "1979-01-11" "1979-01-11" "1979-01-11"
## [21646] "1979-01-11" "1979-01-11" "1979-01-11" "1990-07-12" "1990-07-12"
## [21651] "1990-07-12" "1990-07-12" "1990-07-12" "1990-07-12" "1990-07-12"
## [21656] "1990-07-12" "1990-07-12" "1990-07-12" "1970-03-04" "1970-03-04"
## [21661] "1970-03-04" "1974-01-05" "1974-01-05" "1974-01-05" "1974-01-05"
## [21666] "1974-01-05" "1974-01-05" "1974-01-05" "1974-01-05" "1974-01-05"
## [21671] "1974-01-05" "1974-01-05" "1974-01-05" "1974-01-05" "1974-01-05"
## [21676] "1974-01-05" "1974-01-05" "1970-01-22" "1970-01-22" "1970-01-22"
## [21681] "1970-01-22" "1970-01-22" "1970-01-22" "1970-01-22" "1970-01-22"
## [21686] "1970-01-22" "1970-01-22" "1992-03-17" "1992-03-17" "1992-03-17"
## [21691] "1992-03-17" "1992-03-17" "1992-03-17" "1992-03-17" "1992-03-17"
## [21696] "1992-03-17" "1992-03-17" "1992-03-17" "1986-11-10" "1986-11-10"
## [21701] "1986-11-10" "1986-11-10" "1986-11-10" "1986-11-10" "1986-11-10"
## [21706] "1986-11-10" "1986-11-10" "1986-11-10" "1986-11-10" "1986-11-10"
## [21711] "1986-11-10" "1986-11-10" "1986-11-10" "1986-11-10" "1986-11-10"
## [21716] "1986-11-10" "1986-11-10" "1986-11-10" "1986-11-10" "1986-11-10"
## [21721] "1986-11-10" "1986-11-10" "1986-11-10" "1986-11-10" "1986-11-10"
## [21726] "1986-11-10" "1986-11-10" "1988-12-27" "1988-12-27" "1988-12-27"
## [21731] "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27"
## [21736] "1981-01-17" "1981-01-17" "1981-01-17" "1981-01-17" "1981-01-17"
## [21741] "1981-01-17" "1981-01-17" "1981-01-17" "1981-01-17" "1981-01-17"
## [21746] "1981-01-17" "1981-01-17" "1981-01-17" "1975-12-05" "1975-12-05"
## [21751] "1975-12-05" "1973-03-19" "1973-03-19" "1984-12-07" "1984-12-07"
## [21756] "1984-12-07" "1984-12-07" "1984-12-07" "1984-12-07" "1984-12-07"
## [21761] "1984-12-07" "1984-12-07" "1984-12-07" "1984-12-07" "1984-12-07"
## [21766] "1984-12-07" "1984-12-07" "1984-12-07" "1984-12-07" "1984-12-07"
## [21771] "1984-12-07" "1991-11-18" "1991-11-18" "1992-05-26" "1992-05-26"
## [21776] "1992-05-26" "1984-05-05" "1984-05-05" "1984-05-05" "1984-05-05"
## [21781] "1984-05-05" "1984-05-05" "1984-05-05" "1984-05-05" "1984-05-05"
## [21786] "1984-05-05" "1984-05-05" "1984-05-05" "1984-05-05" "1984-05-05"
## [21791] "1989-04-17" "1989-04-17" "1989-04-17" "1989-04-17" "1989-04-17"
## [21796] "1989-04-17" "1989-04-17" "1989-04-17" "1989-04-17" "1989-04-17"
## [21801] "1989-04-17" "1989-04-17" "1989-04-17" "1989-04-17" "1989-04-17"
## [21806] "1989-04-17" "1989-04-17" "1989-04-17" "1989-04-17" "1989-04-17"
## [21811] "1989-04-17" "1989-04-17" "1989-04-17" "1989-04-17" "1983-01-21"
## [21816] "1983-01-21" "1983-01-21" "1983-01-21" "1983-01-21" "1983-01-21"
## [21821] "1983-01-21" "1983-01-21" "1983-01-21" "1983-01-21" "1987-03-06"
## [21826] "1987-03-06" "1987-03-06" "1987-03-06" "1987-03-06" "1987-03-06"
## [21831] "1987-03-06" "1987-03-06" "1972-03-20" "1972-03-20" "1981-10-02"
## [21836] "1981-10-02" "1981-10-02" "1981-10-02" "1981-10-02" "1981-10-02"
## [21841] "1981-10-02" "1983-02-04" "1983-02-04" "1983-02-04" "1983-02-04"
## [21846] "1983-02-04" "1983-02-04" "1983-02-04" "1983-02-04" "1983-02-04"
## [21851] "1983-02-04" "1983-02-04" "1983-02-04" "1983-02-04" "1983-02-04"
## [21856] "1982-10-27" "1982-10-27" "1982-10-27" "1982-10-27" "1982-10-27"
## [21861] "1973-11-26" "1973-11-26" "1973-11-26" "1973-11-26" "1973-11-26"
## [21866] "1973-11-26" "1973-11-26" "1973-11-26" "1973-11-26" "1973-11-26"
## [21871] "1971-10-14" "1971-10-14" "1971-10-14" "1971-10-14" "1971-10-14"
## [21876] "1971-10-14" "1971-10-14" "1971-10-14" "1971-10-14" "1971-10-14"
## [21881] "1971-10-14" "1971-10-14" "1971-10-14" "1971-10-14" "1971-10-14"
## [21886] "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14"
## [21891] "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14"
## [21896] "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14"
## [21901] "1989-07-20" "1989-07-20" "1989-07-20" "1989-07-20" "1989-07-20"
## [21906] "1989-07-20" "1989-07-20" "1989-07-20" "1989-07-20" "1989-07-20"
## [21911] "1989-07-20" "1990-06-23" "1990-06-23" "1990-06-23" "1990-06-23"
## [21916] "1990-06-23" "1990-06-23" "1990-06-23" "1990-06-23" "1990-06-23"
## [21921] "1988-10-23" "1988-10-23" "1988-10-23" "1988-10-23" "1987-10-14"
## [21926] "1987-10-14" "1987-10-14" "1987-10-14" "1987-10-14" "1987-10-14"
## [21931] "1987-10-14" "1975-03-10" "1975-03-10" "1975-03-10" "1975-03-10"
## [21936] "1975-03-10" "1975-03-10" "1975-03-10" "1975-03-10" "1975-03-10"
## [21941] "1975-03-10" "1975-03-10" "1975-03-10" "1975-03-10" "1975-03-10"
## [21946] "1975-03-10" "1975-03-10" "1987-10-02" "1987-10-02" "1973-09-17"
## [21951] "1973-09-17" "1973-09-17" "1973-09-17" "1989-01-26" "1989-01-26"
## [21956] "1989-01-26" "1989-01-26" "1978-10-02" "1978-10-02" "1978-10-02"
## [21961] "1978-10-02" "1973-11-17" "1973-11-17" "1973-11-17" "1973-11-17"
## [21966] "1973-11-17" "1973-11-17" "1973-11-17" "1973-11-17" "1973-11-17"
## [21971] "1973-11-17" "1973-11-17" "1973-11-17" "1973-11-17" "1973-11-17"
## [21976] "1973-11-17" "1973-11-17" "1973-11-17" "1973-11-17" "1973-11-17"
## [21981] "1974-11-22" "1974-11-22" "1974-11-22" "1974-11-22" "1974-11-22"
## [21986] "1984-02-03" "1984-02-03" "1984-02-03" "1984-02-03" "1984-02-03"
## [21991] "1978-04-22" "1978-04-22" "1988-02-05" "1988-02-05" "1988-02-05"
## [21996] "1988-02-05" "1988-02-05" "1988-02-05" "1988-02-05" "1988-02-05"
## [22001] "1988-02-05" "1988-02-05" "1988-02-05" "1988-02-05" "1988-02-05"
## [22006] "1988-02-05" "1991-01-22" "1991-01-22" "1991-01-22" "1991-01-22"
## [22011] "1991-01-22" "1991-01-22" "1991-01-22" "1991-01-22" "1991-01-22"
## [22016] "1991-01-22" "1991-01-22" "1991-01-22" "1991-01-22" "1991-01-22"
## [22021] "1991-01-22" "1991-01-22" "1991-01-22" "1991-01-22" "1991-01-22"
## [22026] "1991-01-22" "1991-01-22" "1991-01-22" "1972-05-05" "1972-05-05"
## [22031] "1972-05-05" "1972-05-05" "1972-05-05" "1972-05-05" "1972-05-05"
## [22036] "1972-05-05" "1978-07-03" "1978-07-03" "1978-07-03" "1978-07-03"
## [22041] "1978-07-03" "1978-07-03" "1978-07-03" "1978-07-03" "1978-07-03"
## [22046] "1985-08-21" "1985-08-21" "1985-08-21" "1985-08-21" "1985-08-21"
## [22051] "1985-08-21" "1985-08-21" "1985-08-21" "1985-08-21" "1985-08-21"
## [22056] "1985-08-21" "1985-08-21" "1988-07-17" "1988-07-17" "1988-07-17"
## [22061] "1988-07-17" "1988-07-17" "1988-07-17" "1988-07-17" "1988-07-17"
## [22066] "1988-07-17" "1988-07-17" "1988-07-17" "1988-07-17" "1988-07-17"
## [22071] "1988-07-17" "1988-07-17" "1988-07-17" "1988-07-17" "1988-07-17"
## [22076] "1988-07-17" "1988-07-17" "1988-07-17" "1989-05-07" "1989-05-07"
## [22081] "1989-05-07" "1989-05-07" "1972-05-18" "1972-05-18" "1972-05-18"
## [22086] "1972-05-18" "1988-06-22" "1988-06-22" "1984-06-01" "1984-06-01"
## [22091] "1984-06-01" "1984-06-01" "1980-07-11" "1980-07-11" "1980-07-11"
## [22096] "1980-07-11" "1980-07-11" "1980-07-11" "1980-07-11" "1980-07-11"
## [22101] "1980-07-11" "1980-07-11" "1980-07-11" "1980-07-11" "1980-07-11"
## [22106] "1980-07-11" "1977-11-21" "1977-11-21" "1977-11-21" "1977-11-21"
## [22111] "1977-11-21" "1972-09-09" "1972-09-09" "1972-09-09" "1972-09-09"
## [22116] "1972-09-09" "1972-09-09" "1972-09-09" "1972-09-09" "1972-09-09"
## [22121] "1992-04-17" "1992-04-17" "1992-04-17" "1992-04-17" "1992-04-17"
## [22126] "1992-04-17" "1992-04-17" "1992-04-17" "1992-04-17" "1992-04-17"
## [22131] "1992-04-17" "1992-04-17" "1992-04-17" "1970-05-22" "1970-05-22"
## [22136] "1970-05-22" "1970-05-22" "1970-05-22" "1970-05-22" "1970-05-22"
## [22141] "1970-05-22" "1970-05-22" "1986-05-21" "1986-05-21" "1983-12-04"
## [22146] "1983-12-04" "1983-12-04" "1983-12-04" "1983-12-04" "1983-12-04"
## [22151] "1983-12-04" "1983-12-04" "1983-12-04" "1978-08-26" "1978-08-26"
## [22156] "1978-08-26" "1978-08-26" "1978-08-26" "1978-08-26" "1978-08-26"
## [22161] "1978-08-26" "1978-08-26" "1978-08-26" "1978-08-26" "1982-08-05"
## [22166] "1982-08-05" "1982-08-05" "1982-08-05" "1982-08-05" "1982-08-05"
## [22171] "1986-09-07" "1986-09-07" "1984-02-24" "1984-02-24" "1984-02-24"
## [22176] "1984-02-24" "1984-02-24" "1975-04-25" "1975-04-25" "1975-04-25"
## [22181] "1975-04-25" "1975-04-25" "1975-04-25" "1975-04-25" "1975-04-25"
## [22186] "1975-04-25" "1975-04-25" "1975-04-25" "1975-04-25" "1971-03-14"
## [22191] "1971-03-14" "1971-03-14" "1971-03-14" "1971-03-14" "1971-03-14"
## [22196] "1971-03-14" "1971-03-14" "1971-07-21" "1971-07-21" "1971-07-21"
## [22201] "1971-07-21" "1971-07-21" "1971-07-21" "1971-07-21" "1971-07-21"
## [22206] "1971-07-21" "1971-07-21" "1971-07-21" "1973-07-16" "1973-07-16"
## [22211] "1973-07-16" "1973-07-16" "1973-07-16" "1974-06-06" "1974-06-06"
## [22216] "1974-06-06" "1979-02-23" "1979-02-23" "1984-10-02" "1984-10-02"
## [22221] "1984-10-02" "1984-10-02" "1989-05-06" "1989-05-06" "1989-05-06"
## [22226] "1989-05-06" "1989-05-06" "1989-05-06" "1972-06-02" "1972-06-02"
## [22231] "1972-06-02" "1972-06-02" "1972-06-02" "1972-06-02" "1972-06-02"
## [22236] "1972-06-02" "1972-06-02" "1972-06-02" "1972-06-02" "1972-06-02"
## [22241] "1972-06-02" "1981-07-26" "1981-07-26" "1981-07-26" "1981-07-26"
## [22246] "1981-07-26" "1981-07-26" "1981-07-26" "1970-06-15" "1970-06-15"
## [22251] "1970-06-15" "1970-06-15" "1970-06-15" "1970-06-15" "1970-06-15"
## [22256] "1970-06-15" "1970-06-15" "1970-06-15" "1970-06-15" "1970-06-15"
## [22261] "1970-06-15" "1970-06-15" "1970-06-15" "1970-06-15" "1977-01-25"
## [22266] "1977-01-25" "1977-01-25" "1977-01-25" "1977-01-25" "1977-01-25"
## [22271] "1977-01-25" "1977-01-25" "1977-01-25" "1977-01-25" "1977-01-25"
## [22276] "1977-01-25" "1977-01-25" "1977-01-25" "1976-05-27" "1976-05-27"
## [22281] "1976-05-27" "1970-10-23" "1970-10-23" "1970-10-23" "1970-10-23"
## [22286] "1970-10-23" "1970-10-23" "1970-10-23" "1970-10-23" "1970-10-23"
## [22291] "1970-10-23" "1970-10-23" "1970-10-23" "1970-10-23" "1970-10-23"
## [22296] "1979-09-25" "1979-09-25" "1979-09-25" "1979-09-25" "1979-09-25"
## [22301] "1979-09-25" "1979-09-25" "1979-09-25" "1979-09-25" "1979-09-25"
## [22306] "1979-09-25" "1979-09-25" "1979-09-25" "1979-09-25" "1979-09-25"
## [22311] "1979-09-25" "1970-11-23" "1970-11-23" "1970-11-23" "1986-07-12"
## [22316] "1986-07-12" "1986-07-12" "1986-07-12" "1986-07-12" "1986-07-12"
## [22321] "1986-07-12" "1986-07-12" "1986-07-12" "1986-07-12" "1986-07-12"
## [22326] "1986-07-12" "1986-07-12" "1986-07-12" "1986-07-12" "1986-07-12"
## [22331] "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09"
## [22336] "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09"
## [22341] "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09" "1990-12-09"
## [22346] "1973-07-05" "1973-07-05" "1973-07-05" "1973-07-05" "1973-07-05"
## [22351] "1973-07-05" "1973-07-05" "1973-07-05" "1973-07-05" "1973-07-05"
## [22356] "1973-07-05" "1973-07-05" "1973-07-05" "1973-07-05" "1973-07-05"
## [22361] "1973-07-05" "1973-07-05" "1973-07-05" "1973-07-05" "1973-07-05"
## [22366] "1973-07-05" "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18"
## [22371] "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18"
## [22376] "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18"
## [22381] "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18" "1980-08-24"
## [22386] "1980-08-24" "1980-08-24" "1973-05-05" "1973-05-05" "1973-05-05"
## [22391] "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05"
## [22396] "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05" "1973-05-05"
## [22401] "1973-05-05" "1977-04-20" "1977-04-20" "1977-04-20" "1977-04-20"
## [22406] "1977-04-20" "1975-04-28" "1975-04-28" "1975-04-28" "1975-04-28"
## [22411] "1975-04-28" "1980-10-07" "1980-10-07" "1980-10-07" "1980-10-07"
## [22416] "1980-10-07" "1975-06-08" "1975-06-08" "1975-06-08" "1975-06-08"
## [22421] "1975-06-08" "1990-10-26" "1990-10-26" "1990-10-26" "1986-11-28"
## [22426] "1986-11-28" "1986-11-28" "1986-11-28" "1986-07-01" "1986-07-01"
## [22431] "1986-07-01" "1986-07-01" "1986-07-01" "1986-07-01" "1986-07-01"
## [22436] "1986-07-01" "1986-07-01" "1986-07-01" "1986-07-01" "1986-07-01"
## [22441] "1986-07-01" "1975-03-07" "1975-03-07" "1975-03-07" "1975-03-07"
## [22446] "1975-03-07" "1972-02-22" "1972-02-22" "1972-02-22" "1972-02-22"
## [22451] "1972-02-22" "1972-02-22" "1972-02-22" "1972-02-22" "1972-02-22"
## [22456] "1972-02-22" "1972-02-22" "1972-02-22" "1972-02-22" "1972-02-22"
## [22461] "1972-02-22" "1972-02-22" "1972-02-22" "1972-02-22" "1972-02-22"
## [22466] "1972-02-22" "1972-02-22" "1972-02-22" "1972-02-22" "1972-02-22"
## [22471] "1972-02-22" "1972-02-22" "1972-02-22" "1976-09-24" "1976-09-24"
## [22476] "1976-09-24" "1976-09-24" "1976-09-24" "1988-07-26" "1988-07-26"
## [22481] "1988-07-26" "1988-07-26" "1975-11-03" "1975-11-03" "1975-11-03"
## [22486] "1975-11-03" "1982-11-28" "1982-11-28" "1982-11-28" "1982-11-28"
## [22491] "1982-11-28" "1982-11-28" "1982-11-28" "1982-11-28" "1982-11-28"
## [22496] "1982-11-28" "1982-11-28" "1982-11-28" "1982-11-28" "1980-09-24"
## [22501] "1980-09-24" "1980-09-24" "1980-09-24" "1980-09-24" "1980-09-24"
## [22506] "1980-09-24" "1980-09-24" "1980-09-24" "1980-09-24" "1980-09-24"
## [22511] "1980-09-24" "1986-05-27" "1986-05-27" "1986-05-27" "1986-05-27"
## [22516] "1986-05-27" "1991-07-07" "1991-07-07" "1991-07-07" "1991-07-07"
## [22521] "1991-07-07" "1991-07-07" "1991-07-07" "1991-07-07" "1991-07-07"
## [22526] "1991-07-07" "1991-07-07" "1991-07-07" "1992-03-13" "1992-03-13"
## [22531] "1992-03-13" "1992-03-13" "1992-03-13" "1992-03-13" "1979-08-22"
## [22536] "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22"
## [22541] "1976-10-28" "1976-10-28" "1976-10-28" "1976-10-28" "1976-10-28"
## [22546] "1985-04-22" "1985-04-22" "1985-04-22" "1985-04-22" "1985-04-22"
## [22551] "1985-04-22" "1985-04-22" "1985-04-22" "1985-04-22" "1985-04-22"
## [22556] "1985-04-22" "1970-03-27" "1970-03-27" "1970-03-27" "1970-03-27"
## [22561] "1970-03-27" "1970-03-27" "1974-05-23" "1974-05-23" "1974-05-23"
## [22566] "1974-05-23" "1974-05-23" "1974-05-23" "1974-05-23" "1980-07-05"
## [22571] "1980-07-05" "1980-07-05" "1980-07-05" "1980-07-05" "1989-11-28"
## [22576] "1989-11-28" "1989-10-22" "1989-10-22" "1989-10-22" "1989-10-22"
## [22581] "1989-10-22" "1989-10-22" "1985-04-24" "1985-04-24" "1985-04-24"
## [22586] "1985-04-24" "1985-04-24" "1985-04-24" "1985-04-24" "1985-04-24"
## [22591] "1985-04-24" "1985-04-24" "1985-04-24" "1985-04-24" "1985-04-24"
## [22596] "1985-04-24" "1985-04-24" "1985-04-24" "1985-04-24" "1988-05-19"
## [22601] "1988-05-19" "1988-05-19" "1979-05-23" "1979-05-23" "1979-05-23"
## [22606] "1979-05-23" "1979-05-23" "1979-05-23" "1979-05-23" "1979-05-23"
## [22611] "1979-05-23" "1979-05-23" "1979-05-23" "1979-05-23" "1979-05-23"
## [22616] "1979-05-23" "1979-05-23" "1979-05-23" "1983-06-28" "1983-06-28"
## [22621] "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28"
## [22626] "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28"
## [22631] "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28"
## [22636] "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28" "1983-06-28"
## [22641] "1983-06-28" "1983-06-28" "1972-02-20" "1972-02-20" "1972-02-20"
## [22646] "1972-02-20" "1972-02-20" "1991-07-26" "1991-07-26" "1991-07-26"
## [22651] "1991-07-26" "1991-07-26" "1991-07-26" "1991-07-26" "1991-07-26"
## [22656] "1991-07-26" "1991-07-26" "1991-07-26" "1987-07-02" "1987-07-02"
## [22661] "1987-07-02" "1987-07-02" "1987-07-02" "1987-07-02" "1987-07-02"
## [22666] "1987-07-02" "1987-07-02" "1987-07-02" "1987-07-02" "1987-07-02"
## [22671] "1987-07-02" "1987-07-02" "1987-07-02" "1987-07-02" "1987-07-02"
## [22676] "1987-07-02" "1987-07-02" "1987-07-02" "1987-07-02" "1987-07-02"
## [22681] "1980-03-18" "1980-03-18" "1980-03-18" "1976-04-03" "1976-04-03"
## [22686] "1976-04-03" "1976-04-03" "1971-03-09" "1971-03-09" "1971-03-09"
## [22691] "1971-03-09" "1971-03-09" "1971-03-09" "1971-03-09" "1971-03-09"
## [22696] "1971-03-09" "1971-03-09" "1971-03-09" "1971-03-09" "1971-03-09"
## [22701] "1971-03-09" "1971-03-09" "1976-06-20" "1976-06-20" "1976-06-20"
## [22706] "1976-06-20" "1976-06-20" "1976-06-20" "1976-06-20" "1976-06-20"
## [22711] "1976-06-20" "1976-06-20" "1976-06-20" "1990-06-09" "1990-06-09"
## [22716] "1990-06-09" "1991-12-20" "1991-12-20" "1991-12-20" "1991-12-20"
## [22721] "1991-12-20" "1983-11-19" "1983-11-19" "1983-11-19" "1983-11-19"
## [22726] "1983-11-19" "1983-11-19" "1983-11-19" "1983-11-19" "1983-11-19"
## [22731] "1983-11-19" "1971-08-13" "1971-08-13" "1971-08-13" "1979-02-25"
## [22736] "1979-02-25" "1979-02-25" "1979-02-25" "1979-02-25" "1979-02-25"
## [22741] "1979-02-25" "1979-02-25" "1979-02-25" "1979-02-25" "1979-02-25"
## [22746] "1979-02-25" "1977-06-19" "1977-06-19" "1977-06-19" "1977-06-19"
## [22751] "1977-06-19" "1979-07-05" "1979-07-05" "1979-07-05" "1979-07-05"
## [22756] "1979-07-05" "1979-07-05" "1979-07-05" "1979-07-05" "1979-07-05"
## [22761] "1979-07-05" "1979-07-05" "1970-06-09" "1970-06-09" "1970-06-09"
## [22766] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09"
## [22771] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09"
## [22776] "1970-06-09" "1988-04-06" "1988-04-06" "1988-04-06" "1988-04-06"
## [22781] "1982-09-13" "1982-09-13" "1982-09-13" "1982-09-13" "1982-09-13"
## [22786] "1982-09-13" "1982-09-13" "1982-09-13" "1982-09-13" "1982-09-13"
## [22791] "1982-09-13" "1982-09-13" "1987-11-10" "1987-11-10" "1987-11-10"
## [22796] "1987-11-10" "1983-04-06" "1983-04-06" "1983-04-06" "1983-04-06"
## [22801] "1983-04-06" "1983-04-06" "1983-04-06" "1980-11-04" "1980-11-04"
## [22806] "1980-11-04" "1980-11-04" "1980-11-04" "1980-11-04" "1980-11-04"
## [22811] "1980-11-04" "1980-11-04" "1980-11-04" "1980-11-04" "1980-11-04"
## [22816] "1980-11-04" "1980-11-04" "1975-05-11" "1975-05-11" "1975-05-11"
## [22821] "1975-05-11" "1975-05-11" "1975-05-11" "1975-05-11" "1975-05-11"
## [22826] "1975-05-11" "1975-05-11" "1975-05-11" "1984-12-19" "1984-12-19"
## [22831] "1984-12-19" "1984-12-19" "1984-12-19" "1984-12-19" "1984-12-19"
## [22836] "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08"
## [22841] "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08"
## [22846] "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08"
## [22851] "1990-02-08" "1990-02-08" "1991-07-08" "1991-07-08" "1991-07-08"
## [22856] "1991-07-08" "1991-07-08" "1970-05-23" "1970-05-23" "1970-05-23"
## [22861] "1970-05-23" "1970-05-23" "1970-05-23" "1970-05-23" "1970-05-23"
## [22866] "1970-05-23" "1970-05-23" "1970-05-23" "1970-05-23" "1970-05-23"
## [22871] "1970-05-23" "1970-05-23" "1970-05-23" "1970-05-23" "1970-05-23"
## [22876] "1970-05-23" "1970-05-23" "1972-01-23" "1972-01-23" "1972-01-23"
## [22881] "1972-01-23" "1972-01-23" "1972-01-23" "1972-01-23" "1972-01-23"
## [22886] "1972-01-23" "1972-01-23" "1972-01-23" "1992-02-29" "1992-02-29"
## [22891] "1992-02-29" "1992-02-29" "1992-02-29" "1986-07-18" "1986-07-18"
## [22896] "1986-07-18" "1986-07-18" "1986-07-18" "1982-12-17" "1982-12-17"
## [22901] "1982-12-17" "1982-12-17" "1982-12-17" "1982-12-17" "1982-12-17"
## [22906] "1982-12-17" "1982-12-17" "1982-12-17" "1982-12-17" "1976-02-13"
## [22911] "1976-02-13" "1976-02-13" "1976-02-13" "1976-02-13" "1976-02-13"
## [22916] "1976-02-13" "1976-02-13" "1976-02-13" "1976-02-13" "1976-02-13"
## [22921] "1975-08-28" "1975-08-28" "1975-08-28" "1975-08-28" "1975-08-28"
## [22926] "1975-08-28" "1975-08-28" "1975-08-28" "1975-08-28" "1975-08-28"
## [22931] "1975-08-28" "1975-08-28" "1982-03-23" "1982-03-23" "1982-03-23"
## [22936] "1982-03-23" "1982-03-23" "1982-03-23" "1982-03-23" "1972-05-14"
## [22941] "1972-05-14" "1972-05-14" "1972-05-14" "1972-05-14" "1972-05-14"
## [22946] "1972-05-14" "1972-05-14" "1972-05-14" "1972-05-14" "1972-05-14"
## [22951] "1972-05-14" "1972-05-14" "1972-05-14" "1972-05-14" "1972-05-14"
## [22956] "1972-05-14" "1989-09-21" "1989-09-21" "1989-09-21" "1989-09-21"
## [22961] "1989-09-21" "1989-09-21" "1989-09-21" "1978-01-18" "1978-01-18"
## [22966] "1978-01-18" "1978-01-18" "1978-01-18" "1978-01-18" "1978-01-18"
## [22971] "1978-01-18" "1978-01-18" "1978-01-18" "1976-02-10" "1976-02-10"
## [22976] "1976-02-10" "1976-02-10" "1976-02-10" "1976-02-10" "1986-04-20"
## [22981] "1986-04-20" "1986-04-20" "1986-04-20" "1986-04-20" "1970-05-10"
## [22986] "1970-05-10" "1970-05-10" "1970-05-10" "1970-06-16" "1970-06-16"
## [22991] "1970-06-16" "1970-06-16" "1970-06-16" "1975-06-02" "1975-06-02"
## [22996] "1975-06-02" "1975-06-02" "1975-06-02" "1975-06-02" "1975-06-02"
## [23001] "1975-06-02" "1975-06-02" "1981-06-22" "1981-06-22" "1981-06-22"
## [23006] "1981-06-22" "1981-06-22" "1981-06-22" "1981-06-22" "1981-06-22"
## [23011] "1981-06-22" "1975-03-26" "1975-03-26" "1975-03-26" "1975-03-26"
## [23016] "1975-03-26" "1975-03-26" "1975-03-26" "1975-03-26" "1975-03-26"
## [23021] "1975-03-26" "1975-03-26" "1975-03-26" "1975-03-26" "1975-03-26"
## [23026] "1975-03-26" "1981-09-15" "1981-09-15" "1981-09-15" "1981-09-15"
## [23031] "1981-09-15" "1981-09-15" "1981-09-15" "1981-09-15" "1981-09-15"
## [23036] "1981-09-15" "1981-09-15" "1981-09-15" "1981-09-15" "1981-09-15"
## [23041] "1981-09-15" "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25"
## [23046] "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25"
## [23051] "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25"
## [23056] "1976-01-12" "1976-01-12" "1976-01-12" "1976-01-12" "1976-01-12"
## [23061] "1973-12-29" "1973-12-29" "1973-12-29" "1973-12-29" "1973-12-29"
## [23066] "1973-12-29" "1973-12-29" "1973-12-29" "1987-06-26" "1987-06-26"
## [23071] "1987-06-26" "1987-06-26" "1987-06-26" "1979-05-16" "1979-05-16"
## [23076] "1979-05-16" "1979-05-16" "1979-05-16" "1979-05-16" "1979-05-16"
## [23081] "1979-05-16" "1979-05-16" "1979-05-16" "1979-05-16" "1972-08-04"
## [23086] "1972-08-04" "1972-08-04" "1972-08-04" "1972-08-04" "1972-08-04"
## [23091] "1972-08-04" "1972-08-04" "1972-08-04" "1975-08-03" "1975-08-03"
## [23096] "1975-08-03" "1976-04-14" "1976-04-14" "1976-04-14" "1976-04-14"
## [23101] "1976-04-14" "1976-04-14" "1976-04-14" "1976-04-14" "1976-04-14"
## [23106] "1977-04-01" "1977-04-01" "1977-04-01" "1977-04-01" "1977-04-01"
## [23111] "1977-04-01" "1977-04-01" "1977-04-01" "1977-04-01" "1977-04-01"
## [23116] "1977-04-01" "1977-04-01" "1977-04-01" "1977-04-01" "1985-05-23"
## [23121] "1985-05-23" "1985-05-23" "1985-05-23" "1985-05-23" "1985-05-23"
## [23126] "1985-05-23" "1985-05-23" "1985-05-23" "1985-05-23" "1985-05-23"
## [23131] "1985-05-23" "1985-05-23" "1985-05-23" "1985-05-23" "1985-05-23"
## [23136] "1985-05-23" "1985-05-23" "1985-05-23" "1984-03-09" "1984-03-09"
## [23141] "1984-03-09" "1980-02-23" "1980-02-23" "1980-02-23" "1980-02-23"
## [23146] "1980-02-23" "1980-02-23" "1980-02-23" "1980-02-23" "1980-02-23"
## [23151] "1979-04-05" "1979-04-05" "1979-04-05" "1979-04-05" "1979-04-05"
## [23156] "1979-04-05" "1983-08-07" "1983-08-07" "1983-08-07" "1983-08-07"
## [23161] "1983-08-07" "1983-08-07" "1983-08-07" "1983-08-07" "1983-08-07"
## [23166] "1983-08-07" "1983-08-07" "1983-08-07" "1983-08-07" "1983-08-07"
## [23171] "1983-08-07" "1983-08-07" "1983-08-07" "1983-08-07" "1985-03-07"
## [23176] "1985-03-07" "1985-03-07" "1985-03-07" "1985-03-07" "1985-03-07"
## [23181] "1985-03-07" "1985-03-07" "1985-03-07" "1985-03-07" "1985-03-07"
## [23186] "1983-06-13" "1983-06-13" "1983-06-13" "1983-06-13" "1983-06-13"
## [23191] "1983-06-13" "1983-06-13" "1983-06-13" "1983-06-13" "1983-06-13"
## [23196] "1973-04-28" "1973-04-28" "1973-04-28" "1973-04-28" "1973-04-28"
## [23201] "1973-04-28" "1973-04-28" "1973-04-28" "1973-04-28" "1973-04-28"
## [23206] "1973-04-28" "1973-04-28" "1991-03-02" "1991-03-02" "1991-03-02"
## [23211] "1991-03-02" "1971-12-19" "1971-12-19" "1971-12-19" "1971-12-19"
## [23216] "1971-12-19" "1979-05-26" "1979-05-26" "1979-05-26" "1979-05-26"
## [23221] "1979-05-26" "1979-05-26" "1979-05-26" "1979-05-26" "1979-05-26"
## [23226] "1979-05-26" "1979-05-26" "1979-05-26" "1979-05-26" "1979-05-26"
## [23231] "1989-03-11" "1989-03-11" "1989-03-11" "1989-09-22" "1989-09-22"
## [23236] "1992-01-04" "1992-01-04" "1992-01-04" "1992-01-04" "1992-01-04"
## [23241] "1992-01-04" "1992-01-04" "1992-01-04" "1992-01-04" "1992-01-04"
## [23246] "1992-01-04" "1992-01-04" "1992-01-04" "1985-08-26" "1985-08-26"
## [23251] "1985-08-26" "1985-08-26" "1985-08-26" "1980-12-18" "1980-12-18"
## [23256] "1980-12-18" "1980-12-18" "1980-12-18" "1980-12-18" "1980-12-18"
## [23261] "1980-12-18" "1980-12-18" "1980-12-18" "1980-12-18" "1980-12-18"
## [23266] "1980-12-18" "1971-08-16" "1971-08-16" "1971-08-16" "1971-08-16"
## [23271] "1971-08-16" "1971-08-16" "1971-08-16" "1971-08-16" "1971-08-16"
## [23276] "1971-08-16" "1971-08-16" "1971-08-16" "1971-08-16" "1976-07-02"
## [23281] "1976-07-02" "1976-07-02" "1976-07-02" "1976-07-02" "1976-07-02"
## [23286] "1976-07-02" "1976-07-02" "1976-07-02" "1976-07-02" "1976-07-02"
## [23291] "1984-05-05" "1984-05-05" "1984-05-05" "1984-05-05" "1984-05-05"
## [23296] "1987-10-18" "1987-10-18" "1974-12-11" "1974-12-11" "1974-12-11"
## [23301] "1974-12-11" "1974-12-11" "1974-12-11" "1974-12-11" "1974-12-11"
## [23306] "1974-12-11" "1974-12-11" "1974-12-11" "1974-12-11" "1974-12-11"
## [23311] "1974-12-11" "1974-12-11" "1974-12-11" "1985-08-24" "1985-08-24"
## [23316] "1985-08-24" "1985-08-24" "1985-08-24" "1985-08-24" "1972-08-19"
## [23321] "1972-08-19" "1972-08-19" "1972-08-19" "1972-08-19" "1972-08-19"
## [23326] "1972-08-19" "1972-08-19" "1972-08-19" "1972-08-19" "1972-08-19"
## [23331] "1972-08-19" "1972-08-19" "1972-08-19" "1972-08-19" "1972-08-19"
## [23336] "1972-08-19" "1976-03-15" "1976-03-15" "1976-03-15" "1976-03-15"
## [23341] "1976-03-15" "1976-03-15" "1976-03-15" "1976-03-15" "1976-03-15"
## [23346] "1976-03-15" "1976-03-15" "1976-03-15" "1976-03-15" "1976-03-15"
## [23351] "1976-03-15" "1976-03-15" "1976-03-15" "1976-03-15" "1976-03-15"
## [23356] "1976-03-15" "1976-03-15" "1976-03-15" "1976-03-15" "1976-03-15"
## [23361] "1976-03-15" "1987-11-02" "1987-11-02" "1987-11-02" "1987-11-02"
## [23366] "1987-11-02" "1987-11-02" "1987-11-02" "1987-11-02" "1987-11-02"
## [23371] "1987-11-02" "1972-05-12" "1972-05-12" "1972-05-12" "1972-05-12"
## [23376] "1972-05-12" "1972-05-12" "1979-06-12" "1979-06-12" "1979-06-12"
## [23381] "1979-06-12" "1979-06-12" "1979-06-12" "1979-06-12" "1979-06-12"
## [23386] "1979-06-12" "1979-06-12" "1979-06-12" "1979-06-12" "1979-06-12"
## [23391] "1985-04-07" "1985-04-07" "1985-04-07" "1985-04-07" "1985-04-07"
## [23396] "1975-05-08" "1975-05-08" "1975-05-08" "1975-05-08" "1975-05-08"
## [23401] "1975-05-08" "1975-05-08" "1975-05-08" "1975-05-08" "1973-10-15"
## [23406] "1973-10-15" "1973-10-15" "1973-10-15" "1973-10-15" "1973-10-15"
## [23411] "1989-03-28" "1989-03-28" "1989-03-28" "1989-03-28" "1989-03-28"
## [23416] "1989-03-28" "1989-03-28" "1989-03-28" "1989-03-28" "1989-03-28"
## [23421] "1989-03-28" "1989-03-28" "1989-03-28" "1989-03-28" "1989-03-28"
## [23426] "1989-03-28" "1989-03-28" "1989-03-28" "1989-03-28" "1989-03-28"
## [23431] "1990-07-24" "1990-07-24" "1990-07-24" "1990-07-24" "1990-07-24"
## [23436] "1990-07-24" "1990-07-24" "1990-07-24" "1990-07-24" "1990-07-24"
## [23441] "1990-07-24" "1990-07-24" "1990-07-24" "1989-03-07" "1989-03-07"
## [23446] "1989-03-07" "1989-03-07" "1989-03-07" "1989-03-07" "1989-03-07"
## [23451] "1989-03-07" "1989-03-07" "1989-03-07" "1989-03-07" "1989-03-07"
## [23456] "1989-03-07" "1989-03-07" "1987-10-16" "1987-10-16" "1987-10-16"
## [23461] "1987-10-16" "1987-10-16" "1981-03-15" "1981-03-15" "1981-03-15"
## [23466] "1981-03-15" "1989-07-19" "1989-07-19" "1989-07-19" "1989-07-19"
## [23471] "1989-07-19" "1989-07-19" "1989-07-19" "1989-07-19" "1989-07-19"
## [23476] "1989-07-19" "1989-07-19" "1989-07-19" "1989-07-19" "1989-07-19"
## [23481] "1989-07-19" "1976-09-25" "1976-09-25" "1976-09-25" "1976-09-25"
## [23486] "1976-09-25" "1976-09-25" "1976-09-25" "1976-09-25" "1976-09-25"
## [23491] "1976-09-25" "1979-12-12" "1979-12-12" "1979-12-12" "1979-12-12"
## [23496] "1979-12-12" "1979-12-12" "1979-12-12" "1979-12-12" "1979-12-12"
## [23501] "1979-12-12" "1991-01-10" "1991-01-10" "1991-01-10" "1991-01-10"
## [23506] "1991-01-10" "1992-07-22" "1992-07-22" "1992-07-22" "1992-07-22"
## [23511] "1992-07-22" "1992-07-22" "1992-07-22" "1992-07-22" "1992-07-22"
## [23516] "1992-07-22" "1992-07-22" "1992-07-22" "1992-07-22" "1992-07-22"
## [23521] "1976-03-18" "1976-03-18" "1976-03-18" "1976-03-18" "1976-03-18"
## [23526] "1982-01-24" "1982-01-24" "1982-01-24" "1982-01-24" "1982-01-24"
## [23531] "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05"
## [23536] "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05" "1992-12-05"
## [23541] "1992-12-05" "1992-12-05" "1992-12-05" "1970-09-14" "1970-09-14"
## [23546] "1970-09-14" "1970-09-14" "1970-09-14" "1971-10-12" "1971-10-12"
## [23551] "1987-11-08" "1987-11-08" "1987-11-08" "1981-04-18" "1981-04-18"
## [23556] "1981-04-18" "1981-04-18" "1981-04-18" "1981-04-18" "1981-04-18"
## [23561] "1981-04-18" "1981-04-18" "1981-04-18" "1984-04-26" "1984-04-26"
## [23566] "1984-04-26" "1984-04-26" "1984-04-26" "1984-04-26" "1984-04-26"
## [23571] "1984-04-26" "1984-04-26" "1984-04-26" "1981-08-07" "1981-08-07"
## [23576] "1981-08-07" "1981-08-07" "1981-08-07" "1976-10-12" "1976-10-12"
## [23581] "1976-10-12" "1972-03-18" "1972-03-18" "1972-03-18" "1972-03-18"
## [23586] "1985-01-08" "1985-01-08" "1985-01-08" "1985-01-08" "1985-01-08"
## [23591] "1985-01-08" "1985-01-08" "1985-01-08" "1985-01-08" "1985-01-08"
## [23596] "1985-01-08" "1985-01-08" "1985-01-08" "1985-01-08" "1990-08-13"
## [23601] "1990-08-13" "1988-06-16" "1988-06-16" "1988-06-16" "1988-06-16"
## [23606] "1988-06-16" "1988-06-16" "1988-06-16" "1988-06-16" "1988-06-16"
## [23611] "1988-06-16" "1988-06-16" "1983-10-16" "1983-10-16" "1983-10-16"
## [23616] "1983-10-16" "1983-10-16" "1983-10-16" "1983-10-16" "1983-10-16"
## [23621] "1983-10-16" "1983-10-16" "1983-10-16" "1983-10-16" "1983-10-16"
## [23626] "1983-10-16" "1983-10-16" "1985-03-25" "1985-03-25" "1985-03-25"
## [23631] "1985-03-25" "1985-03-25" "1985-03-25" "1985-03-25" "1985-03-25"
## [23636] "1985-03-25" "1985-03-25" "1985-03-25" "1985-03-25" "1985-03-25"
## [23641] "1985-03-25" "1985-03-25" "1985-03-25" "1985-03-25" "1991-01-16"
## [23646] "1991-01-16" "1991-01-16" "1991-01-16" "1991-01-16" "1992-11-12"
## [23651] "1992-11-12" "1992-11-12" "1992-11-12" "1992-11-12" "1992-11-12"
## [23656] "1992-11-12" "1992-11-12" "1992-11-12" "1992-11-12" "1992-11-12"
## [23661] "1992-11-12" "1986-07-16" "1986-07-16" "1986-07-16" "1990-06-01"
## [23666] "1990-06-01" "1990-06-01" "1990-06-01" "1990-06-01" "1990-06-01"
## [23671] "1990-06-01" "1990-06-01" "1990-06-01" "1990-06-01" "1990-06-01"
## [23676] "1990-06-01" "1990-06-01" "1990-06-01" "1990-06-01" "1990-06-01"
## [23681] "1986-02-20" "1986-02-20" "1974-07-17" "1974-07-17" "1974-07-17"
## [23686] "1974-07-17" "1974-07-17" "1974-07-17" "1974-07-17" "1974-07-17"
## [23691] "1974-07-17" "1974-07-17" "1974-07-17" "1974-07-17" "1974-07-17"
## [23696] "1974-07-17" "1974-07-17" "1974-07-17" "1974-07-17" "1980-08-22"
## [23701] "1980-08-22" "1980-08-22" "1980-08-22" "1980-08-22" "1980-08-22"
## [23706] "1980-08-22" "1980-08-22" "1980-08-22" "1980-08-22" "1980-08-22"
## [23711] "1984-10-14" "1984-10-14" "1973-01-23" "1973-01-23" "1973-01-23"
## [23716] "1973-01-23" "1973-01-23" "1973-01-23" "1984-07-16" "1984-07-16"
## [23721] "1984-07-16" "1984-07-16" "1984-07-16" "1986-03-20" "1986-03-20"
## [23726] "1986-03-20" "1986-03-20" "1986-03-20" "1976-08-28" "1976-08-28"
## [23731] "1976-08-28" "1976-08-28" "1989-07-28" "1989-07-28" "1989-07-28"
## [23736] "1989-07-28" "1989-07-28" "1989-07-28" "1989-07-28" "1989-07-28"
## [23741] "1989-07-28" "1989-07-28" "1989-11-12" "1989-11-12" "1989-11-12"
## [23746] "1989-11-12" "1989-11-12" "1989-11-12" "1989-11-12" "1989-11-12"
## [23751] "1989-11-12" "1989-11-12" "1977-06-06" "1977-06-06" "1977-06-06"
## [23756] "1977-06-06" "1977-06-06" "1980-01-11" "1980-01-11" "1980-01-11"
## [23761] "1980-01-11" "1980-01-11" "1980-01-11" "1985-06-29" "1985-06-29"
## [23766] "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29"
## [23771] "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29" "1985-06-29"
## [23776] "1985-06-29" "1985-06-29" "1985-06-29" "1972-01-08" "1972-01-08"
## [23781] "1972-01-08" "1972-01-08" "1972-01-08" "1972-01-08" "1972-01-08"
## [23786] "1972-01-08" "1972-01-08" "1972-01-08" "1989-01-23" "1989-01-23"
## [23791] "1989-01-23" "1989-01-23" "1989-01-23" "1992-09-17" "1992-09-17"
## [23796] "1992-09-17" "1981-10-23" "1981-10-23" "1982-07-03" "1982-07-03"
## [23801] "1982-07-03" "1982-07-03" "1982-07-03" "1982-07-03" "1982-07-03"
## [23806] "1982-07-03" "1982-07-03" "1982-07-03" "1982-07-03" "1974-12-29"
## [23811] "1974-12-29" "1974-12-29" "1974-12-29" "1974-12-29" "1974-12-29"
## [23816] "1974-12-29" "1974-12-29" "1974-12-29" "1974-12-29" "1974-12-29"
## [23821] "1974-12-29" "1981-12-14" "1981-12-14" "1982-09-19" "1982-09-19"
## [23826] "1982-09-19" "1982-09-19" "1982-09-19" "1982-09-19" "1982-09-19"
## [23831] "1982-09-19" "1982-09-19" "1982-09-19" "1982-09-19" "1973-09-26"
## [23836] "1973-09-26" "1973-09-26" "1973-09-26" "1973-09-26" "1973-09-26"
## [23841] "1973-09-26" "1973-09-26" "1973-09-26" "1973-09-26" "1988-06-02"
## [23846] "1988-06-02" "1985-12-11" "1985-12-11" "1985-12-11" "1985-12-11"
## [23851] "1985-12-11" "1985-12-11" "1985-12-11" "1985-12-11" "1985-12-11"
## [23856] "1985-12-11" "1985-12-11" "1975-02-22" "1975-02-22" "1975-02-22"
## [23861] "1975-02-22" "1975-02-22" "1975-02-22" "1975-02-22" "1975-02-22"
## [23866] "1975-02-22" "1975-02-22" "1975-02-22" "1975-02-22" "1975-02-22"
## [23871] "1975-02-22" "1975-02-22" "1975-02-22" "1975-02-22" "1975-02-22"
## [23876] "1975-02-22" "1975-02-22" "1976-02-20" "1976-02-20" "1974-04-06"
## [23881] "1974-04-06" "1974-04-06" "1974-04-06" "1974-04-06" "1974-04-06"
## [23886] "1988-10-27" "1988-10-27" "1988-10-27" "1977-12-27" "1977-12-27"
## [23891] "1977-12-27" "1977-12-27" "1977-12-27" "1977-12-27" "1977-12-27"
## [23896] "1977-12-27" "1977-12-27" "1977-12-27" "1977-12-27" "1984-09-18"
## [23901] "1984-09-18" "1984-09-18" "1984-09-18" "1982-04-29" "1982-04-29"
## [23906] "1989-02-07" "1989-02-07" "1989-02-07" "1989-02-07" "1989-02-07"
## [23911] "1989-02-07" "1989-02-07" "1989-02-07" "1989-02-07" "1991-09-26"
## [23916] "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26" "1991-09-26"
## [23921] "1991-09-26" "1991-09-26" "1970-02-21" "1970-02-21" "1970-02-21"
## [23926] "1970-02-21" "1970-02-21" "1970-02-21" "1970-02-21" "1970-02-21"
## [23931] "1970-02-21" "1970-02-21" "1970-02-21" "1970-02-21" "1970-02-21"
## [23936] "1982-04-18" "1982-04-18" "1982-04-18" "1982-04-18" "1982-04-18"
## [23941] "1980-06-07" "1980-06-07" "1980-06-07" "1980-06-07" "1980-06-07"
## [23946] "1980-06-07" "1992-06-02" "1992-06-02" "1992-06-02" "1992-06-02"
## [23951] "1992-06-02" "1992-06-02" "1992-06-02" "1992-06-02" "1992-06-02"
## [23956] "1992-06-02" "1992-06-02" "1992-06-02" "1984-07-06" "1984-07-06"
## [23961] "1984-07-06" "1984-07-06" "1984-07-06" "1992-11-10" "1992-11-10"
## [23966] "1978-08-20" "1978-08-20" "1978-08-20" "1978-08-20" "1978-08-20"
## [23971] "1978-08-20" "1978-08-20" "1978-08-20" "1978-08-20" "1978-08-20"
## [23976] "1978-08-20" "1978-08-20" "1978-08-20" "1978-08-20" "1978-08-20"
## [23981] "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01"
## [23986] "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01"
## [23991] "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01" "1976-07-01"
## [23996] "1976-07-01" "1992-01-18" "1992-01-18" "1992-01-18" "1992-01-18"
## [24001] "1992-01-18" "1992-01-18" "1992-01-18" "1992-01-18" "1992-01-18"
## [24006] "1992-01-18" "1992-01-18" "1992-01-18" "1992-01-18" "1992-01-18"
## [24011] "1992-01-18" "1992-01-18" "1992-01-18" "1992-01-18" "1992-01-18"
## [24016] "1973-08-24" "1973-08-24" "1973-08-24" "1973-08-24" "1987-04-29"
## [24021] "1987-04-29" "1987-04-29" "1987-04-29" "1987-04-29" "1987-04-29"
## [24026] "1987-04-29" "1987-04-29" "1987-04-29" "1987-04-29" "1980-03-18"
## [24031] "1980-03-18" "1980-03-18" "1980-03-18" "1980-03-18" "1980-03-18"
## [24036] "1980-03-18" "1980-03-18" "1972-11-10" "1972-11-10" "1972-11-10"
## [24041] "1972-11-10" "1972-11-10" "1986-03-10" "1986-03-10" "1986-03-10"
## [24046] "1986-03-10" "1986-03-10" "1986-03-10" "1986-03-10" "1986-03-10"
## [24051] "1986-03-10" "1986-03-10" "1986-03-10" "1986-03-10" "1986-03-10"
## [24056] "1991-02-25" "1991-02-25" "1991-02-25" "1991-02-25" "1991-02-25"
## [24061] "1991-02-25" "1991-02-25" "1991-02-25" "1991-02-25" "1991-02-25"
## [24066] "1991-02-25" "1991-02-25" "1977-10-19" "1977-10-19" "1977-10-19"
## [24071] "1977-10-19" "1977-10-19" "1977-10-19" "1977-10-19" "1977-10-19"
## [24076] "1977-10-19" "1977-10-19" "1977-10-19" "1977-10-19" "1977-10-19"
## [24081] "1977-10-19" "1988-03-23" "1988-03-23" "1988-03-23" "1988-03-23"
## [24086] "1988-03-23" "1988-03-23" "1988-03-23" "1988-03-23" "1988-03-23"
## [24091] "1988-03-23" "1988-03-23" "1988-03-23" "1982-03-11" "1982-03-11"
## [24096] "1982-03-11" "1982-03-11" "1982-03-11" "1982-03-11" "1982-03-11"
## [24101] "1982-03-11" "1982-03-11" "1982-03-11" "1982-03-11" "1982-03-11"
## [24106] "1982-03-11" "1982-03-11" "1982-03-11" "1982-03-11" "1982-03-11"
## [24111] "1982-03-11" "1980-02-17" "1980-02-17" "1980-02-17" "1980-02-17"
## [24116] "1980-02-17" "1980-02-17" "1980-02-17" "1980-02-17" "1980-02-17"
## [24121] "1980-02-17" "1980-02-17" "1980-02-17" "1983-05-01" "1983-05-01"
## [24126] "1983-05-01" "1983-05-01" "1983-05-01" "1983-05-01" "1983-05-01"
## [24131] "1983-05-01" "1983-05-01" "1983-05-01" "1983-05-01" "1983-05-01"
## [24136] "1983-05-01" "1987-05-22" "1987-05-22" "1987-05-22" "1987-05-22"
## [24141] "1987-05-22" "1987-05-22" "1987-05-22" "1987-05-22" "1987-05-22"
## [24146] "1987-05-22" "1987-05-22" "1987-05-22" "1987-05-22" "1987-05-22"
## [24151] "1987-05-22" "1989-12-15" "1989-12-15" "1989-12-15" "1989-12-15"
## [24156] "1989-12-15" "1989-12-15" "1989-12-15" "1989-12-15" "1989-12-15"
## [24161] "1989-12-15" "1989-12-15" "1989-12-15" "1989-12-15" "1987-02-03"
## [24166] "1987-02-03" "1987-02-03" "1987-02-03" "1987-02-03" "1987-02-03"
## [24171] "1987-02-03" "1987-02-03" "1987-02-03" "1987-02-03" "1987-02-03"
## [24176] "1987-02-03" "1987-02-03" "1987-02-03" "1987-02-03" "1988-06-02"
## [24181] "1988-06-02" "1988-06-02" "1988-06-02" "1988-06-02" "1988-06-02"
## [24186] "1988-06-02" "1988-06-02" "1988-06-02" "1988-06-02" "1988-06-02"
## [24191] "1984-12-12" "1984-12-12" "1979-04-23" "1979-04-23" "1979-04-23"
## [24196] "1979-04-23" "1979-04-23" "1979-04-23" "1979-04-23" "1979-04-23"
## [24201] "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14"
## [24206] "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14" "1991-09-14"
## [24211] "1991-09-14" "1991-09-14" "1991-09-14" "1970-04-01" "1970-04-01"
## [24216] "1970-04-01" "1970-04-01" "1970-04-01" "1970-04-01" "1970-04-01"
## [24221] "1970-04-01" "1970-04-01" "1970-04-01" "1970-04-01" "1970-04-01"
## [24226] "1970-04-01" "1970-04-01" "1970-04-01" "1970-04-01" "1970-04-01"
## [24231] "1970-04-01" "1970-04-01" "1970-04-01" "1974-09-23" "1974-09-23"
## [24236] "1974-09-23" "1974-09-23" "1974-09-23" "1974-09-23" "1974-09-23"
## [24241] "1974-09-23" "1974-09-23" "1974-09-23" "1974-09-23" "1974-09-23"
## [24246] "1974-09-23" "1974-09-23" "1974-09-23" "1974-09-23" "1974-09-23"
## [24251] "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04"
## [24256] "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04"
## [24261] "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04"
## [24266] "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04"
## [24271] "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04"
## [24276] "1974-08-04" "1974-08-04" "1974-08-04" "1980-10-02" "1980-10-02"
## [24281] "1980-10-02" "1980-10-02" "1980-10-02" "1981-03-18" "1981-03-18"
## [24286] "1981-03-18" "1981-03-18" "1981-03-18" "1981-03-18" "1981-03-18"
## [24291] "1981-03-18" "1981-03-18" "1981-03-18" "1981-03-18" "1985-09-03"
## [24296] "1985-09-03" "1985-09-03" "1985-09-03" "1985-09-03" "1985-09-03"
## [24301] "1985-09-03" "1985-09-03" "1985-09-03" "1989-03-04" "1989-03-04"
## [24306] "1989-03-04" "1979-02-23" "1979-02-23" "1979-02-23" "1979-02-23"
## [24311] "1979-02-23" "1979-02-23" "1979-02-23" "1979-02-23" "1979-11-27"
## [24316] "1979-11-27" "1979-11-27" "1979-11-27" "1979-11-27" "1979-11-27"
## [24321] "1979-11-27" "1979-11-27" "1979-11-27" "1979-11-27" "1979-11-27"
## [24326] "1979-11-27" "1979-11-27" "1979-11-27" "1979-11-27" "1979-11-27"
## [24331] "1971-02-02" "1971-02-02" "1971-02-02" "1971-02-02" "1971-02-02"
## [24336] "1971-02-02" "1971-02-02" "1971-02-02" "1971-02-02" "1971-02-02"
## [24341] "1971-02-02" "1971-02-02" "1971-02-02" "1971-02-02" "1971-02-02"
## [24346] "1975-08-18" "1975-08-18" "1975-08-18" "1989-09-17" "1989-09-17"
## [24351] "1989-09-17" "1989-09-17" "1989-09-17" "1989-09-17" "1989-09-17"
## [24356] "1982-02-20" "1982-02-20" "1982-02-20" "1982-02-20" "1982-02-20"
## [24361] "1971-06-18" "1971-06-18" "1971-06-18" "1971-06-18" "1971-06-18"
## [24366] "1971-06-18" "1971-06-18" "1971-06-18" "1971-06-18" "1971-06-18"
## [24371] "1983-12-08" "1983-12-08" "1983-12-08" "1983-12-08" "1983-12-08"
## [24376] "1983-12-08" "1983-12-08" "1983-12-08" "1982-02-17" "1982-02-17"
## [24381] "1982-02-17" "1982-02-17" "1982-02-17" "1982-02-17" "1982-02-17"
## [24386] "1983-09-15" "1983-09-15" "1983-09-15" "1973-09-21" "1973-09-21"
## [24391] "1973-09-21" "1973-09-21" "1973-09-21" "1973-09-21" "1973-09-21"
## [24396] "1973-09-21" "1973-07-22" "1973-07-22" "1973-07-22" "1973-07-22"
## [24401] "1973-07-22" "1973-07-22" "1973-07-22" "1970-01-29" "1970-01-29"
## [24406] "1970-01-29" "1970-01-29" "1970-01-29" "1970-01-29" "1970-01-29"
## [24411] "1971-07-06" "1971-07-06" "1971-07-06" "1971-07-06" "1971-07-06"
## [24416] "1971-07-06" "1971-07-06" "1971-07-06" "1971-07-06" "1971-07-06"
## [24421] "1971-07-06" "1971-07-06" "1974-07-17" "1974-07-17" "1974-07-17"
## [24426] "1974-07-17" "1974-07-17" "1990-05-17" "1990-05-17" "1990-05-17"
## [24431] "1990-05-17" "1990-05-17" "1990-05-17" "1990-05-17" "1990-05-17"
## [24436] "1990-05-17" "1990-05-17" "1990-05-17" "1990-05-17" "1987-04-19"
## [24441] "1987-04-19" "1987-04-19" "1987-04-19" "1987-04-19" "1987-04-19"
## [24446] "1987-04-19" "1987-04-19" "1987-04-19" "1987-04-19" "1987-04-19"
## [24451] "1987-04-19" "1987-04-19" "1987-04-19" "1987-04-19" "1987-04-19"
## [24456] "1987-04-19" "1987-04-19" "1987-04-19" "1974-08-10" "1974-08-10"
## [24461] "1974-08-10" "1974-08-10" "1974-08-10" "1986-11-09" "1986-11-09"
## [24466] "1986-11-09" "1986-11-09" "1986-11-09" "1986-11-09" "1986-11-09"
## [24471] "1986-11-09" "1986-11-09" "1986-11-09" "1986-11-09" "1992-07-18"
## [24476] "1992-07-18" "1992-07-18" "1992-07-18" "1992-07-18" "1992-07-18"
## [24481] "1990-08-22" "1990-08-22" "1990-08-22" "1990-08-22" "1990-08-22"
## [24486] "1990-08-22" "1990-08-22" "1983-09-08" "1983-09-08" "1983-09-08"
## [24491] "1983-09-08" "1983-09-08" "1983-09-08" "1983-09-08" "1983-09-08"
## [24496] "1983-09-08" "1983-09-08" "1991-03-16" "1991-03-16" "1991-03-16"
## [24501] "1991-03-16" "1991-03-16" "1991-03-16" "1982-05-22" "1982-05-22"
## [24506] "1982-05-22" "1982-05-22" "1982-05-22" "1982-05-22" "1982-05-22"
## [24511] "1982-05-22" "1982-05-22" "1982-05-22" "1982-05-22" "1982-05-22"
## [24516] "1982-05-22" "1982-05-22" "1982-05-22" "1991-03-16" "1991-03-16"
## [24521] "1991-03-16" "1987-01-14" "1987-01-14" "1987-01-14" "1987-01-14"
## [24526] "1987-01-14" "1988-08-24" "1988-08-24" "1988-08-24" "1988-08-24"
## [24531] "1988-08-24" "1988-08-24" "1988-08-24" "1988-08-24" "1975-11-22"
## [24536] "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22"
## [24541] "1975-11-22" "1975-11-22" "1990-07-19" "1990-07-19" "1990-07-19"
## [24546] "1990-07-19" "1990-07-19" "1990-07-19" "1990-07-19" "1990-07-19"
## [24551] "1990-07-19" "1990-07-19" "1990-07-19" "1990-07-19" "1990-07-19"
## [24556] "1990-07-19" "1990-07-19" "1990-07-19" "1990-07-19" "1990-07-19"
## [24561] "1990-07-19" "1983-04-04" "1983-04-04" "1983-04-04" "1983-04-04"
## [24566] "1983-04-04" "1992-12-06" "1992-12-06" "1992-12-06" "1992-12-06"
## [24571] "1980-01-09" "1980-01-09" "1980-01-09" "1980-01-09" "1980-01-09"
## [24576] "1980-01-09" "1980-01-09" "1980-01-09" "1980-01-09" "1980-01-09"
## [24581] "1980-01-09" "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08"
## [24586] "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08"
## [24591] "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08"
## [24596] "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08"
## [24601] "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08" "1984-04-17"
## [24606] "1984-04-17" "1975-10-04" "1975-10-04" "1975-10-04" "1975-10-04"
## [24611] "1975-10-04" "1975-10-04" "1975-10-04" "1975-10-04" "1975-10-04"
## [24616] "1975-10-04" "1975-10-04" "1975-10-04" "1975-10-04" "1975-10-04"
## [24621] "1975-10-04" "1972-03-21" "1972-03-21" "1972-03-21" "1972-03-21"
## [24626] "1972-03-21" "1972-03-21" "1972-03-21" "1972-03-21" "1972-03-21"
## [24631] "1972-03-21" "1972-03-21" "1972-03-21" "1972-03-21" "1986-09-22"
## [24636] "1986-09-22" "1986-09-22" "1986-09-22" "1986-09-22" "1986-09-22"
## [24641] "1986-09-22" "1986-09-22" "1977-06-25" "1977-06-25" "1977-06-25"
## [24646] "1977-06-25" "1977-06-25" "1977-06-25" "1977-06-25" "1977-06-25"
## [24651] "1977-06-25" "1977-06-25" "1977-06-25" "1977-06-25" "1977-06-25"
## [24656] "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04"
## [24661] "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04" "1980-12-04"
## [24666] "1991-12-29" "1991-12-29" "1991-12-29" "1991-12-29" "1991-12-29"
## [24671] "1982-05-11" "1982-05-11" "1982-05-11" "1982-05-11" "1982-05-11"
## [24676] "1982-05-11" "1982-05-11" "1982-05-11" "1982-05-11" "1980-03-25"
## [24681] "1980-03-25" "1980-03-25" "1980-03-25" "1980-03-25" "1980-03-25"
## [24686] "1980-03-25" "1980-03-25" "1980-03-25" "1980-03-25" "1980-03-25"
## [24691] "1992-12-08" "1992-12-08" "1992-12-08" "1988-03-20" "1988-03-20"
## [24696] "1988-03-20" "1988-03-20" "1988-03-20" "1988-03-20" "1985-11-24"
## [24701] "1985-11-24" "1985-11-24" "1985-11-24" "1985-11-24" "1985-11-24"
## [24706] "1985-11-24" "1985-11-24" "1985-11-24" "1985-11-24" "1985-11-24"
## [24711] "1985-11-24" "1985-11-24" "1985-11-24" "1985-11-24" "1985-11-24"
## [24716] "1985-11-24" "1985-11-24" "1985-11-24" "1985-11-24" "1985-11-24"
## [24721] "1978-12-23" "1978-12-23" "1978-12-23" "1978-12-23" "1978-12-23"
## [24726] "1978-12-23" "1978-12-23" "1978-12-23" "1978-12-23" "1978-12-23"
## [24731] "1978-12-23" "1978-12-23" "1978-12-23" "1978-12-23" "1978-12-23"
## [24736] "1978-12-23" "1978-12-23" "1978-12-23" "1978-12-23" "1978-12-23"
## [24741] "1978-12-23" "1978-12-23" "1978-12-23" "1978-12-23" "1978-12-23"
## [24746] "1975-09-18" "1975-09-18" "1975-09-18" "1975-09-18" "1975-09-18"
## [24751] "1988-03-29" "1988-03-29" "1988-03-29" "1988-03-29" "1988-03-29"
## [24756] "1988-03-29" "1988-03-29" "1988-03-29" "1988-03-29" "1988-03-29"
## [24761] "1988-03-29" "1990-06-10" "1990-06-10" "1990-06-10" "1990-06-10"
## [24766] "1990-06-10" "1990-06-10" "1990-06-10" "1990-06-10" "1990-06-10"
## [24771] "1990-06-10" "1990-06-10" "1990-06-10" "1990-06-10" "1990-06-10"
## [24776] "1990-06-10" "1990-06-10" "1978-04-17" "1978-04-17" "1978-04-17"
## [24781] "1978-04-17" "1978-04-17" "1991-10-11" "1991-10-11" "1992-04-15"
## [24786] "1992-04-15" "1992-04-15" "1992-04-15" "1992-04-15" "1992-04-15"
## [24791] "1992-04-15" "1992-04-15" "1992-04-15" "1992-04-15" "1992-04-15"
## [24796] "1992-04-15" "1992-04-15" "1992-04-15" "1992-04-15" "1992-04-15"
## [24801] "1982-12-22" "1982-12-22" "1982-12-22" "1982-12-22" "1982-12-22"
## [24806] "1982-12-22" "1980-05-19" "1980-05-19" "1980-05-19" "1980-05-19"
## [24811] "1980-05-19" "1980-05-19" "1980-05-19" "1980-05-19" "1980-05-19"
## [24816] "1980-05-19" "1972-05-23" "1972-05-23" "1972-05-23" "1972-05-23"
## [24821] "1972-05-23" "1976-12-16" "1976-12-16" "1976-12-16" "1976-12-16"
## [24826] "1976-12-16" "1976-12-16" "1976-12-16" "1976-12-16" "1976-12-16"
## [24831] "1976-12-16" "1976-12-16" "1976-12-16" "1980-04-12" "1980-04-12"
## [24836] "1980-04-12" "1980-04-12" "1980-04-12" "1982-04-20" "1982-04-20"
## [24841] "1982-04-20" "1982-04-20" "1985-02-02" "1985-02-02" "1985-02-02"
## [24846] "1985-02-02" "1985-02-02" "1985-02-02" "1985-02-02" "1985-02-02"
## [24851] "1985-02-02" "1985-02-02" "1985-02-02" "1985-02-02" "1985-02-02"
## [24856] "1985-02-02" "1985-02-02" "1989-07-22" "1989-07-22" "1989-07-22"
## [24861] "1989-07-22" "1989-07-22" "1989-07-22" "1989-07-22" "1989-07-22"
## [24866] "1989-07-22" "1989-07-22" "1989-07-22" "1989-07-22" "1989-07-22"
## [24871] "1975-07-27" "1975-07-27" "1975-07-27" "1989-01-25" "1989-01-25"
## [24876] "1989-01-25" "1989-01-25" "1989-01-25" "1989-01-25" "1989-01-25"
## [24881] "1989-01-25" "1989-01-25" "1989-01-25" "1989-01-25" "1989-01-25"
## [24886] "1989-01-25" "1989-01-25" "1989-01-25" "1989-01-25" "1989-01-25"
## [24891] "1989-01-25" "1989-01-25" "1989-01-25" "1989-01-25" "1989-01-25"
## [24896] "1976-03-17" "1976-03-17" "1976-03-17" "1976-03-17" "1976-03-17"
## [24901] "1976-03-17" "1976-03-17" "1976-03-17" "1976-03-17" "1976-03-17"
## [24906] "1976-03-17" "1979-09-27" "1979-09-27" "1991-10-12" "1991-10-12"
## [24911] "1991-10-12" "1991-10-12" "1991-10-12" "1991-10-12" "1991-10-12"
## [24916] "1991-10-12" "1991-10-12" "1991-10-12" "1991-10-12" "1991-10-12"
## [24921] "1991-10-12" "1991-10-12" "1991-10-12" "1991-10-12" "1991-10-12"
## [24926] "1991-10-12" "1991-10-12" "1991-10-12" "1991-10-12" "1991-10-12"
## [24931] "1978-11-02" "1978-11-02" "1971-12-17" "1971-12-17" "1971-12-17"
## [24936] "1990-07-17" "1990-07-17" "1990-07-17" "1990-07-17" "1991-01-13"
## [24941] "1991-01-13" "1991-01-13" "1991-01-13" "1991-01-13" "1991-01-13"
## [24946] "1981-11-20" "1981-11-20" "1981-05-07" "1981-05-07" "1984-10-14"
## [24951] "1984-10-14" "1984-10-14" "1984-10-14" "1984-10-14" "1984-10-14"
## [24956] "1984-10-14" "1984-03-11" "1984-03-11" "1984-03-11" "1984-03-11"
## [24961] "1984-03-11" "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06"
## [24966] "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06"
## [24971] "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06"
## [24976] "1978-06-23" "1978-06-23" "1978-06-23" "1978-06-23" "1978-06-23"
## [24981] "1978-06-23" "1978-06-23" "1971-07-05" "1971-07-05" "1971-07-05"
## [24986] "1971-07-05" "1971-07-05" "1971-07-05" "1971-07-05" "1971-07-05"
## [24991] "1971-07-05" "1971-07-05" "1971-07-05" "1974-01-08" "1974-01-08"
## [24996] "1982-08-12" "1982-08-12" "1982-08-12" "1982-08-12" "1982-08-12"
## [25001] "1973-04-12" "1973-04-12" "1973-04-12" "1973-04-12" "1973-04-12"
## [25006] "1973-04-12" "1973-04-12" "1973-04-12" "1973-04-12" "1973-04-12"
## [25011] "1973-04-12" "1973-04-12" "1973-04-12" "1973-04-12" "1973-04-12"
## [25016] "1973-10-21" "1973-10-21" "1973-10-21" "1973-10-21" "1973-10-21"
## [25021] "1973-10-21" "1973-10-21" "1972-02-01" "1972-02-01" "1972-02-01"
## [25026] "1972-02-01" "1987-11-07" "1987-11-07" "1987-11-07" "1987-11-07"
## [25031] "1987-11-07" "1987-11-07" "1987-11-11" "1987-11-11" "1987-11-11"
## [25036] "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11"
## [25041] "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11"
## [25046] "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11"
## [25051] "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11" "1982-04-17"
## [25056] "1982-04-17" "1982-04-17" "1982-04-17" "1982-04-17" "1982-04-17"
## [25061] "1982-04-17" "1982-04-17" "1982-04-17" "1982-04-17" "1982-04-17"
## [25066] "1982-04-17" "1980-12-16" "1980-12-16" "1980-12-16" "1980-12-16"
## [25071] "1980-12-16" "1980-12-16" "1980-12-16" "1980-12-16" "1980-12-16"
## [25076] "1980-12-16" "1980-12-16" "1980-12-16" "1980-12-16" "1980-12-16"
## [25081] "1980-12-16" "1980-12-16" "1980-12-16" "1980-12-16" "1980-12-16"
## [25086] "1980-12-16" "1980-12-16" "1980-12-16" "1981-11-13" "1981-11-13"
## [25091] "1981-11-13" "1981-11-13" "1981-11-13" "1981-11-13" "1981-11-13"
## [25096] "1981-11-13" "1981-11-13" "1981-11-13" "1981-11-13" "1970-06-17"
## [25101] "1970-06-17" "1970-06-17" "1970-06-17" "1970-06-17" "1970-06-17"
## [25106] "1970-06-17" "1970-06-17" "1970-06-17" "1975-07-22" "1975-07-22"
## [25111] "1975-07-22" "1975-07-22" "1975-07-22" "1975-07-22" "1975-07-22"
## [25116] "1975-07-22" "1975-07-22" "1975-07-22" "1975-02-27" "1975-02-27"
## [25121] "1975-02-27" "1975-02-27" "1976-08-24" "1976-08-24" "1976-08-24"
## [25126] "1976-08-24" "1976-08-24" "1976-08-24" "1976-08-24" "1976-08-24"
## [25131] "1976-08-24" "1982-09-27" "1982-09-27" "1982-09-27" "1989-01-07"
## [25136] "1989-01-07" "1989-01-07" "1989-01-07" "1989-01-07" "1989-01-07"
## [25141] "1989-01-07" "1989-01-07" "1974-12-02" "1974-12-02" "1974-12-02"
## [25146] "1974-12-02" "1974-12-02" "1974-12-02" "1974-12-02" "1974-12-02"
## [25151] "1992-04-12" "1992-04-12" "1990-04-05" "1990-04-05" "1990-04-05"
## [25156] "1970-05-06" "1970-05-06" "1970-05-06" "1970-05-06" "1970-05-06"
## [25161] "1970-05-06" "1984-05-23" "1984-05-23" "1984-05-23" "1984-05-23"
## [25166] "1984-05-23" "1982-03-27" "1982-03-27" "1982-03-27" "1982-03-27"
## [25171] "1975-05-04" "1975-05-04" "1971-05-01" "1971-05-01" "1971-05-01"
## [25176] "1971-05-01" "1971-05-01" "1971-05-01" "1971-05-01" "1971-05-01"
## [25181] "1971-05-01" "1971-05-01" "1971-05-01" "1971-05-01" "1988-02-02"
## [25186] "1988-02-02" "1988-02-02" "1988-02-02" "1988-02-02" "1988-02-02"
## [25191] "1988-02-02" "1988-02-02" "1988-02-02" "1988-02-02" "1988-02-02"
## [25196] "1988-02-02" "1988-02-02" "1988-02-02" "1988-02-02" "1988-09-12"
## [25201] "1988-09-12" "1988-09-12" "1988-09-12" "1971-04-21" "1971-04-21"
## [25206] "1971-04-21" "1971-04-21" "1971-04-21" "1971-04-21" "1971-04-21"
## [25211] "1991-07-08" "1991-07-08" "1971-07-11" "1971-07-11" "1971-07-11"
## [25216] "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11"
## [25221] "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11"
## [25226] "1971-07-11" "1971-07-11" "1971-07-11" "1971-07-11" "1986-06-23"
## [25231] "1986-06-23" "1986-06-23" "1986-06-23" "1986-06-23" "1986-06-23"
## [25236] "1986-06-23" "1986-06-23" "1986-06-23" "1986-06-23" "1986-06-23"
## [25241] "1986-06-23" "1986-06-23" "1986-06-23" "1979-05-08" "1979-05-08"
## [25246] "1979-05-08" "1979-05-08" "1979-05-08" "1977-05-17" "1977-05-17"
## [25251] "1977-05-17" "1977-05-17" "1977-05-17" "1977-04-17" "1977-04-17"
## [25256] "1977-04-17" "1977-04-17" "1977-04-17" "1977-04-17" "1977-04-17"
## [25261] "1977-04-17" "1977-04-17" "1977-04-17" "1977-04-17" "1977-04-17"
## [25266] "1977-04-17" "1982-11-19" "1982-11-19" "1982-11-19" "1982-11-19"
## [25271] "1982-11-19" "1982-11-19" "1982-11-19" "1982-11-19" "1982-11-19"
## [25276] "1982-11-19" "1982-11-19" "1982-11-19" "1982-11-19" "1982-11-19"
## [25281] "1982-11-19" "1982-11-19" "1982-11-19" "1982-11-19" "1982-11-19"
## [25286] "1982-11-19" "1989-02-10" "1989-02-10" "1989-02-10" "1989-02-10"
## [25291] "1975-02-03" "1975-02-03" "1975-02-03" "1975-02-03" "1975-02-03"
## [25296] "1975-02-03" "1975-02-03" "1975-02-03" "1975-02-03" "1976-03-10"
## [25301] "1976-03-10" "1976-03-10" "1976-03-10" "1976-03-10" "1976-03-10"
## [25306] "1981-06-08" "1981-06-08" "1981-06-08" "1976-07-20" "1976-07-20"
## [25311] "1976-07-20" "1988-02-23" "1988-02-23" "1988-02-23" "1976-08-17"
## [25316] "1976-08-17" "1976-08-17" "1976-08-17" "1976-08-17" "1976-08-17"
## [25321] "1976-08-17" "1976-08-17" "1976-08-17" "1976-08-17" "1976-08-17"
## [25326] "1976-08-17" "1977-12-06" "1977-12-06" "1977-12-06" "1987-09-24"
## [25331] "1987-09-24" "1987-09-24" "1987-09-24" "1987-09-24" "1987-09-24"
## [25336] "1987-09-24" "1987-09-24" "1987-06-12" "1987-06-12" "1987-06-12"
## [25341] "1987-06-12" "1987-06-12" "1987-06-12" "1987-06-12" "1987-06-12"
## [25346] "1987-06-12" "1987-06-12" "1987-06-12" "1987-06-12" "1987-06-12"
## [25351] "1987-06-12" "1987-06-12" "1990-08-09" "1990-08-09" "1990-08-09"
## [25356] "1990-08-09" "1990-08-09" "1983-12-11" "1983-12-11" "1983-12-11"
## [25361] "1983-12-11" "1983-12-11" "1983-12-11" "1983-12-11" "1987-03-23"
## [25366] "1987-03-23" "1987-03-23" "1987-03-23" "1987-03-23" "1984-06-05"
## [25371] "1984-06-05" "1984-06-05" "1984-06-05" "1984-06-05" "1984-06-05"
## [25376] "1987-08-28" "1987-08-28" "1987-08-28" "1987-08-28" "1987-08-28"
## [25381] "1987-08-28" "1987-08-28" "1987-08-28" "1984-12-10" "1984-12-10"
## [25386] "1984-12-10" "1984-12-10" "1984-12-10" "1984-12-10" "1979-07-12"
## [25391] "1979-07-12" "1979-07-12" "1979-07-12" "1979-07-12" "1979-07-12"
## [25396] "1979-07-12" "1979-07-12" "1979-07-12" "1979-07-12" "1979-07-12"
## [25401] "1979-07-12" "1979-07-12" "1979-07-12" "1979-07-12" "1979-07-12"
## [25406] "1979-07-12" "1979-07-12" "1978-11-15" "1978-11-15" "1978-11-15"
## [25411] "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15"
## [25416] "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15"
## [25421] "1978-11-15" "1987-02-20" "1987-02-20" "1987-02-20" "1987-02-20"
## [25426] "1987-02-20" "1987-02-20" "1987-02-20" "1979-04-05" "1979-04-05"
## [25431] "1979-04-05" "1979-04-05" "1979-04-05" "1979-04-05" "1979-04-05"
## [25436] "1972-07-10" "1972-07-10" "1972-07-10" "1972-07-10" "1972-07-10"
## [25441] "1972-07-10" "1972-07-10" "1972-07-10" "1972-07-10" "1972-07-10"
## [25446] "1972-07-10" "1972-07-10" "1972-07-10" "1972-07-10" "1976-11-03"
## [25451] "1976-11-03" "1976-11-03" "1976-11-03" "1976-11-03" "1976-11-03"
## [25456] "1976-11-03" "1976-11-03" "1973-12-20" "1973-12-20" "1973-12-20"
## [25461] "1973-12-20" "1973-12-20" "1973-12-20" "1973-12-20" "1973-12-20"
## [25466] "1973-12-20" "1973-12-20" "1973-12-20" "1973-12-20" "1973-12-20"
## [25471] "1973-12-20" "1973-12-20" "1973-12-20" "1973-12-20" "1973-12-20"
## [25476] "1973-12-20" "1973-12-20" "1973-12-20" "1973-12-20" "1986-05-08"
## [25481] "1986-05-08" "1986-05-08" "1986-05-08" "1986-05-08" "1986-05-08"
## [25486] "1986-05-08" "1986-05-08" "1975-11-28" "1975-11-28" "1975-11-28"
## [25491] "1975-11-28" "1975-11-28" "1973-03-10" "1973-03-10" "1973-03-10"
## [25496] "1973-03-10" "1973-03-10" "1973-03-10" "1973-03-10" "1973-03-10"
## [25501] "1973-03-10" "1973-03-10" "1973-03-10" "1973-03-10" "1973-03-10"
## [25506] "1973-03-10" "1991-07-08" "1991-07-08" "1991-07-08" "1991-07-08"
## [25511] "1991-07-08" "1991-07-08" "1991-07-08" "1991-07-08" "1976-12-22"
## [25516] "1976-12-22" "1976-12-22" "1976-12-22" "1976-12-22" "1976-12-22"
## [25521] "1976-12-22" "1976-12-22" "1986-07-21" "1986-07-21" "1986-07-21"
## [25526] "1977-09-21" "1977-09-21" "1977-09-21" "1977-09-21" "1975-12-20"
## [25531] "1975-12-20" "1975-12-20" "1975-12-20" "1975-12-20" "1975-12-20"
## [25536] "1975-12-20" "1975-12-20" "1975-12-20" "1975-12-20" "1975-12-20"
## [25541] "1975-12-20" "1972-01-12" "1972-01-12" "1972-01-12" "1972-01-12"
## [25546] "1972-01-12" "1972-01-12" "1972-01-12" "1972-01-12" "1972-01-12"
## [25551] "1972-01-12" "1972-01-12" "1972-01-12" "1972-01-12" "1972-01-12"
## [25556] "1985-06-02" "1985-06-02" "1985-06-02" "1985-06-02" "1985-06-02"
## [25561] "1985-06-02" "1985-06-02" "1985-06-02" "1985-06-02" "1985-06-02"
## [25566] "1985-06-02" "1985-06-02" "1985-06-02" "1985-06-02" "1986-08-11"
## [25571] "1986-08-11" "1986-08-11" "1986-08-11" "1986-08-11" "1986-08-11"
## [25576] "1986-08-11" "1986-08-11" "1986-08-11" "1986-08-11" "1986-08-11"
## [25581] "1986-08-11" "1986-08-11" "1986-08-11" "1986-08-11" "1992-06-16"
## [25586] "1992-06-16" "1992-06-16" "1975-11-22" "1975-11-22" "1975-11-22"
## [25591] "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22"
## [25596] "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22"
## [25601] "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22"
## [25606] "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22"
## [25611] "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22" "1975-11-22"
## [25616] "1985-06-03" "1985-06-03" "1985-06-03" "1985-06-03" "1985-06-03"
## [25621] "1985-06-03" "1974-10-16" "1974-10-16" "1974-10-16" "1974-10-16"
## [25626] "1992-02-16" "1992-02-16" "1992-02-16" "1986-03-10" "1986-03-10"
## [25631] "1986-03-10" "1986-03-10" "1986-03-10" "1986-03-10" "1986-03-10"
## [25636] "1986-03-10" "1986-03-10" "1986-03-10" "1977-09-03" "1977-09-03"
## [25641] "1977-09-03" "1977-09-03" "1977-09-03" "1977-09-03" "1977-09-03"
## [25646] "1977-09-03" "1977-09-03" "1977-09-03" "1977-09-03" "1977-09-03"
## [25651] "1977-09-03" "1977-09-03" "1977-09-03" "1978-09-06" "1978-09-06"
## [25656] "1978-09-06" "1978-09-06" "1978-09-06" "1978-09-06" "1978-09-06"
## [25661] "1978-09-06" "1978-09-06" "1978-09-06" "1978-09-06" "1978-09-06"
## [25666] "1978-09-06" "1991-11-18" "1991-11-18" "1991-11-18" "1991-11-18"
## [25671] "1991-11-18" "1991-11-18" "1991-11-18" "1991-11-18" "1991-11-18"
## [25676] "1991-11-18" "1976-08-24" "1976-08-24" "1976-08-24" "1976-08-24"
## [25681] "1976-08-24" "1985-10-25" "1985-10-25" "1985-10-25" "1985-10-25"
## [25686] "1985-10-25" "1985-10-25" "1985-10-25" "1985-10-25" "1985-10-25"
## [25691] "1985-10-25" "1985-10-25" "1985-10-25" "1985-10-25" "1985-10-25"
## [25696] "1985-10-25" "1972-09-04" "1972-09-04" "1972-09-04" "1972-09-04"
## [25701] "1972-09-04" "1972-09-04" "1972-09-04" "1972-09-04" "1972-09-04"
## [25706] "1972-09-04" "1972-09-04" "1972-09-04" "1972-09-04" "1972-09-04"
## [25711] "1972-09-04" "1972-09-04" "1972-09-04" "1972-09-04" "1972-09-04"
## [25716] "1972-09-04" "1990-04-01" "1990-04-01" "1990-04-01" "1990-04-01"
## [25721] "1990-03-12" "1990-03-12" "1990-03-12" "1990-03-12" "1990-03-12"
## [25726] "1990-03-12" "1990-03-12" "1990-03-12" "1990-03-12" "1990-03-12"
## [25731] "1990-03-12" "1990-03-12" "1990-03-12" "1990-03-12" "1990-03-12"
## [25736] "1990-03-12" "1990-03-12" "1990-03-12" "1990-03-12" "1990-03-12"
## [25741] "1990-03-12" "1970-10-27" "1970-10-27" "1970-10-27" "1970-10-27"
## [25746] "1970-10-27" "1970-10-27" "1970-10-27" "1970-10-27" "1970-10-27"
## [25751] "1970-10-27" "1970-10-27" "1970-10-27" "1970-10-27" "1970-10-27"
## [25756] "1970-10-27" "1970-10-27" "1970-10-27" "1975-06-21" "1975-06-21"
## [25761] "1975-06-21" "1975-06-21" "1975-06-21" "1975-06-21" "1975-06-21"
## [25766] "1975-06-21" "1975-06-21" "1975-06-21" "1975-06-21" "1975-06-21"
## [25771] "1975-06-21" "1975-06-21" "1975-06-21" "1975-06-21" "1975-06-21"
## [25776] "1975-06-21" "1975-06-21" "1975-06-21" "1975-06-21" "1975-06-21"
## [25781] "1975-06-21" "1975-06-21" "1975-06-21" "1975-06-21" "1974-02-15"
## [25786] "1974-02-15" "1974-02-15" "1974-02-15" "1974-02-15" "1974-02-15"
## [25791] "1974-02-15" "1974-02-15" "1974-02-15" "1974-02-15" "1974-02-15"
## [25796] "1974-02-15" "1974-02-15" "1974-02-15" "1974-02-15" "1974-02-15"
## [25801] "1974-02-15" "1974-02-15" "1974-02-15" "1974-02-15" "1972-11-29"
## [25806] "1972-11-29" "1972-11-29" "1972-11-29" "1972-11-29" "1972-11-29"
## [25811] "1972-11-29" "1972-11-29" "1972-11-29" "1972-11-29" "1972-11-29"
## [25816] "1972-11-29" "1972-11-29" "1972-11-29" "1972-11-29" "1972-11-29"
## [25821] "1972-11-29" "1988-03-28" "1988-03-28" "1988-03-28" "1988-03-28"
## [25826] "1988-03-28" "1988-03-28" "1988-03-28" "1988-03-28" "1988-03-28"
## [25831] "1988-03-28" "1988-03-28" "1991-06-25" "1991-06-25" "1991-06-25"
## [25836] "1991-06-25" "1991-06-25" "1991-06-25" "1991-06-25" "1981-07-20"
## [25841] "1981-07-20" "1981-07-20" "1981-07-20" "1981-07-20" "1981-07-20"
## [25846] "1981-07-20" "1981-07-20" "1981-07-20" "1981-07-20" "1981-07-20"
## [25851] "1981-07-20" "1981-07-20" "1981-07-20" "1981-07-20" "1981-07-20"
## [25856] "1981-07-20" "1981-07-20" "1981-07-20" "1981-07-20" "1981-07-20"
## [25861] "1981-07-20" "1985-12-24" "1985-12-24" "1985-12-24" "1985-12-24"
## [25866] "1985-12-24" "1985-12-24" "1988-05-26" "1988-05-26" "1988-05-26"
## [25871] "1988-05-26" "1988-05-26" "1977-06-20" "1977-06-20" "1977-06-20"
## [25876] "1977-06-20" "1977-06-20" "1977-06-20" "1987-12-02" "1987-12-02"
## [25881] "1987-12-02" "1987-12-02" "1987-12-02" "1987-12-02" "1987-12-02"
## [25886] "1987-12-02" "1987-12-02" "1986-04-07" "1986-04-07" "1986-04-07"
## [25891] "1986-04-07" "1986-04-07" "1986-04-07" "1970-02-09" "1970-02-09"
## [25896] "1970-02-09" "1970-02-09" "1970-02-09" "1990-09-27" "1990-09-27"
## [25901] "1990-09-27" "1990-09-27" "1990-09-27" "1990-09-27" "1981-05-01"
## [25906] "1981-05-01" "1981-05-01" "1981-05-01" "1981-05-01" "1981-05-01"
## [25911] "1981-05-01" "1981-05-01" "1981-05-01" "1981-05-01" "1981-05-01"
## [25916] "1987-12-20" "1987-12-20" "1987-12-20" "1987-12-20" "1987-12-20"
## [25921] "1981-09-12" "1981-09-12" "1981-09-12" "1981-09-12" "1981-09-12"
## [25926] "1981-09-12" "1981-09-12" "1981-09-12" "1989-06-23" "1989-06-23"
## [25931] "1989-06-23" "1989-06-23" "1989-06-23" "1989-06-23" "1989-06-23"
## [25936] "1989-06-23" "1975-06-06" "1975-06-06" "1975-06-06" "1975-06-06"
## [25941] "1975-06-06" "1975-06-06" "1975-06-06" "1977-01-19" "1977-01-19"
## [25946] "1977-01-19" "1977-01-19" "1977-01-19" "1977-01-19" "1977-01-19"
## [25951] "1977-01-19" "1977-01-19" "1977-01-19" "1977-01-19" "1977-01-19"
## [25956] "1977-01-19" "1977-01-19" "1977-01-19" "1977-01-19" "1980-06-28"
## [25961] "1980-06-28" "1980-06-28" "1980-06-28" "1980-06-28" "1980-06-28"
## [25966] "1980-06-28" "1975-07-03" "1975-07-03" "1975-07-03" "1975-07-03"
## [25971] "1975-07-03" "1975-07-03" "1975-07-03" "1975-07-03" "1975-07-03"
## [25976] "1975-07-03" "1975-07-03" "1970-06-02" "1970-06-02" "1972-02-08"
## [25981] "1972-02-08" "1972-02-08" "1972-02-08" "1972-02-08" "1972-02-08"
## [25986] "1972-02-08" "1972-02-08" "1972-02-08" "1972-02-08" "1972-02-08"
## [25991] "1987-10-20" "1987-10-20" "1987-10-20" "1987-10-20" "1987-10-20"
## [25996] "1977-05-01" "1977-05-01" "1977-05-01" "1977-05-01" "1977-05-01"
## [26001] "1989-09-06" "1989-09-06" "1989-09-06" "1989-09-06" "1989-09-06"
## [26006] "1989-09-06" "1989-09-06" "1989-09-06" "1989-09-06" "1989-09-06"
## [26011] "1989-09-06" "1989-09-06" "1989-09-06" "1971-08-29" "1971-08-29"
## [26016] "1971-08-29" "1971-08-29" "1971-08-29" "1971-08-29" "1971-08-29"
## [26021] "1971-08-29" "1971-08-29" "1971-08-29" "1971-08-29" "1971-08-29"
## [26026] "1977-09-29" "1977-09-29" "1977-09-29" "1977-09-29" "1977-09-29"
## [26031] "1977-09-29" "1977-09-29" "1977-09-29" "1977-09-29" "1977-09-29"
## [26036] "1977-09-29" "1977-09-29" "1977-09-29" "1977-09-29" "1977-09-29"
## [26041] "1977-09-29" "1977-09-29" "1977-09-29" "1977-09-29" "1978-02-08"
## [26046] "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08"
## [26051] "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08"
## [26056] "1978-02-08" "1978-02-08" "1978-02-08" "1978-02-08" "1989-10-27"
## [26061] "1989-10-27" "1989-10-27" "1989-10-27" "1989-10-27" "1980-01-01"
## [26066] "1980-01-01" "1980-01-01" "1980-01-01" "1980-01-01" "1980-01-01"
## [26071] "1980-01-01" "1980-01-01" "1980-01-01" "1980-01-01" "1980-01-01"
## [26076] "1980-01-01" "1980-01-01" "1980-01-01" "1980-01-01" "1980-01-01"
## [26081] "1980-01-01" "1980-01-01" "1990-04-01" "1990-04-01" "1990-04-01"
## [26086] "1990-04-01" "1990-04-01" "1990-04-01" "1990-04-01" "1990-04-01"
## [26091] "1990-04-01" "1990-04-01" "1971-04-10" "1971-04-10" "1971-04-10"
## [26096] "1971-04-10" "1982-01-03" "1982-01-03" "1982-01-03" "1982-01-03"
## [26101] "1982-01-03" "1982-01-03" "1982-01-03" "1982-01-03" "1982-01-03"
## [26106] "1982-01-03" "1982-01-03" "1982-01-03" "1982-01-03" "1982-01-03"
## [26111] "1982-01-03" "1982-01-03" "1990-03-19" "1990-03-19" "1990-03-19"
## [26116] "1990-03-19" "1972-03-25" "1972-03-25" "1972-03-25" "1972-03-25"
## [26121] "1972-03-25" "1984-05-03" "1984-05-03" "1984-05-03" "1984-05-03"
## [26126] "1984-05-03" "1980-03-28" "1980-03-28" "1980-03-28" "1980-03-28"
## [26131] "1980-03-28" "1980-03-28" "1980-03-28" "1980-03-28" "1987-11-10"
## [26136] "1987-11-10" "1987-11-10" "1987-11-10" "1987-11-10" "1987-11-10"
## [26141] "1979-11-25" "1979-11-25" "1979-11-25" "1979-11-25" "1979-11-25"
## [26146] "1979-11-25" "1979-11-25" "1979-11-25" "1979-11-25" "1979-11-25"
## [26151] "1979-11-25" "1981-09-25" "1981-09-25" "1981-09-25" "1981-09-25"
## [26156] "1981-09-25" "1981-09-25" "1979-11-10" "1979-11-10" "1979-11-10"
## [26161] "1979-11-10" "1979-11-10" "1974-09-06" "1974-09-06" "1974-09-06"
## [26166] "1974-09-06" "1974-09-06" "1974-09-06" "1974-09-06" "1974-09-06"
## [26171] "1974-09-06" "1974-09-06" "1974-05-28" "1974-05-28" "1974-05-28"
## [26176] "1974-05-28" "1974-05-28" "1974-05-28" "1974-05-28" "1974-05-28"
## [26181] "1974-05-28" "1974-05-28" "1974-05-28" "1974-05-28" "1974-05-28"
## [26186] "1974-05-28" "1974-05-28" "1986-09-26" "1986-09-26" "1986-09-26"
## [26191] "1986-09-26" "1986-09-26" "1986-09-26" "1986-09-26" "1986-09-26"
## [26196] "1986-09-26" "1982-10-12" "1982-10-12" "1975-06-26" "1975-06-26"
## [26201] "1992-02-06" "1992-02-06" "1992-02-06" "1992-02-06" "1986-11-17"
## [26206] "1986-11-17" "1986-11-17" "1986-11-17" "1986-11-17" "1986-11-17"
## [26211] "1986-11-17" "1986-11-17" "1986-11-17" "1986-11-17" "1971-10-15"
## [26216] "1971-10-15" "1975-11-18" "1975-11-18" "1975-11-18" "1981-06-08"
## [26221] "1981-06-08" "1981-06-08" "1981-06-08" "1981-06-08" "1981-06-08"
## [26226] "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01"
## [26231] "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01"
## [26236] "1975-08-01" "1991-07-15" "1991-07-15" "1991-07-15" "1991-07-15"
## [26241] "1991-07-15" "1989-08-08" "1989-08-08" "1989-08-08" "1989-08-08"
## [26246] "1989-08-08" "1989-08-08" "1989-08-08" "1989-08-08" "1989-08-08"
## [26251] "1989-08-08" "1989-08-08" "1989-08-08" "1989-08-08" "1989-08-08"
## [26256] "1989-08-08" "1989-08-08" "1989-08-08" "1978-01-05" "1978-01-05"
## [26261] "1978-01-05" "1978-01-05" "1978-01-05" "1978-01-05" "1978-01-05"
## [26266] "1978-01-05" "1978-01-05" "1982-11-21" "1982-11-21" "1982-11-21"
## [26271] "1982-11-21" "1982-11-21" "1982-11-21" "1971-12-15" "1971-12-15"
## [26276] "1977-02-12" "1977-02-12" "1977-02-12" "1977-02-12" "1977-02-12"
## [26281] "1977-02-12" "1977-02-12" "1977-02-12" "1977-02-12" "1977-02-12"
## [26286] "1977-02-12" "1977-02-12" "1977-02-12" "1977-02-12" "1982-01-03"
## [26291] "1982-01-03" "1982-01-03" "1982-01-03" "1982-01-03" "1982-01-03"
## [26296] "1982-01-03" "1982-01-03" "1982-01-03" "1982-01-03" "1982-01-03"
## [26301] "1982-01-03" "1982-01-03" "1979-02-27" "1979-02-27" "1979-02-27"
## [26306] "1979-02-27" "1979-02-27" "1979-05-07" "1979-05-07" "1979-05-07"
## [26311] "1979-05-07" "1979-05-07" "1979-05-07" "1979-05-07" "1979-05-07"
## [26316] "1979-05-07" "1979-05-07" "1979-05-07" "1992-10-07" "1992-10-07"
## [26321] "1992-10-07" "1992-10-07" "1992-10-07" "1992-10-07" "1991-07-11"
## [26326] "1991-07-11" "1991-07-11" "1991-07-11" "1991-07-11" "1991-07-11"
## [26331] "1991-07-11" "1991-07-11" "1991-07-11" "1991-07-11" "1991-07-11"
## [26336] "1991-07-11" "1991-07-11" "1991-07-11" "1991-07-11" "1992-02-09"
## [26341] "1992-02-09" "1992-02-09" "1982-09-04" "1982-09-04" "1982-09-04"
## [26346] "1982-09-04" "1982-09-04" "1982-09-04" "1982-09-04" "1982-09-04"
## [26351] "1982-09-04" "1976-01-07" "1976-01-07" "1976-01-07" "1980-11-15"
## [26356] "1980-11-15" "1980-11-15" "1980-11-15" "1980-11-15" "1980-11-15"
## [26361] "1980-11-15" "1980-11-15" "1980-11-15" "1980-11-15" "1977-06-13"
## [26366] "1977-06-13" "1977-06-13" "1977-06-13" "1977-06-13" "1977-06-13"
## [26371] "1977-06-13" "1977-06-13" "1977-06-13" "1977-06-13" "1977-06-13"
## [26376] "1992-03-06" "1992-03-06" "1992-03-06" "1992-03-06" "1992-03-06"
## [26381] "1992-03-06" "1990-01-01" "1990-01-01" "1990-01-01" "1990-01-01"
## [26386] "1990-01-01" "1978-10-04" "1978-10-04" "1978-10-04" "1978-10-04"
## [26391] "1982-09-21" "1982-09-21" "1982-09-21" "1982-09-21" "1971-03-10"
## [26396] "1971-03-10" "1971-03-10" "1971-03-10" "1971-03-10" "1971-03-10"
## [26401] "1971-03-10" "1971-03-10" "1979-09-24" "1979-09-24" "1979-09-24"
## [26406] "1979-09-24" "1979-09-24" "1982-09-17" "1982-09-17" "1982-09-17"
## [26411] "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17"
## [26416] "1982-09-17" "1982-09-17" "1982-09-17" "1973-03-20" "1973-03-20"
## [26421] "1973-03-20" "1973-03-20" "1973-03-20" "1973-03-20" "1973-03-20"
## [26426] "1973-03-20" "1989-10-21" "1989-10-21" "1979-02-26" "1979-02-26"
## [26431] "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14"
## [26436] "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14"
## [26441] "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14"
## [26446] "1989-06-14" "1989-06-14" "1989-06-14" "1989-06-14" "1978-01-25"
## [26451] "1978-01-25" "1978-01-25" "1978-01-25" "1978-01-25" "1978-01-25"
## [26456] "1978-01-25" "1978-03-18" "1978-03-18" "1978-03-18" "1978-03-18"
## [26461] "1978-03-18" "1978-03-18" "1978-03-18" "1978-03-18" "1978-03-18"
## [26466] "1981-07-12" "1981-07-12" "1981-07-12" "1981-07-12" "1981-07-12"
## [26471] "1981-07-12" "1981-07-12" "1981-07-12" "1981-07-12" "1981-07-12"
## [26476] "1981-07-12" "1992-06-05" "1992-06-05" "1992-06-05" "1992-06-05"
## [26481] "1992-06-05" "1992-06-05" "1992-06-05" "1992-06-05" "1985-09-23"
## [26486] "1985-09-23" "1985-09-23" "1985-09-23" "1985-09-23" "1985-12-22"
## [26491] "1985-12-22" "1983-11-29" "1983-11-29" "1983-11-29" "1983-11-29"
## [26496] "1983-11-29" "1974-09-03" "1974-09-03" "1978-04-27" "1978-04-27"
## [26501] "1978-04-27" "1978-04-27" "1978-04-27" "1978-04-27" "1978-04-27"
## [26506] "1978-04-27" "1978-04-27" "1978-04-27" "1978-04-27" "1978-04-27"
## [26511] "1978-04-27" "1978-04-27" "1978-04-27" "1978-04-27" "1978-04-27"
## [26516] "1978-04-27" "1978-04-27" "1978-04-27" "1978-04-27" "1972-12-27"
## [26521] "1972-12-27" "1979-05-18" "1979-05-18" "1979-05-18" "1979-05-18"
## [26526] "1979-05-18" "1979-05-18" "1979-05-18" "1979-05-18" "1979-05-18"
## [26531] "1979-05-18" "1979-05-18" "1979-05-18" "1979-05-18" "1979-05-18"
## [26536] "1976-04-26" "1976-04-26" "1976-04-26" "1976-04-26" "1976-04-26"
## [26541] "1976-04-26" "1976-04-26" "1976-04-26" "1976-04-26" "1976-04-26"
## [26546] "1976-04-26" "1976-04-26" "1976-04-26" "1976-04-26" "1976-04-26"
## [26551] "1976-04-26" "1976-04-26" "1976-04-26" "1976-04-26" "1976-04-26"
## [26556] "1976-04-26" "1976-04-26" "1976-04-26" "1976-04-26" "1976-04-26"
## [26561] "1976-04-26" "1976-04-26" "1975-05-05" "1975-05-05" "1975-05-05"
## [26566] "1975-05-05" "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19"
## [26571] "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19"
## [26576] "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19"
## [26581] "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19"
## [26586] "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19"
## [26591] "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19" "1992-08-19"
## [26596] "1992-08-19" "1992-08-19" "1970-08-23" "1970-08-23" "1985-07-01"
## [26601] "1985-07-01" "1985-07-01" "1985-07-01" "1985-07-01" "1985-07-01"
## [26606] "1985-07-01" "1985-07-01" "1985-07-01" "1985-07-01" "1985-07-01"
## [26611] "1984-08-28" "1984-08-28" "1984-08-28" "1984-08-28" "1984-08-28"
## [26616] "1984-08-28" "1984-08-28" "1984-08-28" "1984-08-28" "1992-09-20"
## [26621] "1992-09-20" "1992-09-20" "1992-09-20" "1992-09-20" "1992-09-20"
## [26626] "1992-09-20" "1992-09-20" "1992-09-20" "1992-09-20" "1992-09-20"
## [26631] "1975-04-06" "1975-04-06" "1975-04-06" "1975-04-06" "1975-04-06"
## [26636] "1975-04-06" "1975-04-06" "1975-04-06" "1975-04-06" "1975-04-06"
## [26641] "1976-09-06" "1976-09-06" "1976-09-06" "1976-09-06" "1976-09-06"
## [26646] "1976-09-06" "1976-09-06" "1976-09-06" "1976-09-06" "1976-09-06"
## [26651] "1976-09-06" "1976-09-06" "1976-09-06" "1976-09-06" "1976-09-06"
## [26656] "1979-05-14" "1979-05-14" "1979-05-14" "1979-05-14" "1979-05-14"
## [26661] "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29"
## [26666] "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29"
## [26671] "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29"
## [26676] "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29" "1985-04-13"
## [26681] "1985-04-13" "1985-04-13" "1985-04-13" "1985-04-13" "1985-04-13"
## [26686] "1990-12-14" "1990-12-14" "1990-12-14" "1990-12-14" "1990-12-14"
## [26691] "1990-12-14" "1990-12-14" "1990-12-14" "1990-12-14" "1991-04-23"
## [26696] "1991-04-23" "1991-04-23" "1991-04-23" "1991-04-23" "1991-04-23"
## [26701] "1991-04-23" "1991-04-23" "1977-05-28" "1977-05-28" "1977-05-28"
## [26706] "1977-05-28" "1977-05-28" "1977-05-28" "1977-05-28" "1977-05-28"
## [26711] "1977-05-28" "1977-05-28" "1977-05-28" "1977-05-28" "1977-05-28"
## [26716] "1977-05-28" "1977-05-28" "1977-05-28" "1977-05-28" "1977-12-24"
## [26721] "1977-12-24" "1977-12-24" "1977-12-24" "1977-12-24" "1977-12-24"
## [26726] "1977-12-24" "1977-12-24" "1977-12-24" "1977-12-24" "1977-12-24"
## [26731] "1977-12-24" "1990-12-05" "1990-12-05" "1990-12-05" "1990-12-05"
## [26736] "1990-12-05" "1990-12-05" "1990-12-05" "1990-12-05" "1990-12-05"
## [26741] "1990-12-05" "1990-12-05" "1992-12-17" "1992-12-17" "1992-12-17"
## [26746] "1992-12-17" "1992-12-17" "1992-12-17" "1992-12-17" "1987-11-17"
## [26751] "1987-11-17" "1987-11-17" "1987-11-17" "1987-11-17" "1987-11-17"
## [26756] "1987-11-17" "1987-11-17" "1987-11-17" "1971-01-22" "1971-01-22"
## [26761] "1971-01-22" "1971-01-22" "1970-03-08" "1970-03-08" "1970-03-08"
## [26766] "1970-03-08" "1970-03-08" "1970-03-08" "1988-03-23" "1988-03-23"
## [26771] "1988-03-23" "1971-08-22" "1971-08-22" "1971-08-22" "1971-08-22"
## [26776] "1971-08-22" "1971-08-22" "1971-08-22" "1971-08-22" "1971-08-22"
## [26781] "1971-08-22" "1971-08-22" "1971-08-22" "1971-08-22" "1971-08-22"
## [26786] "1971-08-22" "1988-11-25" "1988-11-25" "1988-11-25" "1988-11-25"
## [26791] "1988-11-25" "1988-11-25" "1988-11-25" "1988-11-25" "1984-03-13"
## [26796] "1984-03-13" "1984-03-13" "1984-03-13" "1984-03-13" "1984-03-13"
## [26801] "1984-03-13" "1984-03-13" "1984-03-13" "1984-03-13" "1984-03-13"
## [26806] "1984-03-13" "1984-03-13" "1984-03-13" "1984-03-13" "1984-03-13"
## [26811] "1984-03-13" "1984-03-13" "1984-03-13" "1984-03-13" "1984-03-13"
## [26816] "1984-01-19" "1984-01-19" "1984-01-19" "1984-01-19" "1984-01-19"
## [26821] "1984-01-19" "1986-08-12" "1986-08-12" "1979-11-02" "1979-11-02"
## [26826] "1979-11-02" "1979-11-02" "1979-11-02" "1979-11-02" "1979-11-02"
## [26831] "1979-11-02" "1979-11-02" "1979-11-02" "1979-11-02" "1979-11-02"
## [26836] "1979-11-02" "1979-11-02" "1979-11-02" "1979-11-02" "1991-01-16"
## [26841] "1991-01-16" "1991-01-16" "1980-07-03" "1980-07-03" "1980-07-03"
## [26846] "1980-07-03" "1980-07-03" "1980-07-03" "1980-07-03" "1980-07-03"
## [26851] "1980-07-03" "1980-07-03" "1980-07-03" "1980-07-03" "1980-07-03"
## [26856] "1980-07-03" "1980-07-03" "1980-07-03" "1980-07-03" "1980-07-03"
## [26861] "1991-01-17" "1991-01-17" "1991-01-17" "1991-01-17" "1976-05-28"
## [26866] "1976-05-28" "1976-05-28" "1990-02-08" "1990-02-08" "1990-02-08"
## [26871] "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08" "1990-02-08"
## [26876] "1990-02-08" "1990-02-08" "1980-03-10" "1980-03-10" "1980-03-10"
## [26881] "1980-03-10" "1980-03-10" "1980-03-10" "1980-03-10" "1980-03-10"
## [26886] "1980-03-10" "1980-03-10" "1980-03-10" "1980-03-10" "1980-03-10"
## [26891] "1980-03-10" "1986-02-28" "1986-02-28" "1986-02-28" "1986-02-28"
## [26896] "1986-02-28" "1986-02-28" "1986-02-28" "1986-02-28" "1986-02-28"
## [26901] "1986-02-28" "1986-02-28" "1986-02-28" "1986-02-28" "1984-04-11"
## [26906] "1984-04-11" "1984-04-11" "1984-04-11" "1984-04-11" "1984-04-11"
## [26911] "1984-04-11" "1987-03-26" "1987-03-26" "1987-03-26" "1987-03-26"
## [26916] "1987-03-26" "1987-03-26" "1987-03-26" "1987-03-26" "1987-03-26"
## [26921] "1987-03-26" "1987-03-26" "1987-03-26" "1990-11-28" "1990-11-28"
## [26926] "1990-11-28" "1990-11-28" "1990-11-28" "1990-11-28" "1990-11-28"
## [26931] "1990-11-28" "1990-11-28" "1990-11-28" "1990-11-28" "1990-11-28"
## [26936] "1990-11-28" "1990-11-28" "1990-11-28" "1990-11-28" "1990-11-28"
## [26941] "1990-11-28" "1990-11-28" "1990-11-28" "1990-11-28" "1974-07-24"
## [26946] "1974-07-24" "1974-07-24" "1974-07-24" "1974-07-24" "1974-07-24"
## [26951] "1974-07-24" "1974-07-24" "1974-07-24" "1974-07-24" "1974-07-24"
## [26956] "1974-07-24" "1974-07-24" "1974-07-24" "1974-07-24" "1974-07-24"
## [26961] "1974-07-24" "1988-12-06" "1988-12-06" "1988-12-06" "1979-05-17"
## [26966] "1979-05-17" "1986-09-24" "1986-09-24" "1986-09-24" "1986-09-24"
## [26971] "1986-09-24" "1986-09-24" "1986-09-24" "1986-09-24" "1986-09-24"
## [26976] "1986-09-24" "1986-09-24" "1986-09-24" "1986-09-24" "1986-09-24"
## [26981] "1986-09-24" "1986-09-24" "1986-09-24" "1986-09-24" "1986-09-24"
## [26986] "1986-09-24" "1989-12-24" "1989-12-24" "1989-12-24" "1989-12-24"
## [26991] "1989-12-24" "1989-12-24" "1989-12-24" "1989-12-24" "1989-12-24"
## [26996] "1989-12-24" "1989-12-24" "1989-12-24" "1989-12-24" "1989-12-24"
## [27001] "1989-12-24" "1989-12-24" "1989-12-24" "1989-12-24" "1989-12-24"
## [27006] "1973-04-03" "1973-04-03" "1973-04-03" "1973-04-03" "1973-04-03"
## [27011] "1973-04-03" "1973-04-03" "1973-04-03" "1973-04-03" "1973-04-03"
## [27016] "1973-04-03" "1973-04-03" "1973-04-03" "1973-04-03" "1973-04-03"
## [27021] "1973-04-03" "1980-02-14" "1980-02-14" "1980-02-14" "1980-02-14"
## [27026] "1980-02-14" "1980-02-14" "1980-02-14" "1980-02-14" "1977-08-11"
## [27031] "1977-08-11" "1977-08-11" "1977-08-11" "1977-08-11" "1977-08-11"
## [27036] "1977-08-11" "1977-08-11" "1977-08-11" "1977-08-11" "1977-08-11"
## [27041] "1977-08-11" "1982-03-28" "1982-03-28" "1982-03-28" "1982-03-28"
## [27046] "1982-03-28" "1982-03-28" "1982-03-28" "1982-03-28" "1982-03-28"
## [27051] "1982-03-28" "1982-03-28" "1982-03-28" "1982-03-28" "1982-03-28"
## [27056] "1982-03-28" "1980-12-03" "1980-12-03" "1980-12-03" "1980-12-03"
## [27061] "1980-12-03" "1980-12-03" "1980-12-03" "1980-12-03" "1992-02-07"
## [27066] "1992-02-07" "1971-06-21" "1971-06-21" "1971-06-21" "1971-06-21"
## [27071] "1971-06-21" "1984-05-03" "1984-05-03" "1984-05-03" "1984-05-03"
## [27076] "1984-05-03" "1984-05-03" "1984-05-03" "1984-05-03" "1984-05-03"
## [27081] "1984-05-03" "1984-05-03" "1984-05-03" "1984-05-03" "1984-05-03"
## [27086] "1984-05-03" "1980-05-12" "1980-05-12" "1980-05-12" "1980-05-12"
## [27091] "1980-05-12" "1980-05-12" "1980-05-12" "1980-05-12" "1980-05-12"
## [27096] "1980-05-12" "1980-05-12" "1980-05-12" "1980-05-12" "1980-05-12"
## [27101] "1980-05-12" "1980-05-12" "1980-05-12" "1980-05-12" "1980-05-12"
## [27106] "1982-11-10" "1982-11-10" "1982-11-10" "1973-06-10" "1973-06-10"
## [27111] "1973-06-10" "1973-06-10" "1981-06-08" "1981-06-08" "1981-06-08"
## [27116] "1981-06-08" "1981-06-08" "1981-06-08" "1981-06-08" "1981-06-08"
## [27121] "1981-06-08" "1987-06-09" "1987-06-09" "1987-06-09" "1990-03-21"
## [27126] "1990-03-21" "1990-03-21" "1990-03-21" "1990-03-21" "1990-03-21"
## [27131] "1990-03-21" "1990-03-21" "1990-03-21" "1990-03-21" "1989-02-17"
## [27136] "1989-02-17" "1989-02-17" "1979-07-11" "1979-07-11" "1979-07-11"
## [27141] "1979-07-11" "1979-07-11" "1979-07-11" "1979-07-11" "1979-07-11"
## [27146] "1979-07-11" "1979-07-11" "1979-07-11" "1979-07-11" "1979-07-11"
## [27151] "1979-07-11" "1979-07-11" "1979-07-11" "1979-07-11" "1979-07-11"
## [27156] "1979-07-11" "1989-12-24" "1989-12-24" "1989-12-24" "1989-12-24"
## [27161] "1989-12-24" "1989-12-24" "1983-07-07" "1983-07-07" "1978-10-05"
## [27166] "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05"
## [27171] "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05"
## [27176] "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05" "1978-10-05"
## [27181] "1989-11-29" "1989-11-29" "1989-11-29" "1989-11-29" "1989-11-29"
## [27186] "1989-11-29" "1989-11-29" "1989-11-29" "1989-11-29" "1989-11-29"
## [27191] "1989-11-29" "1989-11-29" "1989-11-29" "1989-11-29" "1989-11-29"
## [27196] "1989-11-29" "1989-11-29" "1989-11-29" "1989-11-29" "1989-11-29"
## [27201] "1989-11-29" "1989-11-29" "1989-11-29" "1989-11-29" "1984-10-13"
## [27206] "1984-10-13" "1984-10-13" "1978-08-10" "1978-08-10" "1978-08-10"
## [27211] "1978-08-10" "1978-08-10" "1978-08-10" "1978-08-10" "1978-08-10"
## [27216] "1977-10-24" "1977-10-24" "1977-10-24" "1977-10-24" "1977-10-24"
## [27221] "1977-10-24" "1988-11-12" "1988-11-12" "1988-11-12" "1988-11-12"
## [27226] "1988-11-12" "1988-11-12" "1988-11-12" "1988-11-12" "1988-11-12"
## [27231] "1988-11-12" "1988-11-12" "1988-11-12" "1988-11-12" "1988-11-12"
## [27236] "1988-11-12" "1973-04-24" "1973-04-24" "1973-04-24" "1973-04-24"
## [27241] "1973-04-24" "1973-04-24" "1973-04-24" "1973-04-24" "1973-04-24"
## [27246] "1973-04-24" "1973-04-24" "1973-04-24" "1973-04-24" "1973-04-24"
## [27251] "1973-04-24" "1973-04-24" "1973-04-24" "1971-08-19" "1971-08-19"
## [27256] "1971-08-19" "1971-08-19" "1971-08-19" "1992-09-02" "1992-09-02"
## [27261] "1992-09-02" "1992-09-02" "1992-09-02" "1992-09-02" "1992-09-02"
## [27266] "1992-09-02" "1980-05-05" "1980-05-05" "1980-05-05" "1980-05-05"
## [27271] "1989-09-29" "1989-09-29" "1989-09-29" "1989-09-29" "1989-09-29"
## [27276] "1989-09-29" "1989-09-29" "1989-09-29" "1989-09-29" "1989-09-29"
## [27281] "1989-09-29" "1983-04-28" "1983-04-28" "1983-04-28" "1983-04-28"
## [27286] "1983-04-28" "1983-04-28" "1983-04-28" "1983-04-28" "1988-05-08"
## [27291] "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08"
## [27296] "1988-05-08" "1988-05-08" "1988-05-08" "1988-05-08" "1972-04-17"
## [27301] "1972-04-17" "1972-04-17" "1972-04-17" "1972-04-17" "1972-04-17"
## [27306] "1972-04-17" "1972-04-17" "1972-04-17" "1972-04-17" "1972-04-17"
## [27311] "1985-03-20" "1985-03-20" "1985-03-20" "1985-03-20" "1985-03-20"
## [27316] "1985-03-20" "1985-03-20" "1985-03-20" "1985-03-20" "1985-03-20"
## [27321] "1985-03-20" "1985-03-20" "1985-03-20" "1985-03-20" "1985-03-20"
## [27326] "1992-06-23" "1992-06-23" "1992-06-23" "1992-06-23" "1992-06-23"
## [27331] "1992-06-23" "1992-06-23" "1992-06-23" "1992-06-23" "1992-06-23"
## [27336] "1992-06-23" "1992-06-23" "1992-06-23" "1992-06-23" "1992-06-23"
## [27341] "1992-06-23" "1992-03-28" "1992-03-28" "1992-03-28" "1984-12-01"
## [27346] "1984-12-01" "1984-12-01" "1984-12-01" "1984-12-01" "1984-12-01"
## [27351] "1984-12-01" "1984-12-01" "1986-04-25" "1986-04-25" "1986-04-25"
## [27356] "1986-04-25" "1986-04-25" "1973-11-04" "1973-11-04" "1973-11-04"
## [27361] "1973-11-04" "1973-11-04" "1973-11-04" "1973-11-04" "1973-11-04"
## [27366] "1973-11-04" "1973-11-04" "1973-11-04" "1983-07-22" "1983-07-22"
## [27371] "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22"
## [27376] "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22" "1983-07-22"
## [27381] "1973-07-17" "1973-07-17" "1973-07-17" "1973-07-17" "1973-07-17"
## [27386] "1973-07-17" "1973-07-17" "1973-07-17" "1973-07-17" "1977-11-14"
## [27391] "1977-11-14" "1990-06-07" "1990-06-07" "1990-06-07" "1990-06-07"
## [27396] "1990-06-07" "1990-06-07" "1990-06-07" "1990-06-07" "1990-06-07"
## [27401] "1990-06-07" "1990-06-07" "1981-09-06" "1981-09-06" "1981-09-06"
## [27406] "1981-09-06" "1992-11-27" "1992-11-27" "1992-11-27" "1992-11-27"
## [27411] "1992-11-27" "1992-11-27" "1992-11-27" "1992-11-27" "1992-11-27"
## [27416] "1978-02-24" "1978-02-24" "1978-02-24" "1978-02-24" "1971-02-08"
## [27421] "1971-02-08" "1971-02-08" "1971-02-08" "1971-02-08" "1971-02-08"
## [27426] "1975-08-24" "1975-08-24" "1975-08-24" "1975-08-24" "1975-08-24"
## [27431] "1975-08-24" "1975-08-24" "1975-08-24" "1975-08-24" "1975-08-24"
## [27436] "1975-08-24" "1975-08-24" "1975-08-24" "1975-08-24" "1975-08-24"
## [27441] "1975-08-24" "1975-08-24" "1975-08-24" "1975-08-24" "1979-04-16"
## [27446] "1979-04-16" "1979-04-16" "1979-04-16" "1971-03-11" "1971-03-11"
## [27451] "1971-03-11" "1971-03-11" "1971-03-11" "1971-03-11" "1971-03-11"
## [27456] "1971-03-11" "1971-03-11" "1971-03-11" "1971-03-11" "1971-03-11"
## [27461] "1971-03-11" "1971-03-11" "1971-03-11" "1971-03-11" "1971-03-11"
## [27466] "1971-03-11" "1971-03-11" "1971-03-11" "1971-03-11" "1971-03-11"
## [27471] "1988-08-18" "1988-08-18" "1988-08-18" "1988-08-18" "1988-08-18"
## [27476] "1988-08-18" "1980-06-05" "1980-06-05" "1980-06-05" "1980-06-05"
## [27481] "1980-06-05" "1980-06-05" "1980-06-05" "1978-04-20" "1978-04-20"
## [27486] "1978-04-20" "1978-04-20" "1978-04-20" "1985-10-15" "1985-10-15"
## [27491] "1985-10-15" "1988-05-12" "1988-05-12" "1988-05-12" "1988-05-12"
## [27496] "1988-05-12" "1988-05-12" "1988-05-12" "1988-05-12" "1988-05-12"
## [27501] "1988-05-12" "1988-05-12" "1988-05-12" "1988-05-12" "1971-06-24"
## [27506] "1971-06-24" "1971-06-24" "1971-06-24" "1971-06-24" "1971-06-24"
## [27511] "1971-06-24" "1971-06-24" "1971-06-24" "1971-06-24" "1971-06-24"
## [27516] "1971-06-24" "1986-05-12" "1986-05-12" "1986-05-12" "1986-05-12"
## [27521] "1986-05-12" "1986-05-12" "1977-06-21" "1977-06-21" "1977-06-21"
## [27526] "1977-06-21" "1977-06-21" "1977-06-21" "1977-06-21" "1975-11-04"
## [27531] "1975-11-04" "1975-11-04" "1975-11-04" "1975-11-04" "1975-11-04"
## [27536] "1975-11-04" "1975-11-04" "1975-11-04" "1975-11-04" "1975-11-04"
## [27541] "1975-11-04" "1975-11-04" "1991-06-19" "1991-06-19" "1991-06-19"
## [27546] "1991-06-19" "1991-06-19" "1978-11-07" "1978-11-07" "1978-11-07"
## [27551] "1978-11-07" "1978-11-07" "1978-11-07" "1978-11-07" "1978-11-07"
## [27556] "1978-11-07" "1978-11-07" "1978-11-07" "1978-11-07" "1978-11-07"
## [27561] "1978-11-07" "1978-11-07" "1978-11-07" "1978-11-07" "1970-10-03"
## [27566] "1970-10-03" "1970-10-03" "1970-10-03" "1970-10-03" "1970-10-03"
## [27571] "1970-10-03" "1970-10-03" "1970-10-03" "1970-10-03" "1970-10-03"
## [27576] "1970-10-03" "1970-10-03" "1970-10-03" "1970-10-03" "1982-09-17"
## [27581] "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17"
## [27586] "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17"
## [27591] "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17" "1974-09-19"
## [27596] "1974-09-19" "1974-09-19" "1974-09-19" "1974-09-19" "1974-09-19"
## [27601] "1970-03-26" "1970-03-26" "1970-03-26" "1970-03-26" "1970-03-26"
## [27606] "1977-06-13" "1977-06-13" "1977-06-13" "1977-06-13" "1977-06-13"
## [27611] "1977-06-13" "1977-06-13" "1977-06-13" "1977-06-13" "1977-06-13"
## [27616] "1977-06-13" "1977-06-13" "1977-06-13" "1977-06-13" "1977-06-13"
## [27621] "1977-06-13" "1977-06-13" "1983-09-10" "1983-09-10" "1983-09-10"
## [27626] "1983-09-10" "1990-09-16" "1990-09-16" "1990-09-16" "1990-09-16"
## [27631] "1990-09-16" "1990-09-16" "1982-05-14" "1982-05-14" "1982-05-14"
## [27636] "1982-05-14" "1971-12-11" "1971-12-11" "1971-12-11" "1971-12-11"
## [27641] "1971-12-11" "1971-12-11" "1971-12-11" "1971-12-11" "1971-12-11"
## [27646] "1971-12-11" "1992-06-25" "1992-06-25" "1992-06-25" "1992-06-25"
## [27651] "1992-06-25" "1992-06-25" "1992-06-25" "1992-06-25" "1992-06-25"
## [27656] "1992-06-25" "1976-01-06" "1976-01-06" "1976-01-06" "1976-01-06"
## [27661] "1976-01-06" "1976-01-06" "1976-01-06" "1976-01-06" "1976-01-06"
## [27666] "1980-12-06" "1980-12-06" "1980-12-06" "1980-12-06" "1980-12-06"
## [27671] "1986-06-14" "1986-06-14" "1986-06-14" "1972-03-11" "1972-03-11"
## [27676] "1972-03-11" "1972-03-11" "1984-05-12" "1984-05-12" "1984-11-10"
## [27681] "1984-11-10" "1984-11-10" "1984-11-10" "1984-11-10" "1983-02-18"
## [27686] "1983-02-18" "1983-02-18" "1983-02-18" "1983-02-18" "1987-12-29"
## [27691] "1987-12-29" "1987-12-29" "1987-12-29" "1987-12-29" "1987-12-29"
## [27696] "1987-12-29" "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15"
## [27701] "1972-06-15" "1970-10-26" "1970-10-26" "1970-10-26" "1970-10-26"
## [27706] "1970-10-26" "1970-10-26" "1970-10-26" "1970-10-26" "1970-10-26"
## [27711] "1970-10-26" "1970-10-26" "1970-10-26" "1970-10-26" "1970-10-26"
## [27716] "1970-10-26" "1970-10-26" "1970-10-26" "1970-10-26" "1970-10-26"
## [27721] "1970-10-26" "1970-10-26" "1970-10-26" "1982-01-15" "1982-01-15"
## [27726] "1982-01-15" "1982-01-15" "1982-01-15" "1982-01-15" "1982-01-15"
## [27731] "1982-01-15" "1982-01-15" "1982-01-15" "1982-01-15" "1975-12-08"
## [27736] "1975-12-08" "1975-12-08" "1975-12-08" "1977-04-12" "1977-04-12"
## [27741] "1977-04-12" "1977-04-12" "1977-04-12" "1972-09-06" "1972-09-06"
## [27746] "1972-09-06" "1972-09-06" "1972-09-06" "1972-09-06" "1972-09-06"
## [27751] "1972-09-06" "1972-09-06" "1972-09-06" "1972-09-06" "1972-09-06"
## [27756] "1972-09-06" "1977-03-05" "1977-03-05" "1977-03-05" "1977-03-05"
## [27761] "1977-03-05" "1974-03-14" "1974-03-14" "1974-03-14" "1974-03-14"
## [27766] "1974-03-14" "1974-03-14" "1974-03-14" "1974-03-14" "1974-03-14"
## [27771] "1977-12-06" "1977-12-06" "1977-12-06" "1977-12-06" "1977-12-06"
## [27776] "1977-12-06" "1977-12-06" "1977-12-06" "1977-12-06" "1982-04-05"
## [27781] "1982-04-05" "1982-04-05" "1982-04-05" "1982-04-05" "1982-04-05"
## [27786] "1982-04-05" "1982-04-05" "1982-04-05" "1982-04-05" "1982-04-05"
## [27791] "1982-04-05" "1982-04-05" "1982-04-05" "1982-04-05" "1989-09-04"
## [27796] "1989-09-04" "1989-09-04" "1989-09-04" "1989-09-04" "1989-09-04"
## [27801] "1989-09-04" "1989-09-04" "1989-09-04" "1989-09-04" "1989-09-04"
## [27806] "1989-09-04" "1989-09-04" "1989-09-04" "1989-09-04" "1989-09-04"
## [27811] "1989-09-04" "1989-09-04" "1989-09-04" "1983-11-06" "1983-11-06"
## [27816] "1983-11-06" "1986-05-14" "1986-05-14" "1986-05-14" "1986-05-14"
## [27821] "1986-05-14" "1986-05-14" "1971-02-16" "1971-02-16" "1971-02-16"
## [27826] "1971-02-16" "1971-02-16" "1971-02-16" "1971-02-16" "1971-02-16"
## [27831] "1971-02-16" "1971-02-16" "1971-02-16" "1971-02-16" "1971-02-16"
## [27836] "1971-02-16" "1971-02-16" "1971-02-16" "1985-02-10" "1985-02-10"
## [27841] "1985-02-10" "1976-08-10" "1976-08-10" "1976-08-10" "1976-08-10"
## [27846] "1976-08-10" "1976-08-10" "1976-08-10" "1976-08-10" "1983-01-26"
## [27851] "1983-01-26" "1983-01-26" "1983-01-26" "1983-01-26" "1983-08-22"
## [27856] "1983-08-22" "1983-08-22" "1983-08-22" "1979-11-24" "1979-11-24"
## [27861] "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24"
## [27866] "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24"
## [27871] "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24" "1979-11-24"
## [27876] "1979-11-24" "1979-11-24" "1979-11-24" "1976-04-28" "1976-04-28"
## [27881] "1976-04-28" "1976-04-28" "1976-04-28" "1976-04-28" "1976-04-28"
## [27886] "1976-04-28" "1978-11-02" "1978-11-02" "1990-04-02" "1990-04-02"
## [27891] "1990-04-02" "1990-04-02" "1970-04-02" "1970-04-02" "1970-04-02"
## [27896] "1970-04-02" "1970-04-02" "1970-04-02" "1970-04-02" "1970-04-02"
## [27901] "1970-04-02" "1970-04-02" "1984-03-08" "1984-03-08" "1984-03-08"
## [27906] "1984-03-08" "1984-03-08" "1984-03-08" "1984-03-08" "1982-12-22"
## [27911] "1982-12-22" "1982-12-22" "1974-05-03" "1974-05-03" "1974-05-03"
## [27916] "1974-05-03" "1974-05-03" "1990-08-09" "1990-08-09" "1990-08-09"
## [27921] "1990-08-09" "1990-08-09" "1975-05-10" "1975-05-10" "1975-05-10"
## [27926] "1975-05-10" "1975-05-10" "1975-05-10" "1975-05-10" "1975-05-10"
## [27931] "1975-05-10" "1975-05-10" "1975-05-10" "1975-05-10" "1975-05-10"
## [27936] "1975-05-10" "1975-05-10" "1975-05-10" "1975-05-10" "1975-05-10"
## [27941] "1975-05-10" "1975-05-10" "1975-05-10" "1975-05-10" "1973-12-24"
## [27946] "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24"
## [27951] "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24"
## [27956] "1973-12-24" "1989-06-12" "1989-06-12" "1989-06-12" "1989-06-12"
## [27961] "1989-06-12" "1989-06-12" "1989-06-12" "1989-06-12" "1988-04-27"
## [27966] "1988-04-27" "1988-04-27" "1971-03-19" "1971-03-19" "1971-03-19"
## [27971] "1972-12-22" "1972-12-22" "1971-12-03" "1971-12-03" "1971-12-03"
## [27976] "1971-12-03" "1971-12-03" "1971-12-03" "1971-12-03" "1971-12-03"
## [27981] "1971-12-03" "1970-09-22" "1970-09-22" "1970-09-22" "1970-09-22"
## [27986] "1970-09-22" "1970-09-22" "1970-09-22" "1970-09-22" "1970-09-22"
## [27991] "1970-09-22" "1970-09-22" "1970-09-22" "1970-09-22" "1970-06-09"
## [27996] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09"
## [28001] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1977-03-14"
## [28006] "1977-03-14" "1978-05-07" "1978-05-07" "1978-05-07" "1978-05-07"
## [28011] "1978-05-07" "1978-05-07" "1985-02-14" "1985-02-14" "1989-07-28"
## [28016] "1989-07-28" "1989-07-28" "1989-07-28" "1989-07-28" "1989-07-28"
## [28021] "1989-07-28" "1989-07-28" "1979-02-06" "1979-02-06" "1979-02-06"
## [28026] "1979-02-06" "1979-02-06" "1979-02-06" "1979-02-06" "1979-02-06"
## [28031] "1979-02-06" "1979-02-06" "1979-02-06" "1970-02-20" "1970-02-20"
## [28036] "1970-02-20" "1970-02-20" "1970-02-20" "1991-04-11" "1991-04-11"
## [28041] "1991-04-11" "1991-04-11" "1991-04-11" "1991-04-11" "1991-04-11"
## [28046] "1991-04-11" "1991-04-11" "1991-04-11" "1991-04-11" "1982-09-02"
## [28051] "1982-09-02" "1982-09-02" "1982-09-02" "1982-09-02" "1982-09-02"
## [28056] "1982-09-02" "1982-09-02" "1982-09-02" "1982-09-02" "1982-09-02"
## [28061] "1982-09-02" "1982-09-02" "1982-09-02" "1982-09-02" "1982-09-02"
## [28066] "1983-09-15" "1983-09-15" "1983-09-15" "1983-09-15" "1983-09-15"
## [28071] "1983-09-15" "1983-09-15" "1983-09-15" "1983-09-15" "1983-09-15"
## [28076] "1983-09-15" "1983-09-15" "1983-09-15" "1983-09-15" "1983-05-01"
## [28081] "1983-05-01" "1983-05-01" "1971-04-29" "1971-04-29" "1971-04-29"
## [28086] "1971-04-29" "1971-04-29" "1986-12-02" "1986-12-02" "1986-12-02"
## [28091] "1986-12-02" "1986-12-02" "1986-12-02" "1986-12-02" "1986-12-02"
## [28096] "1986-12-02" "1986-12-02" "1986-12-02" "1988-05-19" "1988-05-19"
## [28101] "1992-12-01" "1992-12-01" "1974-06-22" "1974-06-22" "1974-06-22"
## [28106] "1974-06-22" "1974-06-22" "1974-06-22" "1974-06-22" "1974-06-22"
## [28111] "1974-06-22" "1974-06-22" "1981-07-27" "1981-07-27" "1975-05-07"
## [28116] "1975-05-07" "1975-05-07" "1975-05-07" "1975-05-07" "1975-05-07"
## [28121] "1975-05-07" "1975-05-07" "1975-05-07" "1975-05-07" "1975-05-07"
## [28126] "1975-05-07" "1975-05-07" "1975-05-07" "1975-05-07" "1975-05-07"
## [28131] "1975-05-07" "1975-05-07" "1975-05-07" "1973-02-20" "1973-02-20"
## [28136] "1981-10-13" "1981-10-13" "1981-10-13" "1981-10-13" "1981-10-13"
## [28141] "1981-10-13" "1981-10-13" "1981-10-13" "1981-10-13" "1981-10-13"
## [28146] "1981-10-13" "1981-10-13" "1981-10-13" "1981-10-13" "1978-11-08"
## [28151] "1978-11-08" "1978-11-08" "1978-11-08" "1978-11-08" "1978-11-08"
## [28156] "1978-11-08" "1978-11-08" "1978-11-08" "1978-11-08" "1978-11-08"
## [28161] "1978-11-08" "1978-11-08" "1975-06-28" "1975-06-28" "1975-06-28"
## [28166] "1975-06-28" "1975-06-28" "1975-06-28" "1983-07-07" "1983-07-07"
## [28171] "1983-07-07" "1983-07-07" "1983-07-07" "1983-07-07" "1983-07-07"
## [28176] "1983-07-07" "1983-07-07" "1983-07-07" "1983-07-07" "1983-07-07"
## [28181] "1973-07-03" "1973-07-03" "1973-07-03" "1973-07-03" "1973-07-03"
## [28186] "1973-07-03" "1973-07-03" "1972-02-15" "1972-02-15" "1972-02-15"
## [28191] "1972-02-15" "1972-02-15" "1972-02-15" "1972-02-15" "1972-02-15"
## [28196] "1990-11-16" "1990-11-16" "1990-11-16" "1990-11-16" "1990-11-16"
## [28201] "1978-06-07" "1978-06-07" "1978-06-07" "1978-06-07" "1978-06-07"
## [28206] "1991-07-22" "1991-07-22" "1991-07-22" "1991-07-22" "1991-07-22"
## [28211] "1991-07-22" "1991-07-22" "1991-07-22" "1991-07-22" "1991-07-22"
## [28216] "1991-07-22" "1991-07-22" "1991-07-22" "1991-07-22" "1979-07-12"
## [28221] "1979-07-12" "1979-07-12" "1979-07-12" "1971-10-19" "1971-10-19"
## [28226] "1971-10-19" "1971-10-19" "1971-10-19" "1971-10-19" "1971-10-19"
## [28231] "1971-10-19" "1984-04-17" "1984-04-17" "1984-04-17" "1984-04-17"
## [28236] "1984-04-17" "1984-04-17" "1984-04-17" "1984-04-17" "1984-04-17"
## [28241] "1989-05-14" "1989-05-14" "1989-05-14" "1989-05-14" "1989-05-14"
## [28246] "1972-04-29" "1972-04-29" "1972-04-29" "1972-04-29" "1972-05-18"
## [28251] "1972-05-18" "1972-05-18" "1972-05-18" "1972-01-15" "1972-01-15"
## [28256] "1972-01-15" "1972-01-15" "1972-01-15" "1977-02-23" "1977-02-23"
## [28261] "1977-02-23" "1977-02-23" "1977-02-23" "1977-02-23" "1980-10-28"
## [28266] "1980-10-28" "1980-10-28" "1980-10-28" "1980-10-28" "1980-10-28"
## [28271] "1980-10-28" "1980-10-28" "1980-10-28" "1987-09-09" "1987-09-09"
## [28276] "1987-09-09" "1987-09-09" "1987-09-09" "1987-09-09" "1987-09-09"
## [28281] "1987-09-09" "1987-09-09" "1987-09-09" "1987-09-09" "1987-09-09"
## [28286] "1987-09-09" "1987-09-09" "1987-09-09" "1987-09-09" "1987-09-09"
## [28291] "1987-09-09" "1987-09-09" "1987-09-09" "1987-09-09" "1987-09-09"
## [28296] "1987-09-09" "1987-09-09" "1987-09-09" "1987-09-09" "1987-09-09"
## [28301] "1987-09-09" "1984-04-05" "1984-04-05" "1984-04-05" "1984-04-05"
## [28306] "1984-04-05" "1984-04-05" "1984-04-05" "1984-04-05" "1984-04-05"
## [28311] "1984-04-05" "1984-04-05" "1984-04-05" "1984-04-05" "1984-04-05"
## [28316] "1984-04-05" "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15"
## [28321] "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15"
## [28326] "1989-06-04" "1989-06-04" "1989-06-04" "1989-06-04" "1989-06-04"
## [28331] "1989-06-04" "1989-06-04" "1989-06-04" "1970-09-08" "1970-09-08"
## [28336] "1970-09-08" "1970-09-08" "1970-09-08" "1970-09-08" "1970-09-08"
## [28341] "1970-09-08" "1970-09-08" "1970-09-08" "1970-09-08" "1970-09-08"
## [28346] "1970-09-08" "1990-04-22" "1990-04-22" "1990-04-22" "1981-03-16"
## [28351] "1981-03-16" "1981-03-16" "1981-03-16" "1981-03-16" "1981-03-16"
## [28356] "1976-11-12" "1976-11-12" "1976-11-12" "1976-11-12" "1971-06-25"
## [28361] "1971-06-25" "1971-06-25" "1971-06-25" "1971-06-25" "1971-06-25"
## [28366] "1971-06-25" "1971-06-25" "1971-12-27" "1971-12-27" "1971-12-27"
## [28371] "1971-12-27" "1971-12-27" "1971-12-27" "1971-12-27" "1971-12-27"
## [28376] "1971-12-27" "1971-12-27" "1971-12-27" "1971-12-27" "1971-12-27"
## [28381] "1971-12-27" "1977-05-14" "1977-05-14" "1977-05-14" "1977-05-14"
## [28386] "1977-05-14" "1977-05-14" "1977-05-14" "1977-05-14" "1977-05-14"
## [28391] "1977-05-14" "1977-05-14" "1978-05-16" "1978-05-16" "1978-05-16"
## [28396] "1978-05-16" "1978-05-16" "1974-07-10" "1974-07-10" "1974-07-10"
## [28401] "1974-07-10" "1974-07-10" "1974-07-10" "1974-07-10" "1986-12-03"
## [28406] "1986-12-03" "1986-12-03" "1986-12-03" "1986-12-03" "1987-06-24"
## [28411] "1987-06-24" "1987-06-24" "1987-06-24" "1987-06-24" "1987-06-24"
## [28416] "1987-06-24" "1987-06-24" "1987-06-24" "1987-06-24" "1987-06-24"
## [28421] "1987-06-24" "1987-06-24" "1987-06-24" "1990-05-27" "1990-05-27"
## [28426] "1990-05-27" "1985-12-25" "1985-12-25" "1985-12-25" "1985-12-25"
## [28431] "1985-12-25" "1985-12-25" "1985-12-25" "1985-12-25" "1985-12-25"
## [28436] "1985-12-25" "1985-12-25" "1978-11-17" "1978-11-17" "1975-06-14"
## [28441] "1975-06-14" "1975-06-14" "1975-06-14" "1975-06-14" "1975-06-14"
## [28446] "1984-11-05" "1984-11-05" "1984-11-05" "1984-11-05" "1984-11-05"
## [28451] "1984-11-05" "1984-11-05" "1984-11-05" "1984-11-05" "1984-11-05"
## [28456] "1984-11-05" "1973-10-04" "1973-10-04" "1971-01-10" "1971-01-10"
## [28461] "1971-01-10" "1971-01-10" "1971-01-10" "1979-06-29" "1979-06-29"
## [28466] "1979-06-29" "1979-06-29" "1979-06-29" "1979-06-29" "1979-06-29"
## [28471] "1979-06-29" "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24"
## [28476] "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24"
## [28481] "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24"
## [28486] "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24" "1987-03-09"
## [28491] "1987-03-09" "1987-03-09" "1987-03-09" "1987-03-09" "1987-03-09"
## [28496] "1987-03-09" "1987-03-09" "1987-03-09" "1987-03-09" "1987-03-09"
## [28501] "1987-03-09" "1987-03-09" "1987-03-09" "1987-03-09" "1987-03-09"
## [28506] "1987-03-09" "1987-03-09" "1987-11-24" "1987-11-24" "1987-11-24"
## [28511] "1987-11-24" "1987-11-24" "1987-11-24" "1991-04-10" "1991-04-10"
## [28516] "1991-04-10" "1991-04-10" "1991-04-10" "1991-04-10" "1991-04-10"
## [28521] "1991-04-10" "1991-04-10" "1991-04-10" "1991-04-10" "1991-04-10"
## [28526] "1991-04-10" "1991-04-10" "1991-04-10" "1991-04-10" "1991-04-10"
## [28531] "1991-04-10" "1974-10-19" "1974-10-19" "1976-11-24" "1976-11-24"
## [28536] "1976-11-24" "1976-11-24" "1976-11-24" "1976-11-24" "1976-11-24"
## [28541] "1988-10-27" "1988-10-27" "1988-10-27" "1992-12-02" "1992-12-02"
## [28546] "1992-12-02" "1992-12-02" "1992-12-02" "1992-12-02" "1988-10-13"
## [28551] "1988-10-13" "1988-10-13" "1988-10-13" "1988-10-13" "1988-10-13"
## [28556] "1988-10-13" "1988-10-13" "1988-10-13" "1988-10-13" "1988-10-13"
## [28561] "1988-10-13" "1988-10-13" "1988-10-13" "1988-10-13" "1992-10-28"
## [28566] "1992-10-28" "1992-10-28" "1992-10-28" "1992-10-28" "1992-10-28"
## [28571] "1992-10-28" "1992-10-28" "1992-10-28" "1992-10-28" "1992-10-28"
## [28576] "1992-10-28" "1992-10-28" "1992-10-28" "1992-10-28" "1992-10-28"
## [28581] "1992-10-28" "1992-10-28" "1992-10-28" "1992-10-28" "1992-10-28"
## [28586] "1992-10-28" "1992-10-28" "1984-01-21" "1984-01-21" "1984-01-21"
## [28591] "1984-01-21" "1984-01-21" "1984-01-21" "1984-01-21" "1984-01-21"
## [28596] "1984-01-21" "1984-01-21" "1984-01-21" "1984-01-21" "1984-01-21"
## [28601] "1984-01-21" "1984-01-21" "1984-01-21" "1984-01-21" "1984-01-21"
## [28606] "1984-01-21" "1984-01-21" "1984-01-21" "1984-01-21" "1984-01-21"
## [28611] "1984-01-21" "1984-01-21" "1984-01-21" "1976-08-09" "1976-08-09"
## [28616] "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09"
## [28621] "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09"
## [28626] "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09"
## [28631] "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09" "1987-09-16"
## [28636] "1987-09-16" "1987-09-16" "1987-09-16" "1987-09-16" "1987-09-16"
## [28641] "1987-09-16" "1987-09-16" "1987-09-16" "1987-09-16" "1987-09-16"
## [28646] "1987-09-16" "1987-09-16" "1987-09-16" "1987-09-16" "1987-09-16"
## [28651] "1990-11-08" "1990-11-08" "1983-09-04" "1983-09-04" "1983-09-04"
## [28656] "1983-09-04" "1983-09-04" "1983-09-04" "1983-09-04" "1983-09-04"
## [28661] "1983-09-04" "1983-09-04" "1983-09-04" "1983-09-04" "1983-09-04"
## [28666] "1983-09-04" "1983-09-04" "1983-09-04" "1983-09-04" "1980-01-13"
## [28671] "1980-01-13" "1980-01-13" "1980-01-13" "1980-01-13" "1987-09-05"
## [28676] "1987-09-05" "1987-09-05" "1987-09-05" "1987-09-05" "1987-09-05"
## [28681] "1988-12-24" "1988-12-24" "1988-12-24" "1988-12-24" "1988-12-24"
## [28686] "1988-12-24" "1975-12-28" "1975-12-28" "1975-12-28" "1975-12-28"
## [28691] "1975-12-28" "1975-12-28" "1975-12-28" "1975-12-28" "1975-12-28"
## [28696] "1989-08-16" "1989-08-16" "1988-03-25" "1988-03-25" "1988-03-25"
## [28701] "1988-03-25" "1988-03-25" "1988-03-25" "1988-03-25" "1988-03-25"
## [28706] "1988-03-25" "1988-03-25" "1986-06-26" "1986-06-26" "1986-06-26"
## [28711] "1986-06-26" "1986-06-26" "1986-06-26" "1971-07-03" "1971-07-03"
## [28716] "1971-07-03" "1971-07-03" "1971-07-03" "1971-07-03" "1971-07-03"
## [28721] "1974-04-06" "1974-04-06" "1974-04-06" "1974-04-06" "1974-04-06"
## [28726] "1990-12-01" "1990-12-01" "1990-12-01" "1990-12-01" "1990-12-01"
## [28731] "1990-12-01" "1990-12-01" "1990-12-01" "1990-12-01" "1990-12-01"
## [28736] "1970-10-26" "1970-10-26" "1970-10-26" "1987-04-26" "1987-04-26"
## [28741] "1987-04-26" "1987-04-26" "1987-04-26" "1987-04-26" "1987-04-26"
## [28746] "1987-04-26" "1987-04-26" "1987-04-26" "1987-04-26" "1987-04-26"
## [28751] "1987-04-26" "1987-04-26" "1987-04-26" "1987-04-26" "1987-04-26"
## [28756] "1987-04-26" "1987-04-26" "1987-04-26" "1987-04-26" "1987-04-26"
## [28761] "1987-04-26" "1975-09-17" "1975-09-17" "1975-09-17" "1975-09-17"
## [28766] "1975-09-17" "1975-09-17" "1975-09-17" "1975-09-17" "1975-09-17"
## [28771] "1975-09-17" "1975-09-17" "1989-09-11" "1989-09-11" "1989-09-11"
## [28776] "1989-09-11" "1989-09-11" "1989-09-11" "1989-09-11" "1989-09-11"
## [28781] "1989-09-11" "1989-09-11" "1989-09-05" "1989-09-05" "1989-09-05"
## [28786] "1989-09-05" "1989-09-05" "1989-09-05" "1989-09-05" "1989-09-05"
## [28791] "1989-09-05" "1989-09-05" "1989-09-05" "1989-09-05" "1989-09-05"
## [28796] "1989-09-05" "1989-09-05" "1984-12-25" "1984-12-25" "1970-06-09"
## [28801] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09"
## [28806] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09"
## [28811] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09"
## [28816] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09"
## [28821] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09"
## [28826] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09"
## [28831] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09"
## [28836] "1970-06-09" "1970-06-09" "1970-06-09" "1970-06-09" "1975-05-14"
## [28841] "1975-05-14" "1975-05-14" "1975-05-14" "1975-05-14" "1975-05-14"
## [28846] "1975-05-14" "1975-05-14" "1975-05-14" "1975-05-14" "1975-05-14"
## [28851] "1975-05-14" "1975-05-14" "1975-05-14" "1975-05-14" "1975-05-14"
## [28856] "1986-06-20" "1986-06-20" "1986-06-20" "1986-06-20" "1986-06-20"
## [28861] "1986-06-20" "1986-06-20" "1986-06-20" "1986-06-20" "1986-06-20"
## [28866] "1977-04-13" "1977-04-13" "1977-04-13" "1977-04-13" "1977-04-13"
## [28871] "1977-04-13" "1977-04-13" "1977-04-13" "1984-04-03" "1984-04-03"
## [28876] "1984-04-03" "1971-12-10" "1971-12-10" "1971-12-10" "1971-12-10"
## [28881] "1971-12-10" "1971-12-10" "1971-12-10" "1971-12-10" "1971-12-10"
## [28886] "1971-12-10" "1971-12-10" "1971-12-10" "1971-12-10" "1971-12-10"
## [28891] "1971-12-10" "1971-12-10" "1971-12-10" "1971-12-10" "1986-04-26"
## [28896] "1986-04-26" "1986-04-26" "1986-04-26" "1986-04-26" "1986-04-26"
## [28901] "1986-04-26" "1986-04-26" "1986-04-26" "1983-09-12" "1983-09-12"
## [28906] "1983-09-12" "1977-11-28" "1977-11-28" "1977-11-28" "1977-11-28"
## [28911] "1991-11-27" "1991-11-27" "1991-11-27" "1991-11-27" "1991-11-27"
## [28916] "1991-07-20" "1991-07-20" "1972-11-06" "1972-11-06" "1972-11-06"
## [28921] "1977-03-13" "1977-03-13" "1977-03-13" "1984-10-12" "1984-10-12"
## [28926] "1984-10-12" "1984-10-12" "1984-10-12" "1984-10-12" "1984-10-12"
## [28931] "1984-10-12" "1984-10-12" "1984-10-12" "1984-10-12" "1984-10-12"
## [28936] "1984-10-12" "1984-10-12" "1984-10-12" "1984-10-12" "1984-10-12"
## [28941] "1984-10-12" "1984-10-12" "1984-10-12" "1986-01-15" "1986-01-15"
## [28946] "1986-01-15" "1986-01-15" "1986-01-15" "1986-01-15" "1986-01-15"
## [28951] "1986-01-15" "1991-06-01" "1991-06-01" "1991-06-01" "1991-06-01"
## [28956] "1991-06-01" "1991-06-01" "1984-05-23" "1984-05-23" "1984-05-23"
## [28961] "1970-12-10" "1970-12-10" "1970-12-10" "1970-12-10" "1970-12-10"
## [28966] "1970-12-10" "1970-12-10" "1970-12-10" "1970-12-10" "1970-12-10"
## [28971] "1970-12-10" "1970-12-10" "1970-12-10" "1978-09-15" "1978-09-15"
## [28976] "1978-09-15" "1978-09-15" "1978-09-15" "1978-09-15" "1978-09-15"
## [28981] "1978-09-15" "1978-09-15" "1978-09-15" "1978-09-15" "1976-06-19"
## [28986] "1976-06-19" "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01"
## [28991] "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01"
## [28996] "1982-09-24" "1982-09-24" "1982-09-24" "1982-09-24" "1982-09-24"
## [29001] "1982-09-24" "1982-09-24" "1982-09-24" "1982-09-24" "1982-09-24"
## [29006] "1982-09-24" "1982-09-24" "1982-09-24" "1988-06-22" "1988-06-22"
## [29011] "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22"
## [29016] "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22"
## [29021] "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22"
## [29026] "1983-02-23" "1983-02-23" "1983-02-23" "1983-02-23" "1983-02-23"
## [29031] "1983-02-23" "1983-02-23" "1983-02-23" "1983-02-23" "1983-02-23"
## [29036] "1983-02-23" "1983-02-23" "1983-02-23" "1983-02-23" "1983-02-23"
## [29041] "1983-02-23" "1983-02-23" "1983-02-23" "1983-02-23" "1983-02-23"
## [29046] "1983-02-23" "1990-04-28" "1990-04-28" "1990-04-28" "1990-04-28"
## [29051] "1990-04-28" "1990-04-28" "1982-12-06" "1982-12-06" "1992-04-12"
## [29056] "1992-04-12" "1992-04-12" "1992-04-12" "1992-04-12" "1988-12-29"
## [29061] "1988-12-29" "1988-12-29" "1988-12-29" "1988-12-29" "1992-04-03"
## [29066] "1992-04-03" "1992-04-03" "1992-04-03" "1992-04-03" "1992-04-03"
## [29071] "1992-04-03" "1992-04-03" "1990-02-12" "1990-02-12" "1990-02-12"
## [29076] "1990-02-12" "1990-02-12" "1990-02-12" "1990-02-12" "1990-02-12"
## [29081] "1990-02-12" "1990-02-12" "1990-02-12" "1990-02-12" "1990-02-12"
## [29086] "1990-02-12" "1990-02-12" "1990-02-12" "1990-02-12" "1990-02-12"
## [29091] "1990-02-12" "1990-02-12" "1990-02-12" "1992-08-02" "1992-08-02"
## [29096] "1992-08-02" "1992-08-02" "1992-08-02" "1992-08-02" "1992-08-02"
## [29101] "1992-08-02" "1992-08-02" "1992-08-02" "1992-08-02" "1992-08-02"
## [29106] "1992-08-02" "1992-08-02" "1992-08-02" "1990-01-20" "1990-01-20"
## [29111] "1990-01-20" "1990-01-20" "1990-01-20" "1990-01-20" "1990-01-20"
## [29116] "1990-01-20" "1990-01-20" "1977-09-27" "1977-09-27" "1977-09-27"
## [29121] "1977-09-27" "1977-09-27" "1977-09-27" "1977-09-27" "1977-09-27"
## [29126] "1977-09-27" "1977-09-27" "1992-07-11" "1992-07-11" "1992-07-11"
## [29131] "1992-07-11" "1992-07-11" "1992-07-11" "1992-07-11" "1992-07-11"
## [29136] "1992-07-11" "1992-07-11" "1992-07-11" "1992-07-11" "1972-10-04"
## [29141] "1972-10-04" "1972-10-04" "1972-10-04" "1972-10-04" "1972-10-04"
## [29146] "1972-10-04" "1972-10-04" "1991-03-06" "1991-03-06" "1991-03-06"
## [29151] "1991-03-06" "1991-03-06" "1991-03-06" "1991-03-06" "1991-03-06"
## [29156] "1990-08-14" "1990-08-14" "1990-08-14" "1990-08-14" "1990-08-14"
## [29161] "1990-08-14" "1990-08-14" "1990-08-14" "1990-08-14" "1990-08-14"
## [29166] "1990-08-14" "1990-08-14" "1990-08-14" "1990-08-14" "1990-08-14"
## [29171] "1990-08-14" "1988-04-17" "1988-04-17" "1988-04-17" "1988-04-17"
## [29176] "1988-04-17" "1988-04-17" "1988-04-17" "1975-05-13" "1975-05-13"
## [29181] "1975-05-13" "1991-04-29" "1991-04-29" "1991-04-29" "1991-04-29"
## [29186] "1991-04-29" "1991-04-29" "1991-04-29" "1979-09-02" "1979-09-02"
## [29191] "1989-12-25" "1989-12-25" "1989-12-25" "1989-12-25" "1989-12-25"
## [29196] "1989-12-25" "1970-09-03" "1970-09-03" "1970-09-03" "1970-09-03"
## [29201] "1970-09-03" "1970-09-03" "1970-09-03" "1970-09-03" "1970-09-03"
## [29206] "1970-09-03" "1970-09-03" "1970-09-03" "1970-09-03" "1984-09-17"
## [29211] "1984-09-17" "1984-09-17" "1984-09-17" "1984-09-17" "1984-09-17"
## [29216] "1984-09-17" "1984-09-17" "1984-09-17" "1984-09-17" "1984-09-17"
## [29221] "1984-09-17" "1984-09-17" "1984-09-17" "1984-09-17" "1984-09-17"
## [29226] "1982-09-27" "1982-09-27" "1982-09-27" "1982-09-27" "1982-09-27"
## [29231] "1982-09-27" "1982-09-27" "1982-09-27" "1982-09-27" "1982-09-27"
## [29236] "1981-02-19" "1981-02-19" "1981-02-19" "1981-02-19" "1981-02-19"
## [29241] "1983-10-14" "1983-10-14" "1983-10-14" "1983-10-14" "1983-10-14"
## [29246] "1990-01-16" "1990-01-16" "1990-01-16" "1990-01-16" "1990-01-16"
## [29251] "1988-12-05" "1988-12-05" "1988-12-05" "1975-10-04" "1975-10-04"
## [29256] "1975-10-04" "1975-10-04" "1975-10-04" "1975-10-04" "1975-10-04"
## [29261] "1975-10-04" "1985-05-17" "1985-05-17" "1985-05-17" "1985-05-17"
## [29266] "1972-05-19" "1972-05-19" "1972-05-19" "1972-05-19" "1972-05-19"
## [29271] "1972-05-19" "1972-05-19" "1972-05-19" "1972-05-19" "1972-05-19"
## [29276] "1972-05-19" "1986-04-09" "1986-04-09" "1986-04-09" "1986-04-09"
## [29281] "1986-04-09" "1986-04-09" "1986-04-09" "1976-02-25" "1976-02-25"
## [29286] "1982-04-17" "1982-04-17" "1982-04-17" "1982-04-17" "1982-04-17"
## [29291] "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13"
## [29296] "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13"
## [29301] "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13"
## [29306] "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13"
## [29311] "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13"
## [29316] "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13" "1983-05-13"
## [29321] "1983-05-13" "1983-05-13" "1983-05-13" "1987-01-08" "1987-01-08"
## [29326] "1987-01-08" "1987-06-14" "1987-06-14" "1987-06-14" "1987-06-14"
## [29331] "1987-06-14" "1992-03-04" "1992-03-04" "1992-03-04" "1992-03-04"
## [29336] "1992-03-04" "1992-03-04" "1992-03-04" "1980-02-05" "1980-02-05"
## [29341] "1980-02-05" "1980-02-05" "1980-02-05" "1980-02-05" "1980-02-05"
## [29346] "1980-02-05" "1980-02-05" "1980-02-05" "1980-02-05" "1972-03-20"
## [29351] "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20"
## [29356] "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20" "1972-03-20"
## [29361] "1972-03-20" "1981-08-20" "1981-08-20" "1981-08-20" "1981-08-20"
## [29366] "1981-08-20" "1981-08-20" "1981-08-20" "1981-08-20" "1981-08-20"
## [29371] "1981-08-20" "1981-08-20" "1981-08-20" "1981-08-20" "1981-08-20"
## [29376] "1984-07-04" "1984-07-04" "1984-07-04" "1984-07-04" "1984-07-04"
## [29381] "1984-07-04" "1984-07-04" "1982-11-04" "1982-11-04" "1982-11-04"
## [29386] "1982-11-04" "1982-11-04" "1982-11-04" "1982-11-04" "1982-11-04"
## [29391] "1982-11-04" "1982-11-04" "1970-06-03" "1970-06-03" "1970-06-03"
## [29396] "1970-06-03" "1970-06-03" "1970-06-03" "1975-08-25" "1975-08-25"
## [29401] "1975-08-25" "1975-08-25" "1975-08-25" "1975-08-25" "1975-08-25"
## [29406] "1975-08-25" "1975-08-25" "1975-08-25" "1975-10-26" "1975-10-26"
## [29411] "1975-10-26" "1975-10-26" "1975-10-26" "1975-10-26" "1975-10-26"
## [29416] "1975-10-26" "1975-10-26" "1975-10-26" "1975-10-26" "1992-02-07"
## [29421] "1992-02-07" "1992-02-07" "1992-02-07" "1992-02-07" "1992-02-07"
## [29426] "1992-02-07" "1992-02-07" "1992-02-07" "1992-02-07" "1979-02-10"
## [29431] "1979-02-10" "1972-11-02" "1972-11-02" "1972-11-02" "1972-11-02"
## [29436] "1972-11-02" "1972-11-02" "1972-11-02" "1972-11-02" "1972-11-02"
## [29441] "1972-11-02" "1972-11-02" "1972-11-02" "1972-11-02" "1972-11-02"
## [29446] "1972-11-02" "1972-11-02" "1972-11-02" "1984-10-21" "1984-10-21"
## [29451] "1984-10-21" "1984-10-21" "1984-10-21" "1984-10-21" "1984-10-21"
## [29456] "1984-10-21" "1984-10-21" "1984-10-21" "1984-10-21" "1984-10-21"
## [29461] "1984-10-21" "1984-10-21" "1984-10-21" "1984-10-21" "1984-10-21"
## [29466] "1984-10-21" "1980-12-08" "1980-12-08" "1980-12-08" "1980-12-08"
## [29471] "1980-12-08" "1980-12-08" "1980-12-08" "1980-12-08" "1980-12-08"
## [29476] "1980-12-08" "1980-12-08" "1980-12-08" "1980-12-08" "1980-12-08"
## [29481] "1987-08-07" "1987-08-07" "1987-08-07" "1987-08-07" "1987-08-07"
## [29486] "1985-12-29" "1985-12-29" "1985-12-29" "1985-12-29" "1985-12-29"
## [29491] "1985-12-29" "1985-12-29" "1985-12-29" "1985-12-29" "1985-12-29"
## [29496] "1985-12-29" "1985-12-29" "1987-07-29" "1987-07-29" "1987-07-29"
## [29501] "1987-07-29" "1987-07-29" "1974-08-02" "1974-08-02" "1974-08-02"
## [29506] "1974-08-02" "1974-08-02" "1974-08-02" "1974-08-02" "1991-09-04"
## [29511] "1991-09-04" "1991-09-04" "1983-07-14" "1983-07-14" "1983-07-14"
## [29516] "1983-07-14" "1983-07-14" "1983-07-14" "1983-07-14" "1983-07-14"
## [29521] "1983-07-14" "1983-07-14" "1983-07-14" "1983-07-14" "1983-07-14"
## [29526] "1983-07-14" "1975-02-11" "1975-02-11" "1975-12-28" "1975-12-28"
## [29531] "1975-12-28" "1975-12-28" "1975-12-28" "1975-12-28" "1975-12-28"
## [29536] "1983-05-16" "1983-05-16" "1983-05-16" "1989-06-20" "1989-06-20"
## [29541] "1989-06-20" "1989-06-20" "1989-06-20" "1989-06-20" "1989-06-20"
## [29546] "1989-06-20" "1982-07-19" "1982-07-19" "1982-07-19" "1982-07-19"
## [29551] "1982-07-19" "1982-07-19" "1982-07-19" "1982-07-19" "1982-07-19"
## [29556] "1982-07-19" "1982-07-19" "1982-07-19" "1982-07-19" "1982-07-19"
## [29561] "1982-07-19" "1982-07-19" "1986-04-09" "1986-04-09" "1986-04-09"
## [29566] "1986-04-09" "1986-04-09" "1986-04-09" "1986-04-09" "1986-04-09"
## [29571] "1989-05-20" "1989-05-20" "1977-04-11" "1977-04-11" "1977-04-11"
## [29576] "1977-04-11" "1977-04-11" "1977-04-11" "1977-04-11" "1977-04-11"
## [29581] "1977-04-11" "1977-04-11" "1977-04-11" "1977-04-11" "1977-04-11"
## [29586] "1977-04-11" "1977-04-11" "1973-09-10" "1973-09-10" "1973-09-10"
## [29591] "1973-09-10" "1973-09-10" "1973-09-10" "1973-09-10" "1973-09-10"
## [29596] "1973-09-10" "1973-09-10" "1973-09-10" "1973-09-10" "1973-09-10"
## [29601] "1973-09-10" "1973-09-10" "1973-09-10" "1973-09-10" "1973-09-10"
## [29606] "1973-09-10" "1973-09-10" "1973-09-10" "1973-09-10" "1981-05-14"
## [29611] "1981-05-14" "1981-05-14" "1981-05-14" "1981-05-14" "1974-07-28"
## [29616] "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28"
## [29621] "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28"
## [29626] "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28"
## [29631] "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28" "1974-07-28"
## [29636] "1974-07-28" "1976-03-02" "1976-03-02" "1976-03-02" "1976-03-02"
## [29641] "1976-03-02" "1991-05-14" "1991-05-14" "1991-05-14" "1991-05-14"
## [29646] "1991-05-14" "1991-05-14" "1991-05-14" "1991-05-14" "1974-11-18"
## [29651] "1974-11-18" "1974-11-18" "1974-11-18" "1974-11-18" "1974-11-18"
## [29656] "1974-11-18" "1974-11-18" "1974-11-18" "1974-11-18" "1974-11-18"
## [29661] "1974-11-18" "1974-11-18" "1974-11-18" "1974-11-18" "1991-08-09"
## [29666] "1991-08-09" "1991-08-09" "1981-06-07" "1981-06-07" "1979-10-09"
## [29671] "1979-10-09" "1979-10-09" "1979-10-09" "1979-10-09" "1979-10-09"
## [29676] "1979-10-09" "1979-10-09" "1976-09-16" "1976-09-16" "1976-09-16"
## [29681] "1976-09-16" "1976-09-16" "1976-09-16" "1976-09-16" "1976-09-16"
## [29686] "1976-09-16" "1976-09-16" "1980-08-14" "1980-08-14" "1980-08-14"
## [29691] "1980-08-14" "1980-08-14" "1980-08-14" "1980-08-14" "1980-08-14"
## [29696] "1980-08-14" "1980-08-14" "1980-08-14" "1980-08-14" "1980-08-14"
## [29701] "1980-08-14" "1980-08-14" "1980-08-14" "1980-08-14" "1980-08-14"
## [29706] "1980-08-14" "1974-12-04" "1974-12-04" "1974-12-04" "1974-12-04"
## [29711] "1974-12-04" "1974-12-04" "1974-12-04" "1974-12-04" "1974-12-04"
## [29716] "1974-12-04" "1974-12-04" "1974-12-04" "1982-10-09" "1982-10-09"
## [29721] "1982-10-09" "1982-10-09" "1982-10-09" "1982-10-09" "1982-10-09"
## [29726] "1982-10-09" "1982-10-09" "1982-10-09" "1982-10-09" "1982-10-09"
## [29731] "1982-10-09" "1982-10-09" "1982-10-09" "1989-10-03" "1989-10-03"
## [29736] "1989-10-03" "1989-10-03" "1989-10-03" "1989-10-03" "1989-10-03"
## [29741] "1989-10-03" "1989-10-03" "1989-10-03" "1989-10-03" "1989-10-03"
## [29746] "1989-10-03" "1989-10-03" "1985-04-13" "1985-04-13" "1985-04-13"
## [29751] "1985-04-13" "1985-04-13" "1985-04-13" "1985-04-13" "1985-04-13"
## [29756] "1985-04-13" "1985-04-13" "1985-04-13" "1985-04-13" "1985-04-13"
## [29761] "1985-04-13" "1985-04-13" "1985-04-13" "1985-04-13" "1985-04-13"
## [29766] "1985-04-13" "1989-04-21" "1989-04-21" "1989-04-21" "1983-05-19"
## [29771] "1983-05-19" "1983-05-19" "1972-04-17" "1972-04-17" "1972-04-17"
## [29776] "1978-05-19" "1978-05-19" "1978-05-19" "1978-05-19" "1978-05-19"
## [29781] "1978-05-19" "1978-05-19" "1973-07-28" "1973-07-28" "1973-07-28"
## [29786] "1973-07-28" "1973-07-28" "1973-07-28" "1973-07-28" "1973-07-28"
## [29791] "1973-07-28" "1973-07-28" "1980-01-10" "1980-01-10" "1980-01-10"
## [29796] "1980-01-10" "1980-01-10" "1980-01-10" "1980-01-10" "1980-01-10"
## [29801] "1980-01-10" "1980-01-10" "1980-01-10" "1980-01-10" "1980-01-10"
## [29806] "1980-01-10" "1980-01-10" "1980-01-10" "1980-01-10" "1980-01-10"
## [29811] "1975-02-01" "1975-02-01" "1975-02-01" "1975-02-01" "1975-02-01"
## [29816] "1975-02-01" "1975-02-01" "1975-02-01" "1975-02-01" "1975-02-01"
## [29821] "1975-02-01" "1975-02-01" "1975-02-01" "1975-02-01" "1975-02-01"
## [29826] "1975-02-01" "1975-02-01" "1975-02-01" "1975-02-01" "1975-02-01"
## [29831] "1975-02-01" "1975-02-01" "1975-02-01" "1989-06-11" "1989-06-11"
## [29836] "1989-06-11" "1989-06-11" "1989-06-11" "1989-06-11" "1989-06-11"
## [29841] "1990-04-27" "1990-04-27" "1990-04-27" "1990-04-27" "1990-04-27"
## [29846] "1990-04-27" "1990-04-27" "1990-04-27" "1990-07-23" "1990-07-23"
## [29851] "1990-07-23" "1990-07-23" "1990-07-23" "1990-07-23" "1977-08-01"
## [29856] "1977-08-01" "1977-08-01" "1977-08-01" "1977-08-01" "1977-08-01"
## [29861] "1977-08-01" "1977-08-01" "1977-08-01" "1977-08-01" "1977-08-01"
## [29866] "1977-08-01" "1977-08-01" "1972-03-08" "1972-03-08" "1972-03-08"
## [29871] "1972-03-08" "1972-03-08" "1972-03-08" "1985-05-10" "1985-05-10"
## [29876] "1985-05-10" "1985-05-10" "1985-05-10" "1985-05-10" "1985-05-10"
## [29881] "1985-05-10" "1985-05-10" "1985-05-10" "1985-05-10" "1985-05-10"
## [29886] "1985-05-10" "1985-05-10" "1982-05-21" "1982-05-21" "1982-05-21"
## [29891] "1982-05-21" "1983-12-28" "1983-12-28" "1983-12-28" "1978-01-23"
## [29896] "1978-01-23" "1978-01-23" "1978-01-23" "1978-01-23" "1984-02-19"
## [29901] "1984-02-19" "1984-02-19" "1984-02-19" "1984-02-19" "1984-02-19"
## [29906] "1984-02-19" "1984-02-19" "1986-06-12" "1986-06-12" "1986-06-12"
## [29911] "1986-06-12" "1986-06-12" "1986-06-12" "1986-06-12" "1986-06-12"
## [29916] "1986-06-12" "1986-06-12" "1986-06-12" "1986-06-12" "1979-06-27"
## [29921] "1979-06-27" "1979-06-27" "1979-06-27" "1979-06-27" "1979-06-27"
## [29926] "1974-02-12" "1974-02-12" "1974-02-12" "1974-02-12" "1974-02-12"
## [29931] "1970-09-23" "1970-09-23" "1978-05-14" "1978-05-14" "1978-05-14"
## [29936] "1978-05-14" "1978-05-14" "1978-05-14" "1978-05-14" "1978-05-14"
## [29941] "1978-05-14" "1978-05-14" "1978-05-14" "1978-05-14" "1978-05-14"
## [29946] "1978-05-14" "1978-05-14" "1978-05-14" "1978-05-14" "1978-05-14"
## [29951] "1983-04-09" "1983-04-09" "1983-04-09" "1983-04-09" "1983-04-09"
## [29956] "1983-04-09" "1983-04-09" "1983-04-09" "1983-04-09" "1983-04-09"
## [29961] "1983-04-09" "1983-04-09" "1983-04-09" "1983-04-09" "1983-04-09"
## [29966] "1983-04-09" "1983-04-09" "1983-04-09" "1973-12-12" "1973-12-12"
## [29971] "1974-05-21" "1974-05-21" "1974-05-21" "1974-05-21" "1974-05-21"
## [29976] "1974-05-21" "1974-05-21" "1974-05-21" "1974-05-21" "1974-05-21"
## [29981] "1974-05-21" "1974-05-21" "1974-05-21" "1974-05-21" "1974-05-21"
## [29986] "1974-05-21" "1974-05-21" "1974-05-21" "1991-03-27" "1991-03-27"
## [29991] "1991-03-27" "1991-03-27" "1991-03-27" "1991-03-27" "1991-03-27"
## [29996] "1991-03-27" "1991-03-27" "1991-03-27" "1991-03-27" "1991-03-27"
## [30001] "1981-12-26" "1981-12-26" "1981-12-26" "1981-12-26" "1981-12-26"
## [30006] "1990-12-22" "1990-12-22" "1990-12-22" "1990-12-22" "1990-12-22"
## [30011] "1990-12-22" "1990-12-22" "1990-12-22" "1990-12-22" "1990-12-22"
## [30016] "1990-12-22" "1990-12-22" "1986-03-09" "1986-03-09" "1986-03-09"
## [30021] "1986-03-09" "1986-03-09" "1986-03-09" "1986-03-09" "1986-03-09"
## [30026] "1986-03-09" "1986-03-09" "1975-09-22" "1975-09-22" "1975-09-22"
## [30031] "1975-09-22" "1975-09-22" "1975-09-22" "1975-09-22" "1975-09-22"
## [30036] "1975-09-22" "1975-09-22" "1975-09-22" "1975-09-22" "1975-09-22"
## [30041] "1975-09-22" "1975-09-22" "1975-09-22" "1975-09-22" "1975-09-22"
## [30046] "1975-09-22" "1975-09-22" "1975-09-22" "1975-09-22" "1975-09-22"
## [30051] "1975-09-22" "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21"
## [30056] "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21" "1987-04-28"
## [30061] "1987-04-28" "1987-04-28" "1987-04-28" "1987-04-28" "1987-04-28"
## [30066] "1987-04-28" "1987-04-28" "1987-04-28" "1987-04-28" "1971-02-13"
## [30071] "1971-02-13" "1971-02-13" "1971-02-13" "1971-02-13" "1971-02-13"
## [30076] "1971-02-13" "1971-02-13" "1987-09-08" "1987-09-08" "1987-09-08"
## [30081] "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08"
## [30086] "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08"
## [30091] "1987-09-08" "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15"
## [30096] "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15"
## [30101] "1985-11-16" "1985-11-16" "1985-11-16" "1985-11-16" "1979-12-07"
## [30106] "1979-12-07" "1979-12-07" "1979-12-07" "1979-12-07" "1979-12-07"
## [30111] "1979-12-07" "1979-12-07" "1979-12-07" "1979-12-07" "1981-04-09"
## [30116] "1981-04-09" "1981-04-09" "1981-04-09" "1981-04-09" "1981-04-09"
## [30121] "1981-04-09" "1981-04-09" "1990-01-06" "1990-01-06" "1990-01-06"
## [30126] "1990-01-06" "1990-01-06" "1990-01-06" "1990-01-06" "1990-01-06"
## [30131] "1990-01-06" "1990-01-06" "1990-01-06" "1990-01-06" "1990-01-06"
## [30136] "1990-01-06" "1990-01-06" "1990-01-06" "1990-01-06" "1990-01-06"
## [30141] "1990-01-06" "1990-01-06" "1990-01-06" "1990-01-06" "1990-01-06"
## [30146] "1980-01-01" "1980-01-01" "1980-01-01" "1979-10-03" "1979-10-03"
## [30151] "1979-10-03" "1979-10-03" "1979-10-03" "1979-10-03" "1979-10-03"
## [30156] "1979-10-03" "1979-10-03" "1979-10-03" "1979-10-03" "1979-10-03"
## [30161] "1979-10-03" "1979-10-03" "1979-10-03" "1981-09-09" "1981-09-09"
## [30166] "1981-09-09" "1988-12-24" "1988-12-24" "1972-03-13" "1972-03-13"
## [30171] "1972-03-13" "1975-08-24" "1975-08-24" "1975-08-24" "1975-08-24"
## [30176] "1975-08-24" "1975-08-24" "1975-08-24" "1975-08-24" "1975-08-24"
## [30181] "1975-08-24" "1975-08-24" "1980-07-13" "1980-07-13" "1980-07-13"
## [30186] "1972-12-16" "1972-12-16" "1972-12-16" "1985-06-16" "1985-06-16"
## [30191] "1985-06-16" "1985-06-16" "1985-06-16" "1985-06-16" "1985-06-16"
## [30196] "1985-06-16" "1985-06-16" "1985-06-16" "1985-06-16" "1985-06-16"
## [30201] "1992-04-05" "1992-04-05" "1992-04-05" "1992-04-05" "1992-04-05"
## [30206] "1992-04-05" "1992-04-05" "1992-04-05" "1992-04-05" "1992-04-05"
## [30211] "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27"
## [30216] "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27"
## [30221] "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27" "1988-12-27"
## [30226] "1988-12-27" "1988-12-27" "1992-08-24" "1992-08-24" "1992-08-24"
## [30231] "1992-08-24" "1992-08-24" "1973-11-25" "1973-11-25" "1973-11-25"
## [30236] "1973-11-25" "1973-11-25" "1973-11-25" "1973-11-25" "1986-05-08"
## [30241] "1986-05-08" "1986-05-08" "1986-05-08" "1986-05-08" "1986-05-08"
## [30246] "1986-05-08" "1970-01-25" "1970-01-25" "1970-01-25" "1970-01-25"
## [30251] "1970-01-25" "1970-01-25" "1970-01-25" "1970-01-25" "1970-01-25"
## [30256] "1970-01-25" "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24"
## [30261] "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24"
## [30266] "1980-04-24" "1980-04-24" "1980-04-24" "1982-02-22" "1982-02-22"
## [30271] "1982-02-22" "1982-02-22" "1982-02-22" "1982-02-22" "1982-02-22"
## [30276] "1982-02-22" "1982-02-22" "1982-02-22" "1986-01-21" "1986-01-21"
## [30281] "1986-01-21" "1986-01-21" "1987-10-12" "1987-10-12" "1987-10-12"
## [30286] "1987-10-12" "1987-10-12" "1987-10-12" "1987-10-12" "1985-05-29"
## [30291] "1985-05-29" "1985-05-29" "1984-09-12" "1984-09-12" "1984-09-12"
## [30296] "1984-09-12" "1984-09-12" "1984-09-12" "1984-09-12" "1980-09-23"
## [30301] "1980-09-23" "1980-09-23" "1980-09-23" "1980-09-23" "1980-09-23"
## [30306] "1980-09-23" "1972-06-24" "1972-06-24" "1972-06-24" "1981-11-25"
## [30311] "1981-11-25" "1981-11-25" "1981-11-25" "1981-11-25" "1981-11-25"
## [30316] "1981-11-25" "1981-11-25" "1981-11-25" "1981-11-25" "1981-11-25"
## [30321] "1981-11-25" "1981-11-25" "1981-11-25" "1985-09-28" "1985-09-28"
## [30326] "1985-09-28" "1985-09-28" "1985-09-28" "1985-09-28" "1985-09-28"
## [30331] "1985-09-28" "1985-09-28" "1988-02-23" "1988-02-23" "1988-02-23"
## [30336] "1988-02-23" "1988-02-23" "1988-02-23" "1988-02-23" "1988-02-23"
## [30341] "1988-02-23" "1988-02-23" "1988-02-23" "1988-02-23" "1988-02-23"
## [30346] "1988-02-23" "1988-02-23" "1988-02-23" "1988-02-23" "1988-02-23"
## [30351] "1988-02-23" "1988-02-23" "1988-02-23" "1988-02-23" "1988-02-23"
## [30356] "1988-02-23" "1976-10-06" "1976-10-06" "1976-10-06" "1984-02-27"
## [30361] "1984-02-27" "1984-02-27" "1984-02-27" "1984-02-27" "1984-02-27"
## [30366] "1984-02-27" "1984-02-27" "1984-02-27" "1984-02-27" "1984-02-27"
## [30371] "1974-12-12" "1974-12-12" "1974-12-12" "1974-12-12" "1974-12-12"
## [30376] "1974-12-12" "1974-12-12" "1974-12-12" "1974-12-12" "1974-12-12"
## [30381] "1974-12-12" "1974-12-12" "1974-12-12" "1974-12-12" "1992-01-21"
## [30386] "1992-01-21" "1992-01-21" "1992-01-21" "1992-01-21" "1992-01-21"
## [30391] "1992-01-21" "1992-01-21" "1992-01-21" "1992-01-21" "1992-01-21"
## [30396] "1992-01-21" "1992-01-21" "1992-01-21" "1992-01-21" "1992-01-21"
## [30401] "1992-01-21" "1992-01-21" "1992-01-29" "1992-01-29" "1992-01-29"
## [30406] "1974-07-04" "1974-07-04" "1974-07-04" "1974-07-04" "1987-06-05"
## [30411] "1987-06-05" "1987-06-05" "1973-06-08" "1973-06-08" "1973-06-08"
## [30416] "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08" "1973-06-08"
## [30421] "1973-06-08" "1973-06-08" "1986-03-15" "1986-03-15" "1986-03-15"
## [30426] "1986-03-15" "1986-03-15" "1986-03-15" "1986-03-15" "1986-03-15"
## [30431] "1986-03-15" "1986-03-15" "1972-10-28" "1972-10-28" "1972-10-28"
## [30436] "1987-11-08" "1987-11-08" "1987-11-08" "1987-11-08" "1987-11-08"
## [30441] "1987-11-08" "1987-11-08" "1987-11-08" "1987-11-08" "1980-06-26"
## [30446] "1980-06-26" "1980-06-26" "1980-06-26" "1980-06-26" "1980-06-26"
## [30451] "1980-06-26" "1980-06-26" "1980-06-26" "1980-06-26" "1980-06-26"
## [30456] "1980-06-26" "1980-06-26" "1980-06-26" "1980-06-26" "1980-06-26"
## [30461] "1980-06-26" "1980-06-26" "1980-06-26" "1970-07-10" "1970-07-10"
## [30466] "1970-07-10" "1970-07-10" "1970-07-10" "1970-07-10" "1970-07-10"
## [30471] "1970-07-10" "1970-07-10" "1970-07-10" "1970-07-10" "1971-03-01"
## [30476] "1971-03-01" "1971-03-01" "1971-03-01" "1971-03-01" "1971-03-01"
## [30481] "1971-03-01" "1971-03-01" "1971-03-01" "1984-05-02" "1984-05-02"
## [30486] "1990-07-22" "1990-07-22" "1990-07-22" "1990-07-22" "1990-07-22"
## [30491] "1990-07-22" "1990-07-22" "1990-07-22" "1990-07-22" "1990-07-22"
## [30496] "1990-07-22" "1990-07-22" "1970-08-26" "1970-08-26" "1970-08-26"
## [30501] "1970-08-26" "1970-08-26" "1970-08-26" "1970-08-26" "1970-08-26"
## [30506] "1970-08-26" "1970-08-26" "1970-08-26" "1970-08-26" "1973-10-01"
## [30511] "1973-10-01" "1973-10-01" "1972-03-06" "1972-03-06" "1972-03-06"
## [30516] "1972-03-06" "1972-03-06" "1987-03-10" "1987-03-10" "1972-11-05"
## [30521] "1972-11-05" "1972-11-05" "1972-11-05" "1972-11-05" "1972-11-05"
## [30526] "1972-11-05" "1972-11-05" "1972-11-05" "1972-11-05" "1972-11-05"
## [30531] "1972-11-05" "1972-11-05" "1972-11-05" "1972-11-05" "1972-11-05"
## [30536] "1972-11-05" "1972-11-05" "1972-11-05" "1972-11-05" "1972-11-05"
## [30541] "1972-11-05" "1972-11-05" "1972-11-05" "1972-11-05" "1977-11-27"
## [30546] "1977-11-27" "1977-11-27" "1977-10-12" "1977-10-12" "1977-10-12"
## [30551] "1977-10-12" "1977-10-12" "1977-10-12" "1977-10-12" "1977-10-12"
## [30556] "1977-10-12" "1977-10-12" "1977-10-12" "1977-10-12" "1977-10-12"
## [30561] "1977-10-12" "1973-09-01" "1973-09-01" "1973-09-01" "1973-09-01"
## [30566] "1973-09-01" "1973-09-01" "1982-06-17" "1982-06-17" "1984-05-22"
## [30571] "1984-05-22" "1984-05-22" "1984-05-22" "1984-05-22" "1984-05-22"
## [30576] "1984-05-22" "1984-05-22" "1984-05-22" "1984-05-22" "1984-05-22"
## [30581] "1984-05-22" "1984-05-22" "1984-05-22" "1984-05-22" "1984-05-22"
## [30586] "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21"
## [30591] "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21"
## [30596] "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21"
## [30601] "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21"
## [30606] "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21"
## [30611] "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21" "1991-06-21"
## [30616] "1991-06-21" "1979-02-11" "1979-02-11" "1979-02-11" "1979-02-11"
## [30621] "1979-02-11" "1979-02-11" "1979-02-11" "1979-02-11" "1979-02-11"
## [30626] "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02"
## [30631] "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02"
## [30636] "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02"
## [30641] "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02"
## [30646] "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02"
## [30651] "1972-10-02" "1972-10-02" "1972-10-02" "1972-10-02" "1976-12-27"
## [30656] "1976-12-27" "1976-12-27" "1976-12-27" "1976-12-27" "1976-12-27"
## [30661] "1976-12-27" "1976-12-27" "1983-07-05" "1983-07-05" "1983-07-05"
## [30666] "1983-07-05" "1983-07-05" "1983-07-05" "1983-07-05" "1983-07-05"
## [30671] "1983-07-05" "1983-07-05" "1979-02-10" "1979-02-10" "1979-02-10"
## [30676] "1979-02-10" "1979-02-10" "1979-02-10" "1979-02-10" "1979-02-10"
## [30681] "1985-05-07" "1985-05-07" "1985-05-07" "1985-05-07" "1985-05-07"
## [30686] "1985-05-07" "1985-05-07" "1985-09-26" "1985-09-26" "1985-09-26"
## [30691] "1985-09-26" "1985-09-26" "1985-09-26" "1985-09-26" "1985-09-26"
## [30696] "1985-09-26" "1985-09-26" "1985-09-26" "1985-09-26" "1985-09-26"
## [30701] "1985-09-26" "1985-09-26" "1985-09-26" "1985-09-26" "1985-09-26"
## [30706] "1985-12-06" "1985-12-06" "1985-12-06" "1985-12-06" "1985-12-06"
## [30711] "1985-12-06" "1985-12-06" "1985-12-06" "1991-03-23" "1991-03-23"
## [30716] "1991-03-23" "1991-03-23" "1991-03-23" "1991-03-23" "1991-03-23"
## [30721] "1991-03-23" "1992-02-25" "1992-02-25" "1992-02-25" "1992-02-25"
## [30726] "1992-02-25" "1992-02-25" "1992-02-25" "1992-02-25" "1992-02-25"
## [30731] "1992-02-25" "1992-02-25" "1992-02-25" "1992-02-25" "1992-02-25"
## [30736] "1981-03-28" "1981-03-28" "1981-03-28" "1981-03-28" "1981-03-28"
## [30741] "1981-03-28" "1981-03-28" "1979-04-21" "1979-04-21" "1979-04-21"
## [30746] "1979-04-21" "1972-12-12" "1972-12-12" "1972-12-12" "1972-12-12"
## [30751] "1972-12-12" "1972-12-12" "1972-12-12" "1972-12-12" "1972-12-12"
## [30756] "1972-12-12" "1971-01-28" "1971-01-28" "1971-01-28" "1971-01-28"
## [30761] "1971-01-28" "1971-01-28" "1971-01-28" "1971-01-28" "1971-01-28"
## [30766] "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04"
## [30771] "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04" "1981-04-04"
## [30776] "1981-04-04" "1981-04-04" "1981-04-04" "1975-08-13" "1975-08-13"
## [30781] "1975-08-13" "1991-07-04" "1991-07-04" "1982-07-11" "1982-07-11"
## [30786] "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11"
## [30791] "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11" "1982-07-11"
## [30796] "1982-07-11" "1976-07-07" "1976-07-07" "1976-07-07" "1976-07-07"
## [30801] "1976-07-07" "1976-07-07" "1976-07-07" "1976-07-07" "1976-07-07"
## [30806] "1976-07-07" "1976-07-07" "1976-07-07" "1976-07-07" "1976-07-07"
## [30811] "1974-10-14" "1974-10-14" "1974-10-14" "1974-10-14" "1974-10-14"
## [30816] "1974-10-14" "1974-10-14" "1974-10-14" "1974-10-14" "1974-10-14"
## [30821] "1974-10-14" "1974-10-14" "1974-10-14" "1974-10-14" "1974-10-14"
## [30826] "1991-02-13" "1991-02-13" "1991-02-13" "1991-02-13" "1991-02-13"
## [30831] "1991-02-13" "1991-02-13" "1991-02-13" "1991-02-13" "1991-02-13"
## [30836] "1991-02-13" "1991-02-13" "1991-02-13" "1991-02-13" "1991-02-13"
## [30841] "1991-02-13" "1991-02-13" "1991-02-13" "1991-02-13" "1979-02-01"
## [30846] "1979-02-01" "1979-02-01" "1979-02-01" "1979-02-01" "1979-02-01"
## [30851] "1979-02-01" "1979-02-01" "1988-12-27" "1988-12-27" "1988-12-27"
## [30856] "1988-12-27" "1988-12-27" "1970-05-03" "1970-05-03" "1985-05-29"
## [30861] "1985-05-29" "1985-05-29" "1985-05-29" "1985-05-29" "1985-05-29"
## [30866] "1985-05-29" "1985-05-29" "1985-05-29" "1985-05-29" "1985-05-29"
## [30871] "1985-05-29" "1985-05-29" "1985-05-29" "1985-05-29" "1979-02-28"
## [30876] "1979-02-28" "1979-02-28" "1979-02-28" "1979-02-28" "1979-02-28"
## [30881] "1979-02-28" "1979-02-28" "1979-07-18" "1979-07-18" "1979-07-18"
## [30886] "1979-07-18" "1979-07-18" "1979-07-18" "1979-07-18" "1979-07-18"
## [30891] "1979-07-18" "1979-07-18" "1979-07-18" "1979-07-18" "1979-07-18"
## [30896] "1972-11-12" "1972-11-12" "1972-11-12" "1972-11-12" "1972-11-12"
## [30901] "1972-11-12" "1972-11-12" "1973-12-14" "1973-12-14" "1973-12-14"
## [30906] "1973-12-14" "1973-12-14" "1991-02-04" "1991-02-04" "1991-02-04"
## [30911] "1991-02-04" "1984-02-07" "1984-02-07" "1984-02-07" "1984-02-07"
## [30916] "1984-02-07" "1984-02-07" "1984-02-07" "1984-02-07" "1984-02-07"
## [30921] "1973-05-17" "1973-05-17" "1973-05-17" "1973-05-17" "1973-05-17"
## [30926] "1973-05-17" "1973-05-17" "1973-05-17" "1973-05-17" "1973-05-17"
## [30931] "1973-05-17" "1973-05-17" "1973-05-17" "1973-05-17" "1973-05-17"
## [30936] "1973-05-17" "1973-05-17" "1973-05-17" "1973-05-17" "1973-05-17"
## [30941] "1973-05-17" "1977-03-07" "1977-03-07" "1977-03-07" "1977-03-07"
## [30946] "1977-03-07" "1977-03-07" "1974-12-20" "1974-12-20" "1982-06-28"
## [30951] "1982-06-28" "1982-06-28" "1982-06-28" "1982-06-28" "1982-06-28"
## [30956] "1983-08-14" "1983-08-14" "1983-08-14" "1983-08-14" "1983-08-14"
## [30961] "1983-08-14" "1983-08-14" "1983-08-14" "1983-08-14" "1983-08-14"
## [30966] "1983-08-14" "1983-08-14" "1983-08-14" "1983-08-14" "1983-08-14"
## [30971] "1983-08-14" "1989-09-18" "1989-09-18" "1979-12-20" "1979-12-20"
## [30976] "1979-12-20" "1979-12-20" "1979-12-20" "1979-12-20" "1979-12-20"
## [30981] "1979-12-20" "1979-12-20" "1979-12-20" "1979-12-20" "1979-12-20"
## [30986] "1979-12-20" "1979-12-20" "1992-08-06" "1992-08-06" "1992-08-06"
## [30991] "1992-08-06" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [30996] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [31001] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [31006] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [31011] "1977-05-26" "1977-05-26" "1977-01-07" "1977-01-07" "1977-01-07"
## [31016] "1977-01-07" "1977-01-07" "1977-01-07" "1977-01-07" "1977-01-07"
## [31021] "1977-01-07" "1977-01-07" "1977-01-07" "1975-03-23" "1975-03-23"
## [31026] "1975-03-23" "1990-12-02" "1990-12-02" "1990-12-02" "1991-05-14"
## [31031] "1991-05-14" "1991-05-14" "1976-06-04" "1976-06-04" "1976-06-04"
## [31036] "1976-06-04" "1976-06-04" "1976-06-04" "1976-06-04" "1976-06-04"
## [31041] "1976-06-04" "1976-06-04" "1971-02-09" "1971-02-09" "1971-02-09"
## [31046] "1971-02-09" "1971-02-09" "1974-11-13" "1974-11-13" "1974-11-13"
## [31051] "1975-12-25" "1975-12-25" "1975-12-25" "1975-12-25" "1975-12-25"
## [31056] "1977-08-03" "1977-08-03" "1977-08-03" "1977-08-03" "1977-08-03"
## [31061] "1977-08-03" "1977-08-03" "1977-08-03" "1977-08-03" "1980-10-26"
## [31066] "1980-10-26" "1980-10-26" "1980-10-26" "1980-10-26" "1980-10-26"
## [31071] "1980-10-26" "1980-10-26" "1980-10-26" "1980-10-26" "1980-10-26"
## [31076] "1980-10-26" "1980-10-26" "1992-01-15" "1992-01-15" "1992-01-15"
## [31081] "1992-01-15" "1992-01-15" "1992-01-15" "1992-01-15" "1992-01-15"
## [31086] "1992-01-15" "1992-01-15" "1992-01-15" "1992-01-15" "1992-01-15"
## [31091] "1992-01-15" "1992-01-15" "1992-01-15" "1992-01-15" "1992-01-15"
## [31096] "1992-01-15" "1992-01-15" "1992-01-15" "1992-01-15" "1992-01-15"
## [31101] "1970-02-19" "1970-02-19" "1970-02-19" "1970-02-19" "1985-12-08"
## [31106] "1985-12-08" "1989-03-02" "1989-03-02" "1989-03-02" "1989-03-02"
## [31111] "1989-03-02" "1989-03-02" "1989-03-02" "1989-03-02" "1989-03-02"
## [31116] "1989-03-02" "1978-11-09" "1978-11-09" "1987-04-28" "1987-04-28"
## [31121] "1987-04-28" "1987-04-28" "1987-04-28" "1987-04-28" "1987-04-28"
## [31126] "1987-04-28" "1987-04-28" "1987-04-28" "1987-04-28" "1971-11-12"
## [31131] "1971-11-12" "1979-08-25" "1979-08-25" "1979-08-25" "1979-08-25"
## [31136] "1979-08-25" "1979-08-25" "1979-08-25" "1979-08-25" "1979-08-25"
## [31141] "1979-08-25" "1979-08-25" "1979-08-25" "1979-08-25" "1979-08-25"
## [31146] "1979-08-25" "1979-08-25" "1982-12-05" "1982-12-05" "1982-12-05"
## [31151] "1982-12-05" "1982-12-05" "1982-12-05" "1982-12-05" "1984-08-09"
## [31156] "1984-08-09" "1984-08-09" "1984-08-09" "1984-08-09" "1984-08-09"
## [31161] "1984-08-09" "1984-08-09" "1984-08-09" "1979-06-15" "1979-06-15"
## [31166] "1979-06-15" "1979-06-15" "1979-06-15" "1979-06-15" "1979-06-15"
## [31171] "1977-01-27" "1977-01-27" "1977-01-27" "1977-01-27" "1977-01-27"
## [31176] "1977-01-27" "1977-01-27" "1977-01-27" "1977-01-27" "1989-02-03"
## [31181] "1989-02-03" "1989-02-03" "1989-02-03" "1989-02-03" "1975-10-19"
## [31186] "1975-10-19" "1975-10-19" "1970-04-19" "1970-04-19" "1970-04-19"
## [31191] "1970-04-19" "1970-04-19" "1970-04-19" "1970-04-19" "1970-04-19"
## [31196] "1970-04-19" "1970-04-19" "1970-04-19" "1970-04-19" "1970-04-19"
## [31201] "1970-04-19" "1970-04-19" "1970-04-19" "1970-04-19" "1970-04-19"
## [31206] "1992-11-13" "1992-11-13" "1992-11-13" "1992-11-13" "1992-11-13"
## [31211] "1992-11-13" "1992-11-13" "1992-11-13" "1992-11-13" "1992-11-13"
## [31216] "1992-11-13" "1992-11-13" "1992-11-13" "1978-01-16" "1978-01-16"
## [31221] "1978-01-16" "1978-01-16" "1978-01-16" "1978-01-16" "1978-01-16"
## [31226] "1981-11-23" "1981-11-23" "1981-11-23" "1981-11-23" "1981-11-23"
## [31231] "1981-11-23" "1981-11-23" "1981-11-23" "1981-11-23" "1992-08-05"
## [31236] "1992-08-05" "1992-08-05" "1992-08-05" "1992-08-05" "1992-08-05"
## [31241] "1992-08-05" "1992-08-05" "1992-08-05" "1992-08-05" "1992-08-05"
## [31246] "1992-08-05" "1992-08-05" "1990-06-18" "1990-06-18" "1990-06-18"
## [31251] "1990-06-18" "1990-06-18" "1990-06-18" "1990-06-18" "1990-06-18"
## [31256] "1990-06-18" "1984-02-12" "1984-02-12" "1984-02-12" "1984-02-12"
## [31261] "1984-02-12" "1984-02-12" "1984-02-12" "1984-02-12" "1984-02-12"
## [31266] "1984-02-12" "1984-02-12" "1984-02-12" "1984-02-12" "1984-02-12"
## [31271] "1984-02-12" "1984-02-12" "1984-02-12" "1984-02-12" "1984-02-12"
## [31276] "1976-10-20" "1976-10-20" "1976-10-20" "1976-10-20" "1976-10-20"
## [31281] "1976-10-20" "1976-10-20" "1976-10-20" "1978-05-04" "1978-05-04"
## [31286] "1978-05-04" "1978-05-04" "1978-05-04" "1978-05-04" "1978-05-04"
## [31291] "1978-05-04" "1978-05-04" "1976-03-29" "1976-03-29" "1976-03-29"
## [31296] "1976-03-29" "1976-03-29" "1976-03-29" "1976-03-29" "1976-03-29"
## [31301] "1976-03-29" "1976-03-29" "1976-03-29" "1976-03-29" "1976-03-29"
## [31306] "1976-03-29" "1976-03-29" "1976-03-29" "1976-03-29" "1976-03-29"
## [31311] "1970-04-14" "1970-04-14" "1970-04-14" "1970-04-14" "1970-04-14"
## [31316] "1970-04-14" "1970-04-14" "1970-04-14" "1970-04-14" "1970-04-14"
## [31321] "1970-04-14" "1970-04-14" "1970-04-14" "1970-04-14" "1970-04-14"
## [31326] "1970-04-14" "1970-04-14" "1970-04-14" "1987-06-22" "1987-06-22"
## [31331] "1987-06-22" "1987-06-22" "1987-06-22" "1987-06-22" "1987-06-22"
## [31336] "1987-06-22" "1987-06-22" "1987-06-22" "1987-06-22" "1981-10-12"
## [31341] "1981-10-12" "1981-10-12" "1981-10-12" "1981-10-12" "1981-10-12"
## [31346] "1979-08-16" "1979-08-16" "1979-08-16" "1979-08-16" "1979-08-16"
## [31351] "1979-08-16" "1979-08-16" "1978-12-05" "1978-12-05" "1978-12-05"
## [31356] "1978-12-05" "1978-12-05" "1978-12-05" "1978-12-05" "1978-12-05"
## [31361] "1978-12-05" "1987-09-01" "1987-09-01" "1991-12-03" "1991-12-03"
## [31366] "1991-12-03" "1991-12-03" "1991-12-03" "1991-12-03" "1991-12-03"
## [31371] "1991-12-03" "1991-12-03" "1991-12-03" "1991-12-03" "1991-12-03"
## [31376] "1991-12-03" "1991-12-03" "1991-12-03" "1991-12-03" "1991-12-03"
## [31381] "1986-06-28" "1986-06-28" "1986-06-28" "1986-06-28" "1986-06-28"
## [31386] "1986-06-28" "1986-06-28" "1986-06-28" "1986-06-28" "1986-06-28"
## [31391] "1986-06-28" "1986-06-28" "1980-03-25" "1980-03-25" "1980-03-25"
## [31396] "1980-03-25" "1980-03-25" "1978-06-06" "1978-06-06" "1978-06-06"
## [31401] "1978-06-06" "1983-09-14" "1983-09-14" "1983-09-14" "1983-09-14"
## [31406] "1983-09-14" "1983-09-14" "1983-09-14" "1983-09-14" "1983-09-14"
## [31411] "1983-09-14" "1983-09-14" "1977-08-13" "1977-08-13" "1977-08-13"
## [31416] "1977-08-13" "1977-08-13" "1977-08-13" "1977-08-13" "1977-08-13"
## [31421] "1977-08-13" "1977-08-13" "1977-08-13" "1977-08-13" "1977-08-13"
## [31426] "1977-08-13" "1977-08-13" "1977-08-13" "1977-08-13" "1977-08-13"
## [31431] "1977-08-13" "1984-11-29" "1984-11-29" "1984-11-29" "1984-11-29"
## [31436] "1984-11-29" "1984-11-29" "1984-11-29" "1984-11-29" "1984-11-29"
## [31441] "1984-11-29" "1992-06-24" "1992-06-24" "1992-06-24" "1992-06-24"
## [31446] "1992-06-24" "1992-06-24" "1992-06-24" "1980-12-22" "1980-12-22"
## [31451] "1980-12-22" "1980-12-22" "1980-12-22" "1980-12-22" "1980-12-22"
## [31456] "1980-12-22" "1974-02-19" "1974-02-19" "1974-02-19" "1974-02-19"
## [31461] "1974-02-19" "1974-02-19" "1974-02-19" "1974-02-19" "1974-02-19"
## [31466] "1974-02-19" "1974-02-19" "1974-02-19" "1974-02-19" "1974-02-19"
## [31471] "1974-02-19" "1974-02-19" "1974-02-19" "1974-02-19" "1974-02-19"
## [31476] "1983-04-24" "1983-04-24" "1983-04-24" "1983-04-24" "1974-04-01"
## [31481] "1974-04-01" "1974-04-01" "1974-04-01" "1974-04-01" "1974-04-01"
## [31486] "1974-04-01" "1974-04-01" "1971-05-05" "1971-05-05" "1971-05-05"
## [31491] "1971-05-05" "1971-05-05" "1971-05-05" "1971-05-05" "1971-05-05"
## [31496] "1971-05-05" "1971-05-05" "1971-05-05" "1971-05-05" "1971-05-05"
## [31501] "1971-05-05" "1971-05-05" "1982-04-03" "1982-04-03" "1982-04-03"
## [31506] "1982-04-03" "1982-04-03" "1982-04-03" "1982-04-03" "1982-04-03"
## [31511] "1991-11-09" "1991-11-09" "1991-11-09" "1991-11-09" "1991-11-09"
## [31516] "1991-11-09" "1991-11-09" "1991-11-09" "1991-11-09" "1991-11-09"
## [31521] "1991-11-09" "1991-11-09" "1991-11-09" "1976-11-23" "1976-11-23"
## [31526] "1976-11-23" "1976-11-23" "1976-11-23" "1976-11-23" "1991-07-18"
## [31531] "1991-07-18" "1991-07-18" "1991-07-18" "1991-07-18" "1991-07-18"
## [31536] "1991-07-18" "1991-07-18" "1991-07-18" "1991-07-18" "1988-03-04"
## [31541] "1988-03-04" "1988-03-04" "1988-03-04" "1988-03-04" "1988-03-04"
## [31546] "1988-03-04" "1988-03-04" "1988-03-04" "1988-03-04" "1988-03-04"
## [31551] "1988-03-04" "1988-03-04" "1988-03-04" "1988-03-04" "1988-03-04"
## [31556] "1988-03-04" "1988-03-04" "1988-03-04" "1988-03-04" "1988-03-04"
## [31561] "1982-06-21" "1982-06-21" "1982-06-21" "1982-06-21" "1982-06-21"
## [31566] "1982-06-21" "1982-06-21" "1982-06-21" "1982-06-21" "1982-06-21"
## [31571] "1982-06-21" "1982-06-21" "1976-05-16" "1976-05-16" "1976-05-16"
## [31576] "1976-05-16" "1992-10-19" "1992-10-19" "1992-10-19" "1992-10-19"
## [31581] "1992-10-19" "1982-08-14" "1982-08-14" "1982-08-14" "1982-08-14"
## [31586] "1982-08-14" "1982-08-14" "1982-08-14" "1982-08-14" "1982-08-14"
## [31591] "1982-08-14" "1982-08-14" "1982-08-14" "1986-09-13" "1986-09-13"
## [31596] "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13"
## [31601] "1986-09-13" "1986-09-13" "1986-09-13" "1986-09-13" "1981-08-25"
## [31606] "1981-08-25" "1981-08-25" "1981-08-25" "1981-08-25" "1978-09-04"
## [31611] "1978-09-04" "1978-09-04" "1978-09-04" "1978-09-04" "1978-09-04"
## [31616] "1978-09-04" "1978-09-04" "1978-09-04" "1978-09-04" "1978-09-04"
## [31621] "1978-09-04" "1978-09-04" "1978-09-04" "1978-09-04" "1978-09-04"
## [31626] "1978-09-04" "1978-09-04" "1978-09-04" "1978-09-04" "1978-09-04"
## [31631] "1988-01-02" "1988-01-02" "1988-01-02" "1988-01-02" "1988-01-02"
## [31636] "1988-01-02" "1988-01-02" "1988-01-02" "1988-01-02" "1988-01-02"
## [31641] "1982-12-26" "1982-12-26" "1982-12-26" "1982-12-26" "1980-07-20"
## [31646] "1980-07-20" "1990-01-22" "1990-01-22" "1990-01-22" "1990-01-22"
## [31651] "1990-01-22" "1990-01-22" "1990-01-22" "1990-01-22" "1990-01-22"
## [31656] "1990-01-22" "1990-01-22" "1990-01-22" "1990-01-22" "1990-01-22"
## [31661] "1990-01-22" "1990-01-22" "1976-09-23" "1976-09-23" "1976-09-23"
## [31666] "1976-09-23" "1977-09-11" "1977-09-11" "1977-09-11" "1977-09-11"
## [31671] "1977-09-11" "1977-09-11" "1977-09-11" "1977-09-11" "1977-09-11"
## [31676] "1977-09-11" "1977-09-11" "1977-09-11" "1977-09-11" "1972-10-27"
## [31681] "1972-10-27" "1972-10-27" "1972-10-27" "1972-10-27" "1972-10-27"
## [31686] "1972-10-27" "1972-10-27" "1984-06-26" "1984-06-26" "1984-06-26"
## [31691] "1984-06-26" "1984-06-26" "1984-06-26" "1984-06-26" "1985-06-08"
## [31696] "1985-06-08" "1985-06-08" "1985-06-08" "1985-06-08" "1985-06-08"
## [31701] "1985-06-08" "1985-06-08" "1979-11-25" "1979-11-25" "1979-11-25"
## [31706] "1979-11-25" "1979-11-25" "1979-11-25" "1979-11-25" "1979-11-25"
## [31711] "1979-11-25" "1979-11-25" "1979-11-25" "1979-11-25" "1979-11-25"
## [31716] "1979-11-25" "1979-11-25" "1979-11-25" "1979-11-25" "1974-03-09"
## [31721] "1974-03-09" "1974-03-09" "1971-11-25" "1971-11-25" "1971-11-25"
## [31726] "1971-11-25" "1971-11-25" "1972-04-02" "1972-04-02" "1972-04-02"
## [31731] "1972-04-02" "1972-04-02" "1972-04-02" "1972-04-02" "1972-04-02"
## [31736] "1972-04-02" "1972-04-02" "1972-04-02" "1973-08-23" "1973-08-23"
## [31741] "1973-08-23" "1973-08-23" "1973-08-23" "1973-08-23" "1986-03-13"
## [31746] "1986-03-13" "1988-11-10" "1988-11-10" "1988-11-10" "1988-11-10"
## [31751] "1988-11-10" "1988-11-10" "1988-11-10" "1988-11-10" "1988-11-10"
## [31756] "1988-11-10" "1988-11-10" "1988-11-10" "1988-11-10" "1977-11-10"
## [31761] "1977-11-10" "1977-11-10" "1977-11-10" "1973-03-09" "1973-03-09"
## [31766] "1973-03-09" "1973-03-09" "1973-03-09" "1973-03-09" "1973-03-09"
## [31771] "1973-03-09" "1973-03-09" "1973-03-09" "1973-03-09" "1973-03-09"
## [31776] "1973-03-09" "1973-03-09" "1973-03-09" "1973-03-09" "1973-03-09"
## [31781] "1973-03-09" "1973-03-09" "1973-03-09" "1973-03-09" "1973-03-09"
## [31786] "1973-03-09" "1970-09-01" "1970-09-01" "1970-09-01" "1970-09-01"
## [31791] "1970-09-01" "1970-09-01" "1970-09-01" "1970-09-01" "1970-09-01"
## [31796] "1970-09-01" "1970-09-01" "1970-09-01" "1970-09-01" "1970-09-01"
## [31801] "1970-09-01" "1992-10-03" "1992-10-03" "1992-10-03" "1992-10-03"
## [31806] "1992-10-03" "1992-10-03" "1992-10-03" "1992-10-03" "1992-10-03"
## [31811] "1992-10-03" "1992-10-03" "1992-10-03" "1992-10-03" "1992-10-03"
## [31816] "1992-10-03" "1992-10-03" "1992-10-03" "1992-10-03" "1992-10-03"
## [31821] "1992-10-03" "1992-10-03" "1992-10-03" "1992-10-03" "1992-10-03"
## [31826] "1981-08-26" "1981-08-26" "1981-08-26" "1989-02-21" "1989-02-21"
## [31831] "1989-02-21" "1989-02-21" "1989-02-21" "1976-05-14" "1976-05-14"
## [31836] "1976-05-14" "1976-05-14" "1976-05-14" "1976-05-14" "1976-05-14"
## [31841] "1976-05-14" "1973-02-20" "1973-02-20" "1973-02-20" "1973-02-20"
## [31846] "1973-02-20" "1991-11-27" "1991-11-27" "1991-11-27" "1991-11-27"
## [31851] "1991-11-27" "1971-05-21" "1971-05-21" "1971-05-21" "1971-05-21"
## [31856] "1971-05-21" "1971-05-21" "1971-05-21" "1971-05-21" "1971-05-21"
## [31861] "1974-06-03" "1974-06-03" "1988-07-20" "1988-07-20" "1988-07-20"
## [31866] "1988-07-20" "1988-07-20" "1988-07-20" "1988-07-20" "1988-07-20"
## [31871] "1988-04-12" "1988-04-12" "1988-04-12" "1970-04-19" "1970-04-19"
## [31876] "1970-04-19" "1970-04-19" "1970-04-19" "1970-04-19" "1970-04-19"
## [31881] "1970-04-19" "1979-01-10" "1979-01-10" "1979-01-10" "1979-01-10"
## [31886] "1979-01-10" "1979-01-10" "1976-08-15" "1976-08-15" "1976-08-15"
## [31891] "1976-08-15" "1976-08-15" "1976-08-15" "1976-08-15" "1976-08-15"
## [31896] "1976-08-15" "1976-08-15" "1976-08-15" "1976-08-15" "1976-08-15"
## [31901] "1992-05-01" "1992-05-01" "1992-05-01" "1992-05-01" "1992-05-01"
## [31906] "1992-05-01" "1992-05-01" "1992-05-01" "1992-05-01" "1992-05-01"
## [31911] "1992-05-01" "1992-05-01" "1992-05-01" "1992-05-01" "1992-05-01"
## [31916] "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09"
## [31921] "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09"
## [31926] "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09"
## [31931] "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09"
## [31936] "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09"
## [31941] "1973-11-09" "1973-11-09" "1973-11-09" "1973-11-09" "1989-07-28"
## [31946] "1989-07-28" "1989-07-28" "1989-07-28" "1989-07-28" "1989-07-28"
## [31951] "1989-07-28" "1989-07-28" "1989-07-28" "1989-07-28" "1989-07-28"
## [31956] "1989-07-28" "1989-07-28" "1989-07-28" "1979-07-09" "1979-07-09"
## [31961] "1979-07-09" "1979-07-09" "1979-07-09" "1992-09-11" "1992-09-11"
## [31966] "1987-06-28" "1987-06-28" "1987-06-28" "1987-06-28" "1987-06-28"
## [31971] "1975-12-03" "1975-12-03" "1975-12-03" "1975-12-03" "1975-12-03"
## [31976] "1975-12-03" "1975-12-03" "1975-12-03" "1975-12-03" "1975-12-03"
## [31981] "1975-12-03" "1975-12-03" "1975-12-03" "1975-12-03" "1975-12-03"
## [31986] "1975-12-03" "1975-12-03" "1975-12-03" "1975-12-03" "1975-12-03"
## [31991] "1975-12-03" "1985-05-11" "1985-05-11" "1985-05-11" "1985-05-11"
## [31996] "1985-05-11" "1985-05-11" "1985-05-11" "1985-05-11" "1985-05-11"
## [32001] "1985-05-11" "1985-05-11" "1985-05-11" "1985-05-11" "1981-07-05"
## [32006] "1981-07-05" "1977-12-28" "1977-12-28" "1977-12-28" "1977-12-28"
## [32011] "1977-12-28" "1977-12-28" "1977-12-28" "1977-12-28" "1977-12-28"
## [32016] "1977-12-28" "1977-12-28" "1977-12-28" "1977-12-28" "1977-12-28"
## [32021] "1977-12-28" "1992-03-13" "1992-03-13" "1992-03-13" "1992-03-13"
## [32026] "1992-03-13" "1992-03-13" "1992-03-13" "1992-03-13" "1992-03-13"
## [32031] "1992-03-13" "1992-03-13" "1992-03-13" "1982-03-29" "1982-03-29"
## [32036] "1982-03-29" "1982-03-29" "1982-03-29" "1982-03-29" "1982-03-29"
## [32041] "1982-03-29" "1971-11-13" "1971-11-13" "1971-11-13" "1971-11-13"
## [32046] "1976-11-26" "1976-11-26" "1976-11-26" "1976-11-26" "1976-11-26"
## [32051] "1976-11-26" "1976-11-26" "1977-01-02" "1977-01-02" "1977-01-02"
## [32056] "1977-01-02" "1977-01-02" "1977-01-02" "1977-01-02" "1977-01-02"
## [32061] "1977-01-02" "1989-05-12" "1989-05-12" "1989-05-12" "1989-05-12"
## [32066] "1989-05-12" "1989-05-12" "1989-05-12" "1989-10-11" "1989-10-11"
## [32071] "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11"
## [32076] "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11"
## [32081] "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11" "1989-10-11"
## [32086] "1986-03-08" "1986-03-08" "1986-03-08" "1986-03-08" "1970-09-29"
## [32091] "1970-09-29" "1970-09-29" "1970-09-29" "1970-09-29" "1970-09-29"
## [32096] "1970-09-29" "1970-09-29" "1970-09-29" "1970-09-29" "1970-09-29"
## [32101] "1970-09-29" "1970-09-29" "1970-09-29" "1970-10-14" "1970-10-14"
## [32106] "1970-10-14" "1970-10-14" "1970-10-14" "1970-10-14" "1970-10-14"
## [32111] "1970-10-14" "1970-10-14" "1974-04-15" "1974-04-15" "1974-04-15"
## [32116] "1975-01-07" "1975-01-07" "1975-01-07" "1975-01-07" "1975-01-07"
## [32121] "1975-01-07" "1977-03-27" "1977-03-27" "1977-03-27" "1977-03-27"
## [32126] "1977-03-27" "1977-03-27" "1977-03-27" "1977-03-27" "1977-03-27"
## [32131] "1977-03-27" "1970-04-22" "1970-04-22" "1970-04-22" "1970-04-22"
## [32136] "1970-04-22" "1970-04-22" "1975-10-02" "1975-10-02" "1975-10-02"
## [32141] "1975-10-02" "1975-10-02" "1975-10-02" "1975-10-02" "1975-10-02"
## [32146] "1975-10-02" "1975-10-02" "1975-10-02" "1975-10-02" "1975-10-02"
## [32151] "1975-10-02" "1975-10-02" "1975-10-02" "1975-10-02" "1975-10-02"
## [32156] "1975-10-02" "1975-10-02" "1975-10-02" "1992-03-17" "1992-03-17"
## [32161] "1992-03-17" "1992-03-17" "1973-02-24" "1973-02-24" "1973-02-24"
## [32166] "1973-02-24" "1973-02-24" "1973-02-24" "1973-02-24" "1973-02-24"
## [32171] "1973-02-24" "1973-02-24" "1973-02-24" "1984-01-12" "1984-01-12"
## [32176] "1984-01-12" "1984-01-12" "1984-01-12" "1984-01-12" "1984-01-12"
## [32181] "1984-01-12" "1983-06-10" "1983-06-10" "1974-10-23" "1974-10-23"
## [32186] "1974-10-23" "1974-10-23" "1974-10-23" "1974-10-23" "1974-10-23"
## [32191] "1974-10-23" "1974-10-23" "1974-10-23" "1974-10-23" "1974-10-23"
## [32196] "1974-10-23" "1974-10-23" "1974-10-23" "1974-10-23" "1974-10-23"
## [32201] "1974-10-23" "1974-10-23" "1974-10-23" "1974-10-23" "1974-10-23"
## [32206] "1982-10-12" "1982-10-12" "1982-10-12" "1982-10-12" "1982-10-12"
## [32211] "1982-05-05" "1982-05-05" "1982-05-05" "1982-05-05" "1982-05-05"
## [32216] "1982-05-05" "1982-05-05" "1982-05-05" "1973-02-15" "1973-02-15"
## [32221] "1973-02-15" "1973-02-15" "1973-02-15" "1973-08-20" "1973-08-20"
## [32226] "1973-08-20" "1973-08-20" "1973-08-20" "1973-08-20" "1973-08-20"
## [32231] "1973-08-20" "1973-08-20" "1973-08-20" "1973-08-20" "1973-08-20"
## [32236] "1973-08-20" "1973-08-20" "1973-08-20" "1973-08-20" "1973-09-17"
## [32241] "1973-09-17" "1973-09-17" "1973-09-17" "1973-09-17" "1973-09-17"
## [32246] "1973-09-17" "1973-09-17" "1973-09-17" "1973-09-17" "1973-09-17"
## [32251] "1973-09-17" "1973-09-17" "1973-09-17" "1973-09-17" "1979-03-09"
## [32256] "1979-03-09" "1979-03-09" "1979-03-09" "1979-03-09" "1991-10-14"
## [32261] "1991-10-14" "1991-10-14" "1991-10-14" "1991-10-14" "1991-10-14"
## [32266] "1991-10-14" "1991-10-14" "1991-10-14" "1991-10-14" "1991-10-14"
## [32271] "1991-10-14" "1991-10-14" "1991-10-14" "1991-10-14" "1981-08-02"
## [32276] "1981-08-02" "1981-08-02" "1981-08-02" "1981-08-02" "1981-08-02"
## [32281] "1981-08-02" "1981-08-02" "1981-08-02" "1981-08-02" "1981-08-02"
## [32286] "1981-08-02" "1981-08-02" "1981-08-02" "1982-04-24" "1982-04-24"
## [32291] "1982-04-24" "1982-04-24" "1982-04-24" "1982-04-24" "1970-03-17"
## [32296] "1970-03-17" "1975-12-13" "1975-12-13" "1975-12-13" "1975-12-13"
## [32301] "1975-12-13" "1975-12-13" "1975-12-13" "1975-12-13" "1975-12-13"
## [32306] "1975-12-13" "1975-12-13" "1975-12-13" "1975-12-13" "1975-12-13"
## [32311] "1975-12-13" "1988-11-08" "1988-11-08" "1988-11-08" "1984-01-18"
## [32316] "1984-01-18" "1984-01-18" "1984-01-18" "1984-01-18" "1984-01-18"
## [32321] "1984-01-18" "1984-01-18" "1984-01-18" "1984-01-18" "1977-12-20"
## [32326] "1977-12-20" "1977-12-20" "1977-12-20" "1977-12-20" "1977-12-20"
## [32331] "1992-08-10" "1992-08-10" "1992-08-10" "1992-08-10" "1992-08-10"
## [32336] "1992-08-10" "1992-08-10" "1992-08-10" "1992-08-10" "1992-08-10"
## [32341] "1992-08-10" "1992-08-10" "1992-08-10" "1992-08-10" "1979-03-14"
## [32346] "1979-03-14" "1985-01-28" "1985-01-28" "1985-01-28" "1985-01-28"
## [32351] "1985-01-28" "1985-01-28" "1985-01-28" "1990-08-09" "1990-08-09"
## [32356] "1990-08-09" "1990-08-09" "1990-08-09" "1990-08-09" "1974-11-05"
## [32361] "1974-11-05" "1974-11-05" "1974-11-05" "1974-11-05" "1974-11-05"
## [32366] "1974-11-05" "1974-11-05" "1974-11-05" "1974-11-05" "1974-11-05"
## [32371] "1974-11-05" "1974-11-05" "1974-11-05" "1971-05-22" "1971-05-22"
## [32376] "1971-05-22" "1971-05-22" "1971-05-22" "1971-05-22" "1971-05-22"
## [32381] "1985-02-06" "1985-02-06" "1985-02-06" "1985-02-06" "1985-02-06"
## [32386] "1985-02-06" "1975-06-08" "1975-06-08" "1975-06-08" "1975-06-08"
## [32391] "1978-03-10" "1978-03-10" "1978-03-10" "1978-03-10" "1988-09-18"
## [32396] "1988-09-18" "1988-09-18" "1987-06-18" "1987-06-18" "1987-06-18"
## [32401] "1987-06-18" "1987-06-18" "1987-06-18" "1987-06-18" "1987-06-18"
## [32406] "1987-06-18" "1987-06-18" "1987-06-18" "1987-06-18" "1987-06-18"
## [32411] "1987-06-18" "1987-06-18" "1987-12-12" "1987-12-12" "1987-12-12"
## [32416] "1987-12-12" "1987-12-12" "1987-12-12" "1987-12-12" "1981-06-23"
## [32421] "1981-06-23" "1981-06-23" "1981-06-23" "1981-06-23" "1981-06-23"
## [32426] "1981-06-23" "1981-06-23" "1981-06-23" "1981-06-23" "1981-06-23"
## [32431] "1981-06-23" "1977-03-21" "1977-03-21" "1977-10-14" "1977-10-14"
## [32436] "1977-10-14" "1977-10-14" "1977-10-14" "1977-10-14" "1977-10-14"
## [32441] "1976-09-25" "1976-09-25" "1976-09-25" "1976-09-25" "1976-09-25"
## [32446] "1976-09-25" "1976-09-25" "1976-09-25" "1976-09-25" "1976-09-25"
## [32451] "1990-11-01" "1990-11-01" "1990-11-01" "1990-11-01" "1990-11-01"
## [32456] "1990-11-01" "1990-11-01" "1990-11-01" "1990-11-01" "1990-11-01"
## [32461] "1990-11-01" "1977-03-17" "1977-03-17" "1977-03-17" "1977-03-17"
## [32466] "1977-03-17" "1977-03-17" "1979-03-04" "1979-03-04" "1992-03-23"
## [32471] "1992-03-23" "1992-03-23" "1992-03-23" "1992-03-23" "1976-05-17"
## [32476] "1976-05-17" "1976-05-17" "1976-05-17" "1976-05-17" "1976-05-17"
## [32481] "1976-05-17" "1976-05-17" "1980-02-20" "1980-02-20" "1980-02-20"
## [32486] "1980-02-20" "1980-02-20" "1980-02-20" "1974-05-02" "1974-05-02"
## [32491] "1974-05-02" "1974-05-02" "1974-05-02" "1974-05-02" "1974-05-02"
## [32496] "1974-05-02" "1974-05-02" "1974-05-02" "1974-05-02" "1974-05-02"
## [32501] "1974-05-02" "1974-05-02" "1974-05-02" "1974-05-02" "1974-05-02"
## [32506] "1990-08-07" "1990-08-07" "1990-08-07" "1990-08-07" "1990-08-07"
## [32511] "1990-08-07" "1990-08-07" "1990-08-07" "1990-08-07" "1990-08-07"
## [32516] "1990-08-07" "1990-08-07" "1990-08-07" "1990-08-07" "1990-08-07"
## [32521] "1990-08-07" "1971-02-15" "1971-02-15" "1971-02-15" "1971-02-15"
## [32526] "1971-02-15" "1971-02-15" "1971-02-15" "1971-02-15" "1971-02-15"
## [32531] "1971-02-15" "1971-02-15" "1971-02-15" "1971-02-15" "1971-02-15"
## [32536] "1989-08-22" "1989-08-22" "1989-08-22" "1973-12-06" "1973-12-06"
## [32541] "1973-12-06" "1973-12-06" "1973-05-21" "1973-05-21" "1990-06-05"
## [32546] "1990-06-05" "1990-06-05" "1990-06-05" "1990-06-05" "1990-06-05"
## [32551] "1990-06-05" "1983-01-22" "1983-01-22" "1983-01-22" "1983-01-22"
## [32556] "1970-02-19" "1970-02-19" "1970-02-19" "1970-02-19" "1970-02-19"
## [32561] "1970-02-19" "1970-02-19" "1970-02-19" "1983-05-17" "1983-05-17"
## [32566] "1983-05-17" "1983-05-17" "1983-05-17" "1983-05-17" "1983-05-17"
## [32571] "1983-05-17" "1983-05-17" "1990-01-19" "1990-01-19" "1990-01-19"
## [32576] "1990-01-19" "1990-01-19" "1990-01-19" "1990-01-19" "1990-01-19"
## [32581] "1990-01-19" "1990-01-19" "1990-01-19" "1990-01-19" "1990-01-19"
## [32586] "1990-01-19" "1984-04-11" "1984-04-11" "1984-04-11" "1984-04-11"
## [32591] "1984-04-11" "1984-04-11" "1984-04-11" "1984-04-11" "1984-04-11"
## [32596] "1984-04-11" "1984-04-11" "1984-04-11" "1984-04-11" "1984-04-11"
## [32601] "1984-04-11" "1984-04-11" "1981-08-25" "1981-08-25" "1981-08-25"
## [32606] "1981-08-25" "1971-08-12" "1971-08-12" "1971-08-12" "1971-08-12"
## [32611] "1971-08-12" "1971-08-12" "1971-08-12" "1971-08-12" "1976-11-01"
## [32616] "1976-11-01" "1976-11-01" "1976-11-01" "1976-11-01" "1976-11-01"
## [32621] "1976-11-01" "1976-11-01" "1976-11-01" "1976-11-01" "1976-11-01"
## [32626] "1976-11-01" "1976-11-01" "1976-11-01" "1976-11-01" "1976-11-01"
## [32631] "1976-11-01" "1976-11-01" "1976-11-01" "1976-11-01" "1976-11-01"
## [32636] "1976-11-01" "1990-05-11" "1990-05-11" "1989-10-22" "1989-10-22"
## [32641] "1986-08-16" "1986-08-16" "1986-08-16" "1986-08-16" "1986-08-16"
## [32646] "1986-08-16" "1986-08-16" "1986-08-16" "1986-08-16" "1986-08-16"
## [32651] "1986-08-16" "1986-08-16" "1987-05-24" "1987-05-24" "1987-05-24"
## [32656] "1987-05-24" "1987-05-24" "1987-05-24" "1976-02-17" "1976-02-17"
## [32661] "1976-02-17" "1976-02-17" "1991-10-17" "1991-10-17" "1991-10-17"
## [32666] "1991-10-17" "1991-10-17" "1991-10-17" "1991-10-17" "1991-10-17"
## [32671] "1991-10-17" "1991-10-17" "1991-10-17" "1991-10-17" "1991-10-17"
## [32676] "1991-10-17" "1991-10-17" "1991-10-17" "1991-10-17" "1991-10-17"
## [32681] "1991-10-17" "1991-10-17" "1991-10-17" "1991-10-17" "1991-10-17"
## [32686] "1991-10-17" "1991-10-17" "1991-10-17" "1991-10-17" "1975-09-06"
## [32691] "1975-09-06" "1975-09-06" "1975-09-06" "1975-09-06" "1975-09-06"
## [32696] "1983-10-19" "1983-10-19" "1983-10-19" "1983-10-19" "1983-10-19"
## [32701] "1990-04-29" "1990-04-29" "1990-04-29" "1990-04-29" "1990-04-29"
## [32706] "1990-04-29" "1990-04-29" "1990-04-29" "1990-04-29" "1985-03-29"
## [32711] "1985-03-29" "1985-03-29" "1985-03-29" "1991-09-23" "1991-09-23"
## [32716] "1991-09-23" "1991-09-23" "1991-09-23" "1991-09-23" "1991-09-23"
## [32721] "1991-09-23" "1982-07-17" "1982-07-17" "1982-07-17" "1976-01-12"
## [32726] "1976-01-12" "1976-01-12" "1976-01-12" "1976-01-12" "1976-01-12"
## [32731] "1976-01-12" "1976-01-12" "1990-09-21" "1990-09-21" "1990-09-21"
## [32736] "1990-09-21" "1990-09-21" "1990-09-21" "1990-09-21" "1990-09-21"
## [32741] "1990-09-21" "1975-01-12" "1975-01-12" "1975-01-12" "1975-01-12"
## [32746] "1975-01-12" "1975-01-12" "1975-01-12" "1975-01-12" "1975-01-12"
## [32751] "1983-08-01" "1983-08-01" "1983-08-01" "1983-08-01" "1983-08-01"
## [32756] "1983-08-01" "1983-08-01" "1983-08-01" "1983-08-01" "1983-08-01"
## [32761] "1983-08-01" "1980-09-25" "1980-09-25" "1980-09-25" "1980-09-25"
## [32766] "1980-09-25" "1980-09-25" "1970-11-14" "1970-11-14" "1970-11-14"
## [32771] "1970-11-14" "1970-11-14" "1970-11-14" "1970-11-14" "1988-03-19"
## [32776] "1988-03-19" "1988-03-19" "1988-03-19" "1988-03-19" "1988-03-19"
## [32781] "1974-01-08" "1974-01-08" "1974-01-08" "1974-01-08" "1974-01-08"
## [32786] "1974-01-08" "1974-01-08" "1974-01-08" "1974-01-08" "1974-01-08"
## [32791] "1974-01-08" "1974-01-08" "1974-01-08" "1970-07-11" "1970-07-11"
## [32796] "1970-07-11" "1970-07-11" "1970-07-11" "1970-07-11" "1970-07-11"
## [32801] "1970-07-11" "1970-07-11" "1970-07-11" "1981-01-12" "1981-01-12"
## [32806] "1981-01-12" "1981-01-12" "1981-01-12" "1981-01-12" "1981-01-12"
## [32811] "1981-01-12" "1981-01-12" "1981-01-12" "1974-12-24" "1974-12-24"
## [32816] "1974-12-24" "1974-12-24" "1974-12-24" "1974-12-24" "1974-12-24"
## [32821] "1990-05-21" "1990-05-21" "1990-05-21" "1990-05-21" "1990-05-21"
## [32826] "1990-05-21" "1990-05-21" "1990-05-21" "1990-05-21" "1990-05-21"
## [32831] "1991-11-02" "1991-11-02" "1991-11-02" "1991-11-02" "1992-11-08"
## [32836] "1992-11-08" "1992-11-08" "1992-11-08" "1992-11-08" "1992-11-08"
## [32841] "1992-11-08" "1992-11-08" "1972-07-06" "1972-07-06" "1972-07-06"
## [32846] "1972-07-06" "1972-07-06" "1972-07-06" "1972-07-06" "1972-07-06"
## [32851] "1972-07-06" "1972-07-06" "1972-07-06" "1972-07-06" "1975-09-20"
## [32856] "1975-09-20" "1975-09-20" "1975-09-20" "1975-09-20" "1975-09-20"
## [32861] "1975-09-20" "1975-09-20" "1975-09-20" "1975-09-20" "1975-09-20"
## [32866] "1975-09-20" "1975-09-20" "1975-09-20" "1975-09-20" "1975-09-20"
## [32871] "1971-03-25" "1971-03-25" "1991-12-16" "1991-12-16" "1991-12-16"
## [32876] "1991-12-16" "1991-12-16" "1991-12-16" "1991-12-16" "1991-12-16"
## [32881] "1991-12-16" "1991-12-16" "1991-12-16" "1991-12-16" "1991-12-16"
## [32886] "1991-12-16" "1991-12-16" "1979-02-20" "1979-02-20" "1979-02-20"
## [32891] "1979-02-20" "1979-02-20" "1979-02-20" "1989-12-20" "1989-12-20"
## [32896] "1989-12-20" "1989-12-20" "1989-12-20" "1989-12-20" "1989-12-20"
## [32901] "1989-12-20" "1989-12-20" "1978-08-08" "1978-08-08" "1978-08-08"
## [32906] "1978-08-08" "1978-08-08" "1978-08-08" "1978-08-08" "1978-08-08"
## [32911] "1978-08-08" "1978-08-08" "1978-08-08" "1978-08-08" "1978-08-08"
## [32916] "1978-08-08" "1975-01-04" "1975-01-04" "1975-01-04" "1975-01-04"
## [32921] "1975-01-04" "1975-01-04" "1975-01-04" "1975-01-04" "1975-01-04"
## [32926] "1979-06-07" "1979-06-07" "1979-06-07" "1979-06-07" "1979-06-07"
## [32931] "1972-05-02" "1972-05-02" "1972-05-02" "1972-05-02" "1972-05-02"
## [32936] "1972-05-02" "1972-05-02" "1972-05-02" "1972-05-02" "1972-05-02"
## [32941] "1972-05-02" "1972-05-02" "1972-05-02" "1980-06-05" "1980-06-05"
## [32946] "1980-06-05" "1980-06-05" "1980-06-05" "1980-06-05" "1980-06-05"
## [32951] "1980-06-05" "1980-06-05" "1980-06-05" "1980-06-05" "1980-06-05"
## [32956] "1983-07-09" "1983-07-09" "1983-07-09" "1989-10-05" "1989-10-05"
## [32961] "1989-10-05" "1989-10-05" "1989-10-05" "1989-10-05" "1989-10-05"
## [32966] "1989-10-05" "1989-10-05" "1989-10-05" "1989-10-05" "1989-10-05"
## [32971] "1989-10-05" "1989-10-05" "1989-10-05" "1989-10-05" "1981-09-22"
## [32976] "1981-09-22" "1981-09-22" "1981-09-22" "1981-09-22" "1981-09-22"
## [32981] "1981-09-22" "1981-09-22" "1981-09-22" "1981-09-22" "1981-09-22"
## [32986] "1981-09-22" "1981-09-22" "1981-09-22" "1981-09-22" "1981-09-22"
## [32991] "1982-06-19" "1982-06-19" "1982-06-19" "1982-06-19" "1986-11-06"
## [32996] "1986-11-06" "1986-11-06" "1986-11-06" "1972-12-19" "1972-12-19"
## [33001] "1984-01-22" "1984-01-22" "1984-01-22" "1984-01-22" "1984-01-22"
## [33006] "1984-01-22" "1984-01-22" "1984-01-22" "1984-01-22" "1984-01-22"
## [33011] "1984-01-22" "1984-01-22" "1984-01-22" "1978-04-21" "1978-04-21"
## [33016] "1978-04-21" "1978-04-21" "1978-04-21" "1978-04-21" "1978-04-21"
## [33021] "1978-04-21" "1989-05-16" "1989-05-16" "1989-05-16" "1989-05-16"
## [33026] "1989-05-16" "1989-05-16" "1989-05-16" "1989-05-16" "1989-05-16"
## [33031] "1989-05-16" "1989-05-16" "1989-05-16" "1989-05-16" "1989-05-16"
## [33036] "1988-05-15" "1988-05-15" "1988-05-15" "1988-05-15" "1991-09-17"
## [33041] "1991-09-17" "1991-09-17" "1991-09-17" "1991-09-17" "1991-09-17"
## [33046] "1991-09-17" "1991-09-17" "1991-09-17" "1991-09-17" "1991-09-17"
## [33051] "1991-09-17" "1991-09-17" "1985-04-19" "1985-04-19" "1985-04-19"
## [33056] "1985-04-19" "1985-04-19" "1973-08-11" "1973-08-11" "1972-01-01"
## [33061] "1972-01-01" "1972-01-01" "1972-01-01" "1972-01-01" "1972-01-01"
## [33066] "1972-01-01" "1988-03-12" "1988-03-12" "1988-03-12" "1988-03-12"
## [33071] "1988-03-12" "1988-03-12" "1980-06-06" "1980-06-06" "1980-06-06"
## [33076] "1980-06-06" "1980-06-06" "1977-11-20" "1977-11-20" "1977-11-20"
## [33081] "1977-11-20" "1977-11-20" "1977-11-20" "1977-11-20" "1977-11-20"
## [33086] "1977-11-20" "1977-11-20" "1991-04-06" "1991-04-06" "1991-04-06"
## [33091] "1991-04-06" "1991-04-06" "1971-01-22" "1971-01-22" "1971-01-22"
## [33096] "1971-01-22" "1971-01-22" "1985-02-23" "1985-02-23" "1985-02-23"
## [33101] "1985-02-23" "1985-02-23" "1982-07-28" "1982-07-28" "1982-07-28"
## [33106] "1982-07-28" "1982-07-28" "1982-07-28" "1982-07-28" "1982-07-28"
## [33111] "1982-07-28" "1982-07-28" "1982-07-28" "1982-07-28" "1982-07-28"
## [33116] "1982-07-28" "1982-07-28" "1988-11-04" "1988-11-04" "1988-11-04"
## [33121] "1988-11-04" "1988-11-04" "1988-11-04" "1988-11-04" "1988-11-04"
## [33126] "1988-11-04" "1988-11-04" "1988-11-04" "1988-11-04" "1988-11-04"
## [33131] "1988-11-04" "1983-10-07" "1983-10-07" "1983-10-07" "1975-08-05"
## [33136] "1975-08-05" "1985-02-05" "1985-02-05" "1985-02-05" "1985-02-05"
## [33141] "1985-02-05" "1985-02-05" "1985-02-05" "1985-02-05" "1985-02-05"
## [33146] "1985-02-05" "1985-02-05" "1983-09-13" "1983-09-13" "1988-03-22"
## [33151] "1988-03-22" "1985-08-06" "1985-08-06" "1985-08-06" "1985-08-06"
## [33156] "1985-08-06" "1985-08-06" "1985-08-06" "1985-08-06" "1985-08-06"
## [33161] "1985-08-06" "1985-08-06" "1985-08-06" "1985-08-06" "1985-08-06"
## [33166] "1985-08-06" "1985-08-06" "1985-08-06" "1991-05-27" "1991-05-27"
## [33171] "1991-05-27" "1988-12-01" "1988-12-01" "1988-12-01" "1988-12-01"
## [33176] "1988-12-01" "1988-12-01" "1988-12-01" "1988-12-01" "1988-12-01"
## [33181] "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02"
## [33186] "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02"
## [33191] "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02"
## [33196] "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02"
## [33201] "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02"
## [33206] "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02" "1973-05-02"
## [33211] "1973-05-02" "1986-07-26" "1986-07-26" "1986-07-26" "1986-07-26"
## [33216] "1986-07-26" "1970-03-22" "1970-03-22" "1970-03-22" "1970-03-22"
## [33221] "1970-03-22" "1970-03-22" "1970-03-22" "1970-03-22" "1970-03-22"
## [33226] "1970-03-22" "1984-07-11" "1984-07-11" "1984-07-11" "1984-07-11"
## [33231] "1984-07-11" "1984-07-11" "1973-03-11" "1973-03-11" "1981-10-02"
## [33236] "1981-10-02" "1981-10-02" "1981-10-02" "1981-10-02" "1981-10-02"
## [33241] "1981-10-02" "1981-10-02" "1981-10-02" "1988-07-24" "1988-07-24"
## [33246] "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24"
## [33251] "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24"
## [33256] "1988-07-24" "1989-04-21" "1989-04-21" "1989-04-21" "1989-04-21"
## [33261] "1989-04-21" "1976-03-09" "1976-03-09" "1977-06-18" "1977-06-18"
## [33266] "1977-06-18" "1977-06-18" "1977-06-18" "1977-06-18" "1977-06-18"
## [33271] "1972-08-03" "1972-08-03" "1972-08-03" "1972-08-03" "1972-08-03"
## [33276] "1972-08-03" "1980-01-17" "1980-01-17" "1980-01-17" "1980-01-17"
## [33281] "1980-01-17" "1980-01-17" "1980-01-17" "1980-01-17" "1980-01-17"
## [33286] "1980-01-17" "1980-12-02" "1980-12-02" "1980-12-02" "1980-12-02"
## [33291] "1980-12-02" "1980-12-02" "1980-12-02" "1980-12-02" "1980-12-02"
## [33296] "1980-12-02" "1980-12-02" "1980-12-02" "1980-12-02" "1980-12-02"
## [33301] "1980-12-02" "1991-05-28" "1991-05-28" "1991-05-28" "1991-05-28"
## [33306] "1991-05-28" "1991-05-28" "1991-05-28" "1991-05-28" "1991-05-28"
## [33311] "1991-05-28" "1991-05-28" "1991-05-28" "1979-08-14" "1979-08-14"
## [33316] "1979-08-14" "1979-08-14" "1979-08-14" "1978-01-20" "1978-01-20"
## [33321] "1978-01-20" "1978-01-20" "1978-01-20" "1978-01-20" "1976-04-18"
## [33326] "1976-04-18" "1991-12-22" "1991-12-22" "1991-12-22" "1991-12-22"
## [33331] "1991-12-22" "1986-11-04" "1986-11-04" "1986-11-04" "1986-11-04"
## [33336] "1986-11-04" "1986-11-04" "1986-11-04" "1986-11-04" "1986-11-04"
## [33341] "1986-11-04" "1986-11-04" "1986-11-04" "1986-11-04" "1986-11-04"
## [33346] "1986-11-04" "1986-11-04" "1986-11-04" "1986-11-04" "1975-07-06"
## [33351] "1975-07-06" "1975-07-06" "1975-07-06" "1975-07-06" "1975-07-06"
## [33356] "1975-07-06" "1975-07-06" "1990-07-20" "1990-07-20" "1990-07-20"
## [33361] "1990-07-20" "1990-07-20" "1990-07-20" "1990-07-20" "1990-07-20"
## [33366] "1990-07-20" "1974-07-03" "1974-07-03" "1974-07-03" "1974-07-03"
## [33371] "1974-07-03" "1974-07-03" "1974-07-03" "1974-07-03" "1974-07-03"
## [33376] "1974-07-03" "1974-07-03" "1984-09-07" "1984-09-07" "1984-09-07"
## [33381] "1984-09-07" "1984-09-07" "1984-09-07" "1984-09-07" "1984-09-07"
## [33386] "1984-09-07" "1984-09-07" "1984-09-07" "1984-09-07" "1984-09-07"
## [33391] "1984-09-07" "1973-08-23" "1973-08-23" "1973-08-23" "1973-08-23"
## [33396] "1973-08-23" "1973-08-23" "1973-08-23" "1973-08-23" "1973-08-23"
## [33401] "1973-08-23" "1973-08-23" "1973-08-23" "1989-08-11" "1989-08-11"
## [33406] "1989-08-11" "1989-08-11" "1989-08-11" "1989-08-11" "1989-08-11"
## [33411] "1989-08-11" "1989-08-11" "1989-08-11" "1991-09-19" "1991-09-19"
## [33416] "1991-09-19" "1991-09-19" "1991-09-19" "1991-09-19" "1991-09-19"
## [33421] "1991-09-19" "1987-09-24" "1987-09-24" "1987-09-24" "1987-09-24"
## [33426] "1987-09-24" "1987-09-24" "1987-09-24" "1987-09-24" "1987-09-24"
## [33431] "1986-06-12" "1986-06-12" "1986-06-12" "1986-06-12" "1986-06-12"
## [33436] "1974-04-22" "1974-04-22" "1974-04-22" "1974-04-22" "1974-04-22"
## [33441] "1974-04-22" "1974-04-22" "1978-11-27" "1978-11-27" "1978-11-27"
## [33446] "1978-11-27" "1978-11-27" "1978-11-27" "1978-11-27" "1978-11-27"
## [33451] "1978-11-27" "1978-11-27" "1978-11-27" "1978-11-27" "1978-11-27"
## [33456] "1978-11-27" "1978-11-27" "1989-04-28" "1989-04-28" "1989-04-28"
## [33461] "1989-04-28" "1989-04-28" "1989-04-28" "1989-04-28" "1978-04-05"
## [33466] "1978-04-05" "1978-04-05" "1978-04-05" "1978-04-05" "1978-04-05"
## [33471] "1978-04-05" "1978-04-05" "1978-04-05" "1975-05-28" "1975-05-28"
## [33476] "1975-05-28" "1975-05-28" "1975-05-28" "1975-05-28" "1975-05-28"
## [33481] "1975-05-28" "1975-05-28" "1975-05-28" "1975-05-28" "1975-05-28"
## [33486] "1975-05-28" "1975-05-28" "1975-05-28" "1975-05-28" "1975-05-28"
## [33491] "1975-05-28" "1983-02-16" "1983-02-16" "1983-02-16" "1991-03-05"
## [33496] "1991-03-05" "1991-03-05" "1991-03-05" "1991-03-05" "1991-03-05"
## [33501] "1991-03-05" "1991-03-05" "1991-03-05" "1987-06-24" "1987-06-24"
## [33506] "1987-06-24" "1987-06-24" "1987-06-24" "1987-06-24" "1987-06-24"
## [33511] "1987-06-24" "1987-06-24" "1987-06-24" "1975-08-27" "1975-08-27"
## [33516] "1975-08-27" "1975-08-27" "1980-01-22" "1980-01-22" "1980-01-22"
## [33521] "1980-01-22" "1980-01-22" "1980-01-22" "1980-01-22" "1980-01-22"
## [33526] "1980-01-22" "1983-03-07" "1983-03-07" "1983-03-07" "1983-03-07"
## [33531] "1983-03-07" "1992-03-18" "1992-03-18" "1992-03-18" "1992-03-18"
## [33536] "1992-03-18" "1992-03-18" "1992-03-18" "1977-02-03" "1977-02-03"
## [33541] "1977-02-03" "1977-02-03" "1977-02-03" "1977-02-03" "1977-02-03"
## [33546] "1977-02-03" "1977-02-03" "1976-06-22" "1976-06-22" "1976-06-22"
## [33551] "1992-02-22" "1992-02-22" "1992-02-22" "1992-02-22" "1992-02-22"
## [33556] "1992-02-22" "1992-02-22" "1992-02-22" "1992-02-22" "1992-02-22"
## [33561] "1992-02-22" "1992-02-22" "1987-05-27" "1987-05-27" "1987-05-27"
## [33566] "1987-05-27" "1987-05-27" "1987-05-27" "1987-05-27" "1987-05-27"
## [33571] "1987-05-27" "1987-05-27" "1987-05-27" "1987-05-27" "1987-05-27"
## [33576] "1987-05-27" "1987-05-27" "1987-05-27" "1975-12-05" "1975-12-05"
## [33581] "1975-12-05" "1975-12-05" "1975-12-05" "1975-12-05" "1975-12-05"
## [33586] "1986-10-19" "1986-10-19" "1986-10-19" "1986-10-19" "1986-10-19"
## [33591] "1990-08-04" "1990-08-04" "1990-08-04" "1980-03-05" "1980-03-05"
## [33596] "1980-03-05" "1980-03-05" "1980-03-05" "1980-03-05" "1980-03-05"
## [33601] "1980-03-05" "1980-03-05" "1980-03-05" "1980-03-05" "1980-03-05"
## [33606] "1977-09-01" "1977-09-01" "1977-09-01" "1977-09-01" "1977-09-01"
## [33611] "1977-09-01" "1977-09-01" "1977-09-01" "1977-09-01" "1970-03-23"
## [33616] "1970-03-23" "1970-03-23" "1970-03-23" "1970-03-23" "1970-03-23"
## [33621] "1970-03-23" "1970-03-23" "1970-03-23" "1970-03-23" "1970-03-23"
## [33626] "1970-03-23" "1970-03-23" "1970-03-23" "1970-03-23" "1970-03-23"
## [33631] "1976-09-24" "1976-09-24" "1976-09-24" "1976-09-24" "1989-07-20"
## [33636] "1989-07-20" "1989-07-20" "1989-07-20" "1989-07-20" "1984-06-01"
## [33641] "1984-06-01" "1984-06-01" "1984-06-01" "1984-06-01" "1984-06-01"
## [33646] "1984-06-01" "1984-06-01" "1984-06-01" "1984-06-01" "1977-06-16"
## [33651] "1977-06-16" "1977-06-16" "1977-06-16" "1977-06-16" "1977-06-16"
## [33656] "1977-06-16" "1977-06-16" "1977-06-16" "1977-06-16" "1977-06-16"
## [33661] "1972-09-09" "1972-09-09" "1972-09-09" "1972-09-09" "1972-09-09"
## [33666] "1972-09-09" "1972-09-09" "1983-01-21" "1983-01-21" "1983-01-21"
## [33671] "1983-01-21" "1983-01-21" "1983-01-21" "1983-01-21" "1983-01-21"
## [33676] "1983-01-21" "1980-10-13" "1980-10-13" "1980-10-13" "1972-06-17"
## [33681] "1972-06-17" "1972-06-17" "1972-06-17" "1972-06-17" "1972-06-17"
## [33686] "1972-06-17" "1972-06-17" "1972-06-17" "1972-06-17" "1972-06-17"
## [33691] "1972-06-17" "1972-06-17" "1972-06-17" "1972-06-17" "1972-06-17"
## [33696] "1972-06-17" "1972-06-17" "1972-06-17" "1972-06-17" "1988-05-10"
## [33701] "1988-05-10" "1988-05-10" "1988-05-10" "1988-05-10" "1983-02-26"
## [33706] "1983-02-26" "1970-11-28" "1970-11-28" "1970-11-28" "1987-06-19"
## [33711] "1987-06-19" "1987-06-19" "1987-06-19" "1987-06-19" "1987-06-19"
## [33716] "1987-06-19" "1987-06-19" "1987-06-19" "1987-06-19" "1987-06-19"
## [33721] "1987-06-19" "1987-06-19" "1987-06-19" "1987-06-19" "1987-06-19"
## [33726] "1987-06-19" "1987-06-19" "1987-06-19" "1987-06-19" "1987-03-17"
## [33731] "1987-03-17" "1987-03-17" "1987-03-17" "1987-03-17" "1987-03-17"
## [33736] "1987-03-17" "1987-03-17" "1987-03-17" "1991-11-10" "1991-11-10"
## [33741] "1991-11-10" "1991-11-10" "1991-11-10" "1991-11-10" "1991-11-10"
## [33746] "1991-11-10" "1991-11-10" "1991-11-10" "1975-07-24" "1975-07-24"
## [33751] "1975-07-24" "1975-07-24" "1975-07-24" "1975-07-24" "1975-07-24"
## [33756] "1975-07-24" "1975-07-24" "1975-07-24" "1975-07-24" "1975-07-24"
## [33761] "1975-07-24" "1975-12-22" "1975-12-22" "1975-12-22" "1975-12-22"
## [33766] "1975-12-22" "1975-12-22" "1975-12-22" "1975-12-22" "1975-12-22"
## [33771] "1975-12-22" "1989-08-25" "1989-08-25" "1989-08-25" "1989-08-25"
## [33776] "1989-08-25" "1989-08-25" "1989-08-25" "1989-08-25" "1989-08-25"
## [33781] "1989-08-25" "1989-08-25" "1992-06-13" "1992-06-13" "1988-09-10"
## [33786] "1988-09-10" "1988-09-10" "1988-09-10" "1988-09-10" "1988-09-10"
## [33791] "1973-06-20" "1973-06-20" "1979-07-04" "1979-07-04" "1979-07-04"
## [33796] "1979-07-04" "1979-07-04" "1979-07-04" "1980-09-13" "1980-09-13"
## [33801] "1980-09-13" "1980-09-13" "1980-09-13" "1980-09-13" "1980-09-13"
## [33806] "1980-09-13" "1980-09-13" "1980-09-13" "1980-09-13" "1980-09-13"
## [33811] "1980-09-13" "1980-09-13" "1980-09-13" "1980-09-13" "1980-09-13"
## [33816] "1980-09-13" "1980-09-13" "1980-09-13" "1980-09-13" "1980-09-13"
## [33821] "1980-09-13" "1980-09-13" "1980-09-13" "1988-03-07" "1988-03-07"
## [33826] "1988-03-07" "1988-03-07" "1988-03-07" "1988-03-07" "1988-03-07"
## [33831] "1991-08-10" "1991-08-10" "1991-08-10" "1991-08-10" "1991-08-10"
## [33836] "1991-08-10" "1991-08-10" "1991-08-10" "1991-08-10" "1991-08-10"
## [33841] "1991-08-10" "1971-06-04" "1971-06-04" "1982-07-16" "1982-07-16"
## [33846] "1982-07-16" "1982-07-16" "1982-07-16" "1970-05-14" "1970-05-14"
## [33851] "1970-05-14" "1970-05-14" "1970-05-14" "1970-05-14" "1970-05-14"
## [33856] "1970-05-14" "1970-05-14" "1970-05-14" "1970-05-14" "1970-05-14"
## [33861] "1970-05-14" "1970-05-14" "1970-05-14" "1970-05-14" "1970-05-14"
## [33866] "1970-05-14" "1970-07-24" "1970-07-24" "1970-07-24" "1970-07-24"
## [33871] "1970-07-24" "1970-07-24" "1970-07-24" "1970-07-24" "1970-07-24"
## [33876] "1977-03-22" "1977-03-22" "1977-03-22" "1980-04-28" "1980-04-28"
## [33881] "1980-04-28" "1980-04-28" "1980-04-28" "1980-04-28" "1980-04-28"
## [33886] "1980-04-28" "1980-04-28" "1980-04-28" "1980-04-28" "1980-04-28"
## [33891] "1980-04-28" "1980-04-28" "1980-04-28" "1980-04-28" "1980-04-28"
## [33896] "1980-04-28" "1980-04-28" "1980-04-28" "1980-04-28" "1980-04-28"
## [33901] "1980-04-28" "1980-04-28" "1979-07-27" "1979-07-27" "1979-07-27"
## [33906] "1979-07-27" "1979-07-27" "1979-07-27" "1979-07-27" "1979-07-27"
## [33911] "1979-07-27" "1979-07-27" "1979-07-27" "1979-07-27" "1972-09-23"
## [33916] "1972-09-23" "1972-09-23" "1972-09-23" "1972-09-23" "1972-09-23"
## [33921] "1972-09-23" "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22"
## [33926] "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22" "1979-08-22"
## [33931] "1979-08-22" "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19"
## [33936] "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19"
## [33941] "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19"
## [33946] "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19" "1970-06-19"
## [33951] "1975-06-07" "1975-06-07" "1975-06-07" "1975-06-07" "1975-06-07"
## [33956] "1975-06-07" "1972-05-17" "1972-05-17" "1972-05-17" "1972-05-17"
## [33961] "1972-05-17" "1972-05-17" "1989-05-27" "1989-05-27" "1989-05-27"
## [33966] "1970-12-12" "1970-12-12" "1970-12-12" "1970-12-12" "1970-12-12"
## [33971] "1970-12-12" "1970-10-03" "1970-10-03" "1970-10-03" "1970-10-03"
## [33976] "1970-10-03" "1970-10-03" "1970-10-03" "1970-10-03" "1970-10-03"
## [33981] "1970-10-03" "1970-10-03" "1970-10-03" "1970-10-03" "1970-10-03"
## [33986] "1990-05-06" "1990-05-06" "1990-05-06" "1990-05-06" "1990-05-06"
## [33991] "1990-05-06" "1990-05-06" "1990-05-06" "1990-05-06" "1990-05-06"
## [33996] "1990-05-06" "1990-05-06" "1990-05-06" "1990-05-06" "1976-06-09"
## [34001] "1976-06-09" "1976-06-09" "1976-06-09" "1991-01-14" "1991-01-14"
## [34006] "1991-01-14" "1991-01-14" "1991-01-14" "1991-01-14" "1991-01-14"
## [34011] "1991-01-14" "1989-04-18" "1989-04-18" "1989-04-18" "1989-04-18"
## [34016] "1989-04-18" "1974-05-03" "1974-05-03" "1974-05-03" "1974-05-03"
## [34021] "1974-05-03" "1974-05-03" "1974-05-03" "1974-05-03" "1974-05-03"
## [34026] "1974-05-03" "1974-05-03" "1974-05-03" "1974-05-03" "1974-05-03"
## [34031] "1974-05-03" "1974-05-03" "1980-10-09" "1980-10-09" "1980-10-09"
## [34036] "1980-10-09" "1991-04-17" "1991-04-17" "1991-04-17" "1991-04-17"
## [34041] "1991-04-17" "1991-04-17" "1991-04-17" "1991-04-17" "1991-04-17"
## [34046] "1991-04-17" "1991-04-17" "1991-04-17" "1991-04-17" "1991-04-17"
## [34051] "1991-04-17" "1991-04-17" "1991-04-17" "1991-04-17" "1991-04-17"
## [34056] "1991-04-17" "1991-04-17" "1991-04-17" "1984-11-21" "1984-11-21"
## [34061] "1984-11-21" "1984-11-21" "1984-11-21" "1984-11-21" "1984-11-21"
## [34066] "1984-11-21" "1984-11-21" "1984-11-21" "1984-11-21" "1984-11-21"
## [34071] "1984-11-21" "1984-11-21" "1984-05-21" "1984-05-21" "1984-05-21"
## [34076] "1984-05-21" "1975-05-03" "1975-05-03" "1975-05-03" "1991-04-19"
## [34081] "1991-04-19" "1991-04-19" "1991-04-19" "1991-04-19" "1991-04-19"
## [34086] "1991-04-19" "1991-04-19" "1991-04-19" "1991-04-19" "1991-04-19"
## [34091] "1991-04-19" "1991-04-19" "1991-04-19" "1991-04-19" "1989-11-16"
## [34096] "1989-11-16" "1989-11-16" "1989-11-16" "1989-11-16" "1989-11-16"
## [34101] "1989-11-16" "1985-02-28" "1985-02-28" "1985-02-28" "1985-02-28"
## [34106] "1985-02-28" "1985-02-28" "1985-02-28" "1985-02-28" "1985-02-28"
## [34111] "1982-03-17" "1982-03-17" "1982-03-17" "1982-03-17" "1982-03-17"
## [34116] "1982-03-17" "1982-03-17" "1982-03-17" "1985-10-11" "1985-10-11"
## [34121] "1985-10-11" "1985-10-11" "1985-10-11" "1985-10-11" "1985-10-11"
## [34126] "1985-10-11" "1985-10-11" "1985-10-11" "1980-07-17" "1980-07-17"
## [34131] "1980-07-17" "1980-07-17" "1980-07-17" "1980-07-17" "1980-07-17"
## [34136] "1980-07-17" "1985-10-16" "1985-10-16" "1991-02-04" "1991-02-04"
## [34141] "1991-02-04" "1991-02-04" "1991-02-04" "1991-02-04" "1991-02-04"
## [34146] "1991-02-04" "1991-02-04" "1991-02-04" "1991-02-04" "1991-02-04"
## [34151] "1991-02-04" "1991-02-04" "1991-02-04" "1991-02-04" "1991-02-04"
## [34156] "1991-02-04" "1974-07-13" "1974-07-13" "1974-07-13" "1989-08-12"
## [34161] "1989-08-12" "1989-08-12" "1989-08-12" "1989-08-12" "1989-08-12"
## [34166] "1989-08-12" "1989-08-12" "1989-08-12" "1984-02-29" "1984-02-29"
## [34171] "1984-02-29" "1984-02-29" "1984-02-29" "1972-07-19" "1972-07-19"
## [34176] "1972-07-19" "1972-07-19" "1972-07-19" "1972-07-19" "1972-07-19"
## [34181] "1972-07-19" "1972-07-19" "1972-07-19" "1972-07-19" "1972-07-19"
## [34186] "1983-09-11" "1983-09-11" "1983-09-11" "1983-09-11" "1983-09-11"
## [34191] "1983-09-11" "1983-09-11" "1983-09-11" "1983-09-11" "1983-09-11"
## [34196] "1983-09-11" "1983-09-11" "1983-09-11" "1983-09-11" "1976-06-24"
## [34201] "1976-06-24" "1976-06-24" "1976-06-24" "1976-06-24" "1976-06-24"
## [34206] "1976-06-24" "1976-06-24" "1976-06-24" "1976-06-24" "1980-08-01"
## [34211] "1980-08-01" "1980-08-01" "1975-04-07" "1975-04-07" "1975-04-07"
## [34216] "1975-04-07" "1975-04-07" "1975-04-07" "1975-04-07" "1975-04-07"
## [34221] "1970-01-15" "1970-01-15" "1970-01-15" "1970-01-15" "1970-01-15"
## [34226] "1970-01-15" "1970-01-15" "1970-01-15" "1970-01-15" "1970-01-15"
## [34231] "1970-01-15" "1970-01-15" "1983-05-16" "1983-05-16" "1983-05-16"
## [34236] "1983-05-16" "1983-05-16" "1983-05-16" "1983-05-16" "1983-05-16"
## [34241] "1983-05-16" "1983-05-16" "1983-05-16" "1983-05-16" "1983-05-16"
## [34246] "1983-05-16" "1983-05-16" "1983-05-16" "1974-01-18" "1974-01-18"
## [34251] "1974-01-18" "1974-01-18" "1974-01-18" "1977-07-19" "1977-07-19"
## [34256] "1977-07-19" "1977-07-19" "1977-07-19" "1977-07-19" "1977-07-19"
## [34261] "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09"
## [34266] "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09"
## [34271] "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09" "1992-10-09"
## [34276] "1992-10-09" "1992-10-09" "1992-10-09" "1989-12-03" "1989-12-03"
## [34281] "1989-12-03" "1989-12-03" "1989-12-03" "1989-12-03" "1989-12-03"
## [34286] "1989-12-03" "1989-12-03" "1989-12-03" "1989-12-03" "1970-11-19"
## [34291] "1970-11-19" "1970-11-19" "1970-11-19" "1970-11-19" "1970-11-19"
## [34296] "1977-01-03" "1977-01-03" "1977-01-03" "1977-01-03" "1975-10-15"
## [34301] "1975-10-15" "1975-10-15" "1986-06-23" "1986-06-23" "1986-06-23"
## [34306] "1986-06-23" "1986-06-23" "1986-06-23" "1986-06-23" "1987-11-02"
## [34311] "1987-11-02" "1990-10-07" "1990-10-07" "1990-10-07" "1990-10-07"
## [34316] "1990-10-07" "1987-05-17" "1987-05-17" "1987-05-17" "1987-05-17"
## [34321] "1987-05-17" "1987-05-17" "1987-05-17" "1987-05-17" "1987-05-17"
## [34326] "1987-05-17" "1987-05-17" "1987-05-17" "1987-05-17" "1991-05-29"
## [34331] "1991-05-29" "1991-05-29" "1991-05-29" "1991-05-29" "1991-05-29"
## [34336] "1991-05-29" "1991-05-29" "1977-06-01" "1977-06-01" "1977-06-01"
## [34341] "1977-06-01" "1977-06-01" "1977-06-01" "1977-06-01" "1977-06-01"
## [34346] "1992-11-12" "1992-11-12" "1992-11-12" "1992-11-12" "1992-11-12"
## [34351] "1992-11-12" "1992-11-12" "1992-11-12" "1992-11-12" "1992-11-12"
## [34356] "1992-11-12" "1978-09-16" "1978-09-16" "1978-09-16" "1978-09-16"
## [34361] "1978-09-16" "1978-09-16" "1978-09-16" "1978-09-16" "1978-09-16"
## [34366] "1978-09-16" "1978-09-16" "1978-09-16" "1978-09-16" "1978-09-16"
## [34371] "1978-09-16" "1978-09-16" "1976-04-17" "1976-04-17" "1976-04-17"
## [34376] "1976-04-17" "1976-04-17" "1976-04-17" "1976-04-17" "1976-04-17"
## [34381] "1972-08-26" "1972-08-26" "1972-08-26" "1972-08-26" "1972-08-26"
## [34386] "1972-08-26" "1972-08-26" "1972-08-26" "1972-08-26" "1972-08-26"
## [34391] "1972-08-26" "1972-08-26" "1972-08-26" "1976-06-02" "1976-06-02"
## [34396] "1976-06-02" "1976-06-02" "1976-06-02" "1976-06-02" "1976-06-02"
## [34401] "1976-06-02" "1984-08-16" "1984-08-16" "1984-08-16" "1984-08-16"
## [34406] "1992-03-16" "1992-03-16" "1992-03-16" "1992-03-16" "1992-03-16"
## [34411] "1992-03-16" "1992-03-16" "1992-03-16" "1992-03-16" "1975-09-04"
## [34416] "1975-09-04" "1975-09-04" "1975-09-04" "1975-09-04" "1985-06-15"
## [34421] "1985-06-15" "1978-04-25" "1978-04-25" "1978-04-25" "1978-04-25"
## [34426] "1978-04-25" "1978-04-25" "1978-04-25" "1978-04-25" "1978-04-25"
## [34431] "1978-04-25" "1978-04-25" "1978-04-25" "1978-04-25" "1978-04-25"
## [34436] "1978-04-25" "1978-04-25" "1979-11-29" "1979-11-29" "1979-11-29"
## [34441] "1979-11-29" "1979-11-29" "1979-11-29" "1979-11-29" "1979-11-29"
## [34446] "1979-11-29" "1982-07-05" "1982-07-05" "1982-07-05" "1982-07-05"
## [34451] "1982-07-05" "1982-07-05" "1982-01-21" "1982-01-21" "1982-01-21"
## [34456] "1982-01-21" "1989-01-07" "1989-01-07" "1989-01-07" "1989-01-07"
## [34461] "1989-01-07" "1989-01-07" "1989-01-07" "1989-01-07" "1989-01-07"
## [34466] "1989-01-07" "1989-01-07" "1989-01-07" "1989-01-07" "1989-01-07"
## [34471] "1989-01-07" "1989-01-07" "1989-01-07" "1989-01-07" "1973-05-26"
## [34476] "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26"
## [34481] "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26"
## [34486] "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26"
## [34491] "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26" "1973-05-26"
## [34496] "1973-05-26" "1973-05-26" "1973-09-02" "1973-09-02" "1973-09-02"
## [34501] "1973-09-02" "1984-02-03" "1984-02-03" "1984-02-03" "1984-02-03"
## [34506] "1984-02-03" "1984-02-03" "1984-02-03" "1984-02-03" "1984-02-03"
## [34511] "1984-02-03" "1984-02-03" "1991-12-17" "1991-12-17" "1991-12-17"
## [34516] "1991-12-17" "1988-04-20" "1988-04-20" "1988-04-20" "1988-04-20"
## [34521] "1982-07-09" "1982-07-09" "1982-07-09" "1982-07-09" "1982-07-09"
## [34526] "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11"
## [34531] "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11"
## [34536] "1980-03-11" "1980-03-11" "1980-03-11" "1980-03-11" "1989-11-08"
## [34541] "1989-11-08" "1989-11-08" "1989-11-08" "1989-11-08" "1989-11-08"
## [34546] "1989-11-08" "1989-11-08" "1989-11-08" "1989-11-08" "1978-12-17"
## [34551] "1978-12-17" "1978-12-17" "1978-12-17" "1978-12-17" "1978-12-17"
## [34556] "1978-12-17" "1978-12-17" "1978-12-17" "1978-12-17" "1978-12-17"
## [34561] "1978-12-17" "1985-08-27" "1985-08-27" "1992-01-04" "1992-01-04"
## [34566] "1992-01-04" "1992-01-04" "1992-01-04" "1992-01-04" "1992-01-04"
## [34571] "1992-01-04" "1992-01-04" "1992-01-04" "1992-01-04" "1992-01-04"
## [34576] "1992-01-04" "1992-01-04" "1992-01-04" "1990-11-12" "1990-11-12"
## [34581] "1990-11-12" "1990-11-12" "1990-11-12" "1990-11-12" "1988-12-14"
## [34586] "1988-12-14" "1981-06-22" "1981-06-22" "1981-06-22" "1981-06-22"
## [34591] "1981-06-22" "1979-03-07" "1979-03-07" "1979-03-07" "1979-03-07"
## [34596] "1979-03-07" "1979-03-07" "1979-03-07" "1979-03-07" "1979-03-07"
## [34601] "1979-03-07" "1979-03-07" "1979-03-07" "1979-03-07" "1979-03-07"
## [34606] "1979-03-07" "1974-12-13" "1974-12-13" "1974-12-13" "1974-12-13"
## [34611] "1974-12-13" "1974-12-13" "1990-09-03" "1990-09-03" "1990-09-03"
## [34616] "1990-09-03" "1990-09-03" "1990-09-03" "1990-09-03" "1990-09-03"
## [34621] "1990-09-03" "1990-09-03" "1990-09-03" "1990-09-03" "1990-09-03"
## [34626] "1990-09-03" "1988-12-17" "1988-12-17" "1988-12-17" "1981-01-25"
## [34631] "1981-01-25" "1981-01-25" "1981-01-25" "1981-01-25" "1981-01-25"
## [34636] "1981-01-25" "1981-01-25" "1980-08-27" "1980-08-27" "1980-08-27"
## [34641] "1980-08-27" "1980-08-27" "1980-08-27" "1980-08-27" "1980-08-27"
## [34646] "1980-08-27" "1980-08-27" "1985-06-12" "1985-06-12" "1973-12-28"
## [34651] "1973-12-28" "1973-12-28" "1973-12-28" "1973-12-28" "1973-12-28"
## [34656] "1973-12-28" "1973-12-28" "1973-12-28" "1973-12-28" "1973-12-28"
## [34661] "1976-12-24" "1976-12-24" "1976-12-24" "1976-12-24" "1976-12-24"
## [34666] "1976-12-24" "1976-12-24" "1976-12-24" "1976-12-24" "1978-04-14"
## [34671] "1978-04-14" "1978-04-14" "1978-04-14" "1978-04-14" "1978-04-14"
## [34676] "1978-04-14" "1985-01-21" "1985-01-21" "1985-01-21" "1985-01-21"
## [34681] "1985-01-21" "1985-01-21" "1985-01-21" "1985-01-21" "1985-01-21"
## [34686] "1978-07-11" "1978-07-11" "1992-06-10" "1992-06-10" "1992-06-10"
## [34691] "1992-06-10" "1992-06-10" "1992-06-10" "1992-06-10" "1992-06-10"
## [34696] "1992-06-10" "1992-06-10" "1992-06-10" "1992-06-10" "1988-12-28"
## [34701] "1988-12-28" "1988-12-28" "1988-12-28" "1980-03-16" "1980-03-16"
## [34706] "1980-03-16" "1980-03-16" "1980-03-16" "1980-03-16" "1980-03-16"
## [34711] "1980-03-16" "1980-03-16" "1980-03-16" "1980-03-16" "1980-03-16"
## [34716] "1980-03-16" "1972-11-28" "1972-11-28" "1972-11-28" "1972-11-28"
## [34721] "1980-03-23" "1980-03-23" "1980-03-23" "1981-12-13" "1981-12-13"
## [34726] "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13"
## [34731] "1981-12-13" "1981-12-13" "1981-12-13" "1981-12-13" "1980-09-15"
## [34736] "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15"
## [34741] "1980-09-15" "1977-01-04" "1977-01-04" "1977-01-04" "1977-01-04"
## [34746] "1977-01-04" "1977-01-04" "1977-01-04" "1970-02-21" "1970-02-21"
## [34751] "1970-02-21" "1970-02-21" "1970-02-21" "1970-02-21" "1970-02-21"
## [34756] "1970-02-21" "1970-02-21" "1970-02-21" "1970-02-21" "1970-02-21"
## [34761] "1985-01-04" "1985-01-04" "1985-01-04" "1985-01-04" "1985-01-04"
## [34766] "1985-01-04" "1985-01-04" "1985-01-04" "1985-01-04" "1985-01-04"
## [34771] "1985-01-04" "1985-01-04" "1985-01-04" "1985-01-04" "1985-01-04"
## [34776] "1985-01-04" "1985-01-04" "1985-01-04" "1991-09-23" "1991-09-23"
## [34781] "1991-09-23" "1991-09-23" "1991-09-23" "1991-09-23" "1991-09-23"
## [34786] "1991-09-23" "1991-09-23" "1991-09-23" "1991-09-23" "1991-09-23"
## [34791] "1991-09-23" "1991-09-23" "1983-06-10" "1983-06-10" "1983-06-10"
## [34796] "1983-06-10" "1983-06-10" "1985-05-01" "1985-05-01" "1985-05-01"
## [34801] "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01"
## [34806] "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01"
## [34811] "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01" "1985-05-01"
## [34816] "1985-05-01" "1974-06-26" "1974-06-26" "1974-06-26" "1974-06-26"
## [34821] "1974-06-26" "1974-06-26" "1974-06-26" "1987-06-25" "1987-06-25"
## [34826] "1987-06-25" "1987-06-25" "1987-06-25" "1987-06-25" "1987-06-25"
## [34831] "1972-07-13" "1972-07-13" "1972-07-13" "1972-07-13" "1972-07-13"
## [34836] "1972-07-13" "1972-07-13" "1972-07-13" "1972-07-13" "1972-07-13"
## [34841] "1972-07-13" "1972-07-13" "1972-07-13" "1972-07-13" "1972-07-13"
## [34846] "1972-07-13" "1972-07-13" "1972-07-13" "1972-07-13" "1972-07-13"
## [34851] "1976-12-08" "1976-12-08" "1976-12-08" "1976-12-08" "1976-12-08"
## [34856] "1976-12-08" "1976-12-08" "1976-12-08" "1976-12-08" "1976-12-08"
## [34861] "1984-04-14" "1984-04-14" "1984-04-14" "1988-08-15" "1988-08-15"
## [34866] "1991-01-08" "1991-01-08" "1991-01-08" "1991-01-08" "1991-01-08"
## [34871] "1991-01-08" "1991-01-08" "1991-01-08" "1991-01-08" "1991-01-08"
## [34876] "1991-01-08" "1991-01-08" "1984-03-27" "1984-03-27" "1984-03-27"
## [34881] "1984-03-27" "1984-03-27" "1984-03-27" "1984-03-27" "1984-03-27"
## [34886] "1984-12-05" "1984-12-05" "1984-12-05" "1984-12-05" "1984-12-05"
## [34891] "1985-10-25" "1985-10-25" "1985-10-25" "1985-10-25" "1985-10-25"
## [34896] "1985-10-25" "1990-07-08" "1990-07-08" "1990-07-08" "1990-07-08"
## [34901] "1990-07-08" "1990-07-08" "1990-07-08" "1976-08-09" "1976-08-09"
## [34906] "1976-08-09" "1976-08-09" "1989-07-22" "1989-07-22" "1989-07-22"
## [34911] "1989-07-22" "1989-07-22" "1989-07-22" "1989-07-22" "1989-07-22"
## [34916] "1989-07-22" "1989-07-22" "1989-07-22" "1989-07-22" "1989-07-22"
## [34921] "1989-07-22" "1989-07-22" "1989-07-22" "1974-12-10" "1974-12-10"
## [34926] "1974-12-10" "1974-12-10" "1974-12-10" "1974-12-10" "1974-12-10"
## [34931] "1986-10-14" "1986-10-14" "1986-10-14" "1986-10-14" "1986-10-14"
## [34936] "1986-10-14" "1986-10-14" "1992-01-13" "1992-01-13" "1992-01-13"
## [34941] "1992-01-13" "1992-01-13" "1992-01-13" "1992-01-13" "1972-02-15"
## [34946] "1972-02-15" "1972-02-15" "1972-02-15" "1972-02-15" "1970-10-07"
## [34951] "1970-10-07" "1975-04-15" "1975-04-15" "1975-04-15" "1975-04-15"
## [34956] "1975-04-15" "1976-10-09" "1976-10-09" "1976-10-09" "1976-10-09"
## [34961] "1976-10-09" "1976-10-09" "1976-10-09" "1976-10-09" "1976-10-09"
## [34966] "1976-10-09" "1976-10-09" "1976-10-09" "1976-10-09" "1976-10-09"
## [34971] "1976-10-09" "1976-10-09" "1976-10-09" "1992-06-15" "1992-06-15"
## [34976] "1992-06-15" "1992-06-15" "1972-08-18" "1972-08-18" "1972-08-18"
## [34981] "1972-08-18" "1972-08-18" "1972-08-18" "1972-08-18" "1972-08-18"
## [34986] "1971-04-25" "1971-04-25" "1971-04-25" "1971-04-25" "1971-04-25"
## [34991] "1971-04-25" "1977-08-05" "1977-08-05" "1977-08-05" "1977-08-05"
## [34996] "1975-06-11" "1975-06-11" "1975-06-11" "1972-07-22" "1972-07-22"
## [35001] "1972-07-22" "1991-09-22" "1991-09-22" "1991-09-22" "1991-09-22"
## [35006] "1991-09-22" "1991-09-22" "1991-09-22" "1991-09-22" "1989-04-18"
## [35011] "1989-04-18" "1989-04-18" "1989-04-18" "1989-04-18" "1989-04-18"
## [35016] "1989-04-18" "1989-04-18" "1978-09-13" "1978-09-13" "1978-09-13"
## [35021] "1978-09-13" "1978-09-13" "1978-09-13" "1978-09-13" "1978-09-13"
## [35026] "1984-05-01" "1984-05-01" "1984-05-01" "1984-05-01" "1984-05-01"
## [35031] "1984-05-01" "1984-05-01" "1989-10-03" "1989-10-03" "1989-10-03"
## [35036] "1989-10-03" "1989-10-03" "1989-10-03" "1989-10-03" "1989-10-03"
## [35041] "1981-12-01" "1981-12-01" "1981-12-01" "1981-12-01" "1981-12-01"
## [35046] "1981-12-01" "1987-11-03" "1987-11-03" "1987-11-03" "1987-11-03"
## [35051] "1987-11-03" "1987-11-03" "1987-11-03" "1987-11-03" "1987-11-03"
## [35056] "1987-11-03" "1970-09-29" "1970-09-29" "1970-09-29" "1970-09-29"
## [35061] "1970-09-29" "1970-09-29" "1970-09-29" "1970-09-29" "1970-09-29"
## [35066] "1970-09-29" "1970-09-29" "1981-01-17" "1981-01-17" "1981-01-17"
## [35071] "1981-01-17" "1981-01-17" "1981-01-17" "1981-01-17" "1981-01-17"
## [35076] "1984-01-12" "1984-01-12" "1990-08-11" "1990-08-11" "1990-08-11"
## [35081] "1990-08-11" "1990-08-11" "1990-08-11" "1990-08-11" "1972-03-15"
## [35086] "1972-03-15" "1972-03-15" "1972-03-15" "1972-03-15" "1972-03-15"
## [35091] "1972-03-15" "1972-03-15" "1972-03-15" "1972-03-15" "1979-12-15"
## [35096] "1979-12-15" "1979-12-15" "1979-12-15" "1979-12-15" "1979-12-15"
## [35101] "1979-12-15" "1979-12-15" "1979-12-15" "1979-12-15" "1971-06-11"
## [35106] "1971-06-11" "1971-06-11" "1971-06-11" "1971-06-11" "1971-06-11"
## [35111] "1971-06-11" "1971-06-11" "1971-06-11" "1971-06-11" "1971-06-11"
## [35116] "1971-06-11" "1971-06-11" "1971-06-11" "1981-07-03" "1981-07-03"
## [35121] "1981-07-03" "1992-01-17" "1992-01-17" "1992-01-17" "1992-01-17"
## [35126] "1992-01-17" "1990-09-09" "1990-09-09" "1990-09-09" "1990-09-09"
## [35131] "1990-09-09" "1990-09-09" "1990-09-09" "1990-09-09" "1990-09-09"
## [35136] "1990-09-09" "1990-09-09" "1973-10-15" "1973-10-15" "1973-10-15"
## [35141] "1973-10-15" "1973-10-15" "1975-01-13" "1975-01-13" "1975-01-13"
## [35146] "1975-01-13" "1975-01-13" "1975-01-13" "1975-01-13" "1975-01-13"
## [35151] "1975-01-13" "1975-01-13" "1975-01-13" "1975-01-13" "1975-01-13"
## [35156] "1975-01-13" "1975-01-13" "1975-01-13" "1978-05-24" "1978-05-24"
## [35161] "1978-05-24" "1978-05-24" "1978-05-24" "1978-05-24" "1978-05-24"
## [35166] "1978-05-24" "1978-05-24" "1978-05-24" "1978-05-24" "1978-05-24"
## [35171] "1978-05-24" "1978-05-24" "1978-05-24" "1978-05-24" "1978-05-24"
## [35176] "1978-05-24" "1978-05-24" "1978-05-24" "1978-05-24" "1978-05-24"
## [35181] "1978-05-24" "1971-06-14" "1971-06-14" "1971-06-14" "1971-06-14"
## [35186] "1971-06-14" "1971-06-14" "1971-06-14" "1971-06-14" "1971-06-14"
## [35191] "1971-06-14" "1971-06-14" "1971-06-14" "1971-06-14" "1971-06-14"
## [35196] "1971-06-14" "1971-06-14" "1971-06-14" "1971-06-14" "1971-06-14"
## [35201] "1971-06-14" "1971-06-14" "1970-10-01" "1970-10-01" "1970-10-01"
## [35206] "1970-10-01" "1970-10-01" "1970-10-01" "1970-10-01" "1970-10-01"
## [35211] "1970-10-01" "1970-10-01" "1970-10-01" "1970-10-01" "1970-10-01"
## [35216] "1970-10-01" "1970-10-01" "1970-10-01" "1990-12-05" "1990-12-05"
## [35221] "1990-12-05" "1990-12-05" "1990-12-05" "1990-12-05" "1990-12-05"
## [35226] "1990-12-05" "1990-12-05" "1990-12-05" "1986-04-15" "1986-04-15"
## [35231] "1986-04-15" "1986-04-15" "1974-01-13" "1974-01-13" "1974-01-13"
## [35236] "1974-01-13" "1974-01-13" "1974-01-13" "1974-01-13" "1980-08-27"
## [35241] "1980-08-27" "1980-08-27" "1980-08-27" "1980-10-26" "1980-10-26"
## [35246] "1980-10-26" "1980-10-26" "1980-10-26" "1980-10-26" "1980-10-26"
## [35251] "1980-10-26" "1984-08-11" "1984-08-11" "1984-08-11" "1984-08-11"
## [35256] "1984-08-11" "1984-08-11" "1984-08-11" "1984-08-11" "1984-08-11"
## [35261] "1984-08-11" "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27"
## [35266] "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27"
## [35271] "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27"
## [35276] "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27"
## [35281] "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27"
## [35286] "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27" "1992-07-27"
## [35291] "1979-09-26" "1979-09-26" "1979-09-26" "1979-09-26" "1970-03-04"
## [35296] "1970-03-04" "1970-03-04" "1970-03-04" "1970-03-04" "1970-03-04"
## [35301] "1970-03-04" "1970-03-04" "1970-03-04" "1970-03-04" "1970-03-04"
## [35306] "1970-03-04" "1970-03-04" "1970-03-04" "1970-03-04" "1970-03-04"
## [35311] "1970-03-04" "1985-12-12" "1985-12-12" "1985-12-12" "1985-12-12"
## [35316] "1985-12-12" "1985-12-12" "1985-12-12" "1985-12-12" "1985-12-12"
## [35321] "1985-12-12" "1985-12-12" "1974-05-14" "1974-05-14" "1974-05-14"
## [35326] "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14"
## [35331] "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14"
## [35336] "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14" "1974-05-14"
## [35341] "1974-05-14" "1973-06-02" "1973-06-02" "1973-06-02" "1973-06-02"
## [35346] "1973-06-02" "1973-06-02" "1973-06-02" "1973-06-02" "1973-06-02"
## [35351] "1973-06-02" "1973-06-02" "1973-06-02" "1973-06-02" "1973-06-02"
## [35356] "1973-06-02" "1977-06-28" "1977-06-28" "1977-06-28" "1977-06-28"
## [35361] "1977-06-28" "1977-06-28" "1977-06-28" "1977-06-28" "1977-06-28"
## [35366] "1977-06-28" "1977-06-28" "1977-06-28" "1977-06-28" "1977-06-28"
## [35371] "1977-06-28" "1977-06-28" "1977-06-28" "1977-06-28" "1977-06-28"
## [35376] "1977-06-28" "1977-06-28" "1980-10-26" "1980-10-26" "1980-10-26"
## [35381] "1980-10-26" "1980-10-26" "1980-10-26" "1980-10-26" "1980-10-26"
## [35386] "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15"
## [35391] "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15"
## [35396] "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15"
## [35401] "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15"
## [35406] "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15"
## [35411] "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15" "1972-06-15"
## [35416] "1970-07-16" "1970-07-16" "1970-07-16" "1970-07-16" "1970-07-16"
## [35421] "1976-10-28" "1976-10-28" "1976-10-28" "1976-10-28" "1976-10-28"
## [35426] "1971-07-18" "1971-07-18" "1971-07-18" "1987-11-25" "1987-11-25"
## [35431] "1987-11-25" "1987-11-25" "1987-11-25" "1987-11-25" "1979-03-17"
## [35436] "1979-03-17" "1979-03-17" "1979-03-17" "1979-03-17" "1988-03-28"
## [35441] "1988-03-28" "1988-03-28" "1988-03-28" "1988-03-28" "1988-03-28"
## [35446] "1988-03-28" "1988-03-28" "1988-03-28" "1977-09-16" "1977-09-16"
## [35451] "1977-09-16" "1977-09-16" "1980-07-07" "1980-07-07" "1980-07-07"
## [35456] "1989-05-17" "1989-05-17" "1989-05-17" "1989-05-17" "1989-05-17"
## [35461] "1989-05-17" "1989-05-17" "1989-05-17" "1989-05-17" "1989-05-17"
## [35466] "1989-05-17" "1989-05-17" "1984-12-04" "1984-12-04" "1984-12-04"
## [35471] "1984-12-04" "1984-12-04" "1984-12-04" "1973-07-17" "1973-07-17"
## [35476] "1973-07-17" "1973-07-17" "1971-08-04" "1971-08-04" "1971-08-04"
## [35481] "1971-08-04" "1971-08-04" "1971-08-04" "1983-05-11" "1983-05-11"
## [35486] "1983-05-11" "1983-05-11" "1983-05-11" "1983-05-11" "1983-05-11"
## [35491] "1981-04-17" "1981-04-17" "1981-04-17" "1981-04-17" "1981-04-17"
## [35496] "1975-08-01" "1975-08-01" "1975-08-01" "1975-08-01" "1988-05-05"
## [35501] "1988-05-05" "1988-05-05" "1988-05-05" "1988-05-05" "1988-05-05"
## [35506] "1988-05-05" "1989-06-20" "1989-06-20" "1989-06-20" "1989-06-20"
## [35511] "1989-06-20" "1989-06-20" "1973-10-24" "1973-10-24" "1973-10-24"
## [35516] "1973-10-24" "1973-10-24" "1973-10-24" "1973-10-24" "1973-10-24"
## [35521] "1973-10-24" "1973-10-24" "1973-10-24" "1973-10-24" "1973-10-24"
## [35526] "1973-10-24" "1989-02-21" "1989-02-21" "1989-02-21" "1985-05-25"
## [35531] "1985-05-25" "1985-05-25" "1985-05-25" "1985-05-25" "1985-05-25"
## [35536] "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08"
## [35541] "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08"
## [35546] "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08"
## [35551] "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08" "1983-03-08"
## [35556] "1976-10-19" "1976-10-19" "1976-10-19" "1976-10-19" "1976-10-19"
## [35561] "1977-10-12" "1977-10-12" "1977-10-12" "1977-10-12" "1977-10-12"
## [35566] "1977-10-12" "1983-06-21" "1983-06-21" "1983-06-21" "1983-06-21"
## [35571] "1983-06-21" "1972-10-20" "1972-10-20" "1972-10-20" "1972-10-20"
## [35576] "1972-10-20" "1972-10-20" "1972-10-20" "1972-10-20" "1972-10-20"
## [35581] "1972-10-20" "1972-10-20" "1972-10-20" "1978-08-03" "1978-08-03"
## [35586] "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03"
## [35591] "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03"
## [35596] "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03"
## [35601] "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03"
## [35606] "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03"
## [35611] "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03"
## [35616] "1978-08-03" "1978-08-03" "1978-08-03" "1978-08-03" "1979-12-18"
## [35621] "1979-12-18" "1979-12-18" "1979-12-18" "1979-12-18" "1979-12-18"
## [35626] "1979-12-18" "1979-12-18" "1979-12-18" "1979-12-18" "1979-12-18"
## [35631] "1979-12-18" "1979-12-18" "1979-12-18" "1979-12-18" "1979-12-18"
## [35636] "1979-12-18" "1979-12-18" "1975-08-23" "1975-08-23" "1975-08-23"
## [35641] "1975-08-23" "1975-08-23" "1975-08-23" "1976-06-28" "1976-06-28"
## [35646] "1976-06-28" "1976-06-28" "1976-06-28" "1976-06-28" "1976-06-28"
## [35651] "1976-06-28" "1976-06-28" "1979-09-13" "1979-09-13" "1979-09-13"
## [35656] "1979-09-13" "1979-09-13" "1979-09-13" "1976-12-11" "1976-12-11"
## [35661] "1990-08-17" "1990-08-17" "1990-08-17" "1974-06-07" "1974-06-07"
## [35666] "1974-06-07" "1974-06-07" "1974-06-07" "1974-06-07" "1974-06-07"
## [35671] "1974-06-07" "1974-06-07" "1974-06-07" "1974-06-07" "1974-06-07"
## [35676] "1972-07-05" "1972-07-05" "1972-07-05" "1972-07-05" "1972-07-05"
## [35681] "1972-09-11" "1972-09-11" "1972-09-11" "1972-09-11" "1972-09-11"
## [35686] "1972-04-02" "1972-04-02" "1972-04-02" "1972-04-02" "1972-04-02"
## [35691] "1972-04-02" "1972-04-02" "1973-09-13" "1973-09-13" "1973-09-13"
## [35696] "1973-09-13" "1973-09-13" "1973-09-13" "1973-09-13" "1973-09-13"
## [35701] "1973-09-13" "1973-09-13" "1973-09-13" "1973-09-13" "1973-09-13"
## [35706] "1973-09-13" "1973-09-13" "1973-09-13" "1973-09-13" "1978-02-16"
## [35711] "1978-02-16" "1978-02-16" "1978-02-16" "1978-02-16" "1978-02-16"
## [35716] "1978-02-16" "1978-02-16" "1978-02-16" "1978-02-16" "1978-02-16"
## [35721] "1978-02-16" "1978-02-16" "1971-10-21" "1971-10-21" "1971-10-21"
## [35726] "1971-10-21" "1971-10-21" "1971-10-21" "1971-10-21" "1983-06-10"
## [35731] "1983-06-10" "1983-06-10" "1983-06-10" "1983-06-10" "1983-06-10"
## [35736] "1983-06-10" "1983-06-10" "1983-06-10" "1983-06-10" "1983-06-10"
## [35741] "1983-06-10" "1983-06-10" "1983-06-10" "1983-06-10" "1983-06-10"
## [35746] "1983-06-10" "1983-06-10" "1983-06-10" "1983-06-10" "1983-06-10"
## [35751] "1979-06-20" "1979-06-20" "1979-06-20" "1979-06-20" "1979-06-20"
## [35756] "1989-03-05" "1989-03-05" "1989-03-05" "1971-12-23" "1971-12-23"
## [35761] "1971-12-23" "1971-12-23" "1971-12-23" "1971-12-23" "1971-12-23"
## [35766] "1971-12-23" "1987-06-09" "1987-06-09" "1987-06-09" "1987-06-09"
## [35771] "1987-06-09" "1987-06-09" "1987-06-09" "1987-06-09" "1987-06-09"
## [35776] "1987-06-09" "1987-06-09" "1987-06-09" "1987-06-09" "1984-06-25"
## [35781] "1984-06-25" "1984-06-25" "1984-06-25" "1984-06-25" "1984-06-25"
## [35786] "1984-06-25" "1984-06-25" "1984-06-25" "1984-06-25" "1984-06-25"
## [35791] "1984-06-25" "1984-06-25" "1984-06-25" "1984-06-25" "1984-06-25"
## [35796] "1984-06-25" "1974-06-02" "1974-06-02" "1974-06-02" "1974-06-02"
## [35801] "1974-06-02" "1974-06-02" "1974-06-02" "1974-06-02" "1974-06-02"
## [35806] "1974-06-02" "1974-06-02" "1974-06-02" "1974-06-02" "1991-02-04"
## [35811] "1991-02-04" "1991-02-04" "1991-02-04" "1988-07-24" "1988-07-24"
## [35816] "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24"
## [35821] "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24"
## [35826] "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24"
## [35831] "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24"
## [35836] "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24"
## [35841] "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24"
## [35846] "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24" "1988-07-24"
## [35851] "1988-07-24" "1988-07-24" "1988-07-24" "1970-09-11" "1970-09-11"
## [35856] "1970-09-11" "1970-09-11" "1970-09-11" "1971-08-25" "1971-08-25"
## [35861] "1971-08-25" "1971-08-25" "1971-08-25" "1986-02-12" "1986-02-12"
## [35866] "1986-07-25" "1986-07-25" "1986-07-25" "1986-07-25" "1986-07-25"
## [35871] "1986-07-25" "1987-12-15" "1987-12-15" "1987-12-15" "1981-03-08"
## [35876] "1981-03-08" "1981-03-08" "1981-03-08" "1981-03-08" "1981-03-08"
## [35881] "1981-03-08" "1981-03-08" "1981-03-08" "1981-03-08" "1992-11-25"
## [35886] "1992-11-25" "1992-11-25" "1992-11-25" "1992-11-25" "1992-06-12"
## [35891] "1992-06-12" "1992-06-12" "1992-06-12" "1992-06-12" "1992-06-12"
## [35896] "1992-06-12" "1992-06-12" "1992-06-12" "1971-07-07" "1971-07-07"
## [35901] "1971-07-07" "1971-07-07" "1971-07-07" "1971-07-07" "1971-07-07"
## [35906] "1971-07-07" "1971-07-07" "1971-07-07" "1971-07-07" "1971-07-07"
## [35911] "1971-07-07" "1971-07-07" "1971-07-07" "1975-08-01" "1975-08-01"
## [35916] "1975-10-28" "1975-10-28" "1975-10-28" "1975-10-28" "1975-10-28"
## [35921] "1990-06-26" "1990-06-26" "1990-06-26" "1990-06-26" "1990-06-26"
## [35926] "1990-06-26" "1990-06-26" "1990-06-26" "1990-06-26" "1981-08-02"
## [35931] "1981-08-02" "1981-08-02" "1981-08-02" "1981-08-02" "1981-08-02"
## [35936] "1988-12-25" "1988-12-25" "1988-12-25" "1988-12-25" "1988-12-25"
## [35941] "1988-12-25" "1988-12-25" "1988-12-25" "1988-12-25" "1988-12-25"
## [35946] "1988-12-25" "1988-12-25" "1988-12-25" "1988-12-25" "1988-12-25"
## [35951] "1988-12-25" "1988-12-25" "1988-12-25" "1988-12-25" "1988-12-25"
## [35956] "1977-08-26" "1977-08-26" "1977-08-26" "1977-08-26" "1977-08-26"
## [35961] "1987-07-07" "1987-07-07" "1987-07-07" "1987-07-07" "1987-07-07"
## [35966] "1987-07-07" "1970-02-01" "1970-02-01" "1970-02-01" "1970-02-01"
## [35971] "1970-02-01" "1970-02-01" "1970-02-01" "1970-02-01" "1970-02-01"
## [35976] "1970-02-01" "1970-02-01" "1970-02-01" "1970-02-01" "1970-02-01"
## [35981] "1970-02-01" "1989-01-28" "1989-01-28" "1989-01-28" "1989-01-28"
## [35986] "1989-01-28" "1989-01-28" "1989-01-28" "1989-01-28" "1989-01-28"
## [35991] "1989-01-28" "1989-01-28" "1989-01-28" "1989-01-28" "1989-01-28"
## [35996] "1989-01-28" "1989-01-28" "1989-01-28" "1989-01-28" "1989-01-28"
## [36001] "1989-01-28" "1989-01-28" "1982-01-21" "1982-01-21" "1982-01-21"
## [36006] "1982-01-21" "1982-01-21" "1982-01-21" "1982-01-21" "1982-01-21"
## [36011] "1982-01-21" "1982-01-21" "1971-03-01" "1971-03-01" "1971-03-01"
## [36016] "1971-03-01" "1971-03-01" "1972-06-29" "1972-06-29" "1972-06-29"
## [36021] "1972-06-29" "1972-06-29" "1972-06-29" "1972-06-29" "1972-06-29"
## [36026] "1972-06-29" "1972-06-29" "1972-06-29" "1972-06-29" "1972-06-29"
## [36031] "1977-11-05" "1977-11-05" "1977-11-05" "1977-11-05" "1977-11-05"
## [36036] "1977-11-05" "1977-11-05" "1977-11-05" "1977-11-05" "1977-11-05"
## [36041] "1976-04-12" "1976-04-12" "1976-04-12" "1976-04-12" "1976-04-12"
## [36046] "1976-04-12" "1979-10-07" "1979-10-07" "1979-10-07" "1979-10-07"
## [36051] "1979-10-07" "1979-10-07" "1979-10-07" "1979-10-07" "1979-10-07"
## [36056] "1979-10-07" "1987-06-22" "1987-06-22" "1987-06-22" "1987-06-22"
## [36061] "1987-06-22" "1987-06-22" "1987-06-22" "1987-06-22" "1987-06-22"
## [36066] "1987-06-22" "1987-06-22" "1973-02-04" "1973-02-04" "1973-02-04"
## [36071] "1973-02-04" "1973-02-04" "1983-01-15" "1983-01-15" "1983-01-15"
## [36076] "1983-01-15" "1983-01-15" "1983-01-15" "1983-01-15" "1983-01-15"
## [36081] "1983-01-15" "1983-01-15" "1983-01-15" "1983-01-15" "1983-01-15"
## [36086] "1980-03-17" "1980-03-17" "1980-03-17" "1970-12-01" "1970-12-01"
## [36091] "1970-12-01" "1970-12-01" "1970-12-01" "1970-12-01" "1970-12-01"
## [36096] "1970-12-01" "1970-12-01" "1970-12-01" "1970-12-01" "1970-12-01"
## [36101] "1970-12-01" "1970-12-01" "1970-12-01" "1970-12-01" "1984-12-09"
## [36106] "1984-12-09" "1991-02-25" "1991-02-25" "1991-02-25" "1991-02-25"
## [36111] "1991-02-25" "1991-02-25" "1991-02-25" "1991-02-25" "1971-10-08"
## [36116] "1971-10-08" "1971-10-08" "1971-10-08" "1971-10-08" "1971-10-08"
## [36121] "1971-10-08" "1971-10-08" "1971-10-08" "1971-10-08" "1971-10-08"
## [36126] "1992-03-11" "1992-03-11" "1992-03-11" "1992-03-11" "1992-03-11"
## [36131] "1992-03-11" "1992-03-11" "1992-03-11" "1992-03-11" "1992-03-11"
## [36136] "1989-01-13" "1989-01-13" "1989-01-13" "1980-04-25" "1980-04-25"
## [36141] "1980-04-25" "1980-04-25" "1980-04-25" "1980-04-25" "1980-04-25"
## [36146] "1980-04-25" "1980-04-25" "1984-09-25" "1984-09-25" "1984-09-25"
## [36151] "1984-09-25" "1984-09-25" "1984-09-25" "1984-09-25" "1984-09-25"
## [36156] "1980-12-07" "1980-12-07" "1980-12-07" "1980-12-07" "1980-12-07"
## [36161] "1980-12-07" "1980-12-07" "1980-12-07" "1970-07-27" "1970-07-27"
## [36166] "1970-07-27" "1970-07-27" "1970-07-27" "1970-07-27" "1970-07-27"
## [36171] "1970-07-27" "1970-07-27" "1970-07-27" "1970-07-27" "1970-07-27"
## [36176] "1970-07-27" "1970-07-27" "1970-07-27" "1970-07-27" "1970-07-27"
## [36181] "1970-07-27" "1970-07-27" "1970-07-27" "1970-07-27" "1981-07-13"
## [36186] "1981-07-13" "1981-07-13" "1981-07-13" "1981-07-13" "1981-07-13"
## [36191] "1981-07-13" "1981-07-13" "1981-07-13" "1981-07-13" "1981-07-13"
## [36196] "1990-08-04" "1990-08-04" "1990-08-04" "1990-08-04" "1990-08-04"
## [36201] "1974-02-25" "1974-02-25" "1974-02-25" "1974-02-25" "1970-09-08"
## [36206] "1970-09-08" "1970-09-08" "1970-09-08" "1970-09-08" "1978-03-18"
## [36211] "1978-03-18" "1978-03-18" "1978-03-18" "1978-03-18" "1977-05-26"
## [36216] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [36221] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [36226] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [36231] "1977-05-26" "1970-08-29" "1970-08-29" "1970-08-29" "1970-08-29"
## [36236] "1970-08-29" "1970-08-29" "1978-06-24" "1978-06-24" "1978-06-24"
## [36241] "1978-06-24" "1978-06-24" "1985-11-01" "1985-11-01" "1985-11-01"
## [36246] "1985-11-01" "1985-11-01" "1982-08-15" "1982-08-15" "1982-08-15"
## [36251] "1982-08-15" "1982-08-15" "1972-10-16" "1972-10-16" "1972-10-16"
## [36256] "1972-10-16" "1972-10-16" "1972-10-16" "1972-10-16" "1972-10-16"
## [36261] "1972-10-16" "1972-10-16" "1972-10-16" "1987-01-25" "1987-01-25"
## [36266] "1987-01-25" "1987-01-25" "1987-01-25" "1987-01-25" "1987-01-25"
## [36271] "1987-01-25" "1987-01-25" "1987-01-25" "1987-01-25" "1987-01-25"
## [36276] "1982-03-27" "1982-03-27" "1982-03-27" "1982-03-27" "1982-03-27"
## [36281] "1982-03-27" "1982-03-27" "1982-09-24" "1982-09-24" "1982-09-24"
## [36286] "1982-09-24" "1982-09-24" "1982-09-24" "1982-09-24" "1982-09-24"
## [36291] "1982-09-24" "1982-09-24" "1982-09-24" "1982-09-24" "1982-09-24"
## [36296] "1982-09-24" "1982-09-24" "1982-09-24" "1974-08-28" "1974-08-28"
## [36301] "1974-08-28" "1974-08-28" "1974-08-28" "1974-08-28" "1974-08-28"
## [36306] "1974-08-28" "1974-08-28" "1974-08-28" "1974-08-28" "1974-08-28"
## [36311] "1974-08-28" "1974-08-28" "1974-08-28" "1974-08-28" "1974-08-28"
## [36316] "1971-01-15" "1971-01-15" "1971-01-15" "1971-01-15" "1971-01-15"
## [36321] "1971-01-15" "1971-01-15" "1971-01-15" "1980-08-18" "1980-08-18"
## [36326] "1980-08-18" "1980-08-18" "1980-08-18" "1972-06-13" "1972-06-13"
## [36331] "1972-06-13" "1972-06-13" "1972-06-13" "1972-06-13" "1972-06-13"
## [36336] "1972-06-13" "1972-06-13" "1972-06-13" "1977-05-19" "1977-05-19"
## [36341] "1977-05-19" "1977-05-19" "1977-05-19" "1977-05-19" "1977-05-19"
## [36346] "1977-05-19" "1977-05-19" "1977-05-19" "1977-05-19" "1977-05-19"
## [36351] "1970-02-06" "1970-02-06" "1984-02-24" "1984-02-24" "1984-02-24"
## [36356] "1984-02-24" "1984-02-24" "1984-02-24" "1984-02-24" "1984-02-24"
## [36361] "1984-02-24" "1984-02-24" "1984-02-24" "1975-03-02" "1975-03-02"
## [36366] "1975-03-02" "1971-11-03" "1971-11-03" "1971-11-03" "1971-11-03"
## [36371] "1971-11-03" "1971-11-03" "1971-11-03" "1971-11-03" "1971-11-03"
## [36376] "1971-11-03" "1971-11-03" "1971-11-03" "1971-11-03" "1971-11-03"
## [36381] "1971-11-03" "1971-11-03" "1971-11-03" "1971-11-03" "1971-11-03"
## [36386] "1971-11-03" "1974-11-20" "1974-11-20" "1974-11-20" "1974-11-20"
## [36391] "1974-11-20" "1974-11-20" "1974-11-20" "1974-11-20" "1974-11-20"
## [36396] "1974-11-20" "1974-11-20" "1974-11-20" "1974-11-20" "1974-11-20"
## [36401] "1974-11-20" "1974-11-20" "1974-11-20" "1974-11-20" "1974-11-20"
## [36406] "1974-11-20" "1986-12-06" "1986-12-06" "1986-12-06" "1986-12-06"
## [36411] "1986-12-06" "1986-12-06" "1986-12-06" "1986-12-06" "1985-02-23"
## [36416] "1985-02-23" "1985-02-23" "1985-02-23" "1985-02-23" "1985-02-23"
## [36421] "1985-02-23" "1985-02-23" "1985-02-23" "1985-02-23" "1985-02-23"
## [36426] "1985-02-23" "1985-02-23" "1988-06-09" "1988-06-09" "1988-06-09"
## [36431] "1988-06-09" "1988-06-09" "1988-06-09" "1988-06-09" "1988-06-09"
## [36436] "1988-06-09" "1988-06-09" "1992-09-14" "1992-09-14" "1992-09-14"
## [36441] "1992-09-14" "1992-09-14" "1992-09-14" "1992-09-14" "1992-09-14"
## [36446] "1992-09-14" "1992-09-14" "1992-09-14" "1992-09-14" "1992-09-14"
## [36451] "1992-09-14" "1992-09-14" "1992-09-14" "1992-09-14" "1973-04-12"
## [36456] "1973-04-12" "1972-12-09" "1972-12-09" "1972-12-09" "1972-12-09"
## [36461] "1972-12-09" "1983-11-23" "1983-11-23" "1983-11-23" "1972-08-17"
## [36466] "1972-08-17" "1972-08-17" "1972-08-17" "1972-08-17" "1970-05-22"
## [36471] "1970-05-22" "1970-05-22" "1970-05-22" "1970-05-22" "1970-05-22"
## [36476] "1989-06-08" "1989-06-08" "1989-06-08" "1989-06-08" "1989-06-08"
## [36481] "1989-06-08" "1989-06-08" "1989-06-08" "1989-06-08" "1989-06-08"
## [36486] "1989-06-08" "1989-06-08" "1989-06-08" "1989-06-08" "1971-12-09"
## [36491] "1971-12-09" "1971-12-09" "1971-12-09" "1971-12-09" "1971-12-09"
## [36496] "1971-12-09" "1971-12-09" "1971-12-09" "1971-12-09" "1971-12-09"
## [36501] "1971-12-09" "1971-12-09" "1971-12-09" "1971-12-09" "1971-12-09"
## [36506] "1971-12-09" "1971-12-09" "1989-08-14" "1989-08-14" "1989-08-14"
## [36511] "1989-08-14" "1989-08-14" "1989-08-14" "1989-08-14" "1989-08-14"
## [36516] "1975-10-05" "1975-10-05" "1975-10-05" "1975-10-05" "1975-10-05"
## [36521] "1975-10-05" "1975-10-05" "1975-10-05" "1975-10-05" "1975-10-05"
## [36526] "1975-10-05" "1975-10-05" "1975-10-05" "1975-10-05" "1987-11-11"
## [36531] "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11"
## [36536] "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11" "1987-11-11"
## [36541] "1992-07-16" "1992-07-16" "1992-07-16" "1992-07-16" "1992-07-16"
## [36546] "1992-10-18" "1992-10-18" "1992-10-18" "1992-10-18" "1992-10-18"
## [36551] "1992-10-18" "1992-10-18" "1979-12-04" "1979-12-04" "1979-12-04"
## [36556] "1979-12-04" "1979-12-04" "1979-12-04" "1979-12-04" "1979-12-04"
## [36561] "1979-12-04" "1979-12-04" "1979-12-04" "1975-05-05" "1975-05-05"
## [36566] "1975-05-05" "1975-05-05" "1984-05-26" "1984-05-26" "1984-05-26"
## [36571] "1973-01-12" "1973-01-12" "1973-01-12" "1973-01-12" "1973-01-12"
## [36576] "1973-01-12" "1973-01-12" "1973-01-12" "1973-01-12" "1973-01-12"
## [36581] "1973-01-12" "1987-07-29" "1987-07-29" "1987-07-29" "1987-07-29"
## [36586] "1987-07-29" "1970-12-13" "1970-12-13" "1985-08-22" "1985-08-22"
## [36591] "1985-08-22" "1985-08-22" "1985-08-22" "1985-08-22" "1985-08-22"
## [36596] "1985-08-22" "1985-08-22" "1985-08-22" "1985-08-22" "1981-05-29"
## [36601] "1981-05-29" "1981-05-29" "1981-05-29" "1981-05-29" "1980-02-28"
## [36606] "1980-02-28" "1974-06-01" "1974-06-01" "1978-11-14" "1978-11-14"
## [36611] "1978-11-14" "1978-11-14" "1978-11-14" "1978-11-14" "1978-11-14"
## [36616] "1974-02-23" "1974-02-23" "1974-02-23" "1974-02-23" "1974-02-23"
## [36621] "1974-02-23" "1974-02-23" "1974-02-23" "1974-02-23" "1972-12-18"
## [36626] "1972-12-18" "1972-12-18" "1972-12-18" "1972-12-18" "1972-12-18"
## [36631] "1972-12-18" "1972-12-18" "1978-12-02" "1978-12-02" "1978-12-02"
## [36636] "1978-12-02" "1978-12-02" "1989-12-13" "1989-12-13" "1989-12-13"
## [36641] "1989-12-13" "1989-12-13" "1989-12-13" "1989-12-13" "1990-10-11"
## [36646] "1990-10-11" "1990-10-11" "1990-10-11" "1990-10-11" "1990-10-11"
## [36651] "1990-10-11" "1990-10-11" "1990-10-11" "1990-10-11" "1990-03-23"
## [36656] "1990-03-23" "1990-03-23" "1990-03-23" "1990-03-23" "1972-05-13"
## [36661] "1972-05-13" "1972-05-13" "1972-05-13" "1972-05-13" "1972-05-13"
## [36666] "1972-05-13" "1972-05-13" "1972-05-13" "1972-05-13" "1977-06-09"
## [36671] "1977-06-09" "1977-06-09" "1977-06-09" "1977-06-09" "1977-06-09"
## [36676] "1977-06-09" "1977-06-09" "1977-06-09" "1992-09-11" "1992-09-11"
## [36681] "1992-09-11" "1992-09-11" "1992-09-11" "1992-09-11" "1992-09-11"
## [36686] "1992-09-11" "1992-09-11" "1992-09-11" "1974-07-26" "1974-07-26"
## [36691] "1975-09-10" "1975-09-10" "1975-09-10" "1975-09-10" "1975-09-10"
## [36696] "1975-09-10" "1975-05-12" "1975-05-12" "1975-05-12" "1975-05-12"
## [36701] "1975-05-12" "1975-05-12" "1985-06-07" "1985-06-07" "1985-06-07"
## [36706] "1985-06-07" "1985-06-07" "1985-06-07" "1974-06-06" "1974-06-06"
## [36711] "1974-06-06" "1974-06-06" "1974-06-06" "1974-06-06" "1974-06-06"
## [36716] "1974-06-06" "1974-06-06" "1974-06-06" "1985-02-11" "1985-02-11"
## [36721] "1985-02-11" "1985-02-11" "1985-02-11" "1985-02-11" "1985-02-11"
## [36726] "1985-02-11" "1985-02-11" "1985-02-11" "1985-02-11" "1985-02-11"
## [36731] "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22"
## [36736] "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22"
## [36741] "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22"
## [36746] "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22"
## [36751] "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22"
## [36756] "1988-06-22" "1988-06-22" "1988-06-22" "1988-06-22" "1986-03-02"
## [36761] "1986-03-02" "1986-03-02" "1986-03-02" "1986-03-02" "1986-03-02"
## [36766] "1986-03-02" "1986-03-02" "1986-03-02" "1986-03-02" "1986-03-02"
## [36771] "1986-03-02" "1986-03-02" "1986-03-02" "1970-10-20" "1970-10-20"
## [36776] "1970-10-20" "1970-10-20" "1970-10-20" "1981-05-18" "1981-05-18"
## [36781] "1981-05-18" "1981-05-18" "1981-05-18" "1981-05-18" "1981-05-18"
## [36786] "1981-05-18" "1981-05-18" "1981-05-18" "1981-05-18" "1981-05-18"
## [36791] "1981-05-18" "1970-07-09" "1970-07-09" "1970-07-09" "1970-07-09"
## [36796] "1970-07-09" "1970-07-09" "1970-07-09" "1970-07-09" "1970-07-09"
## [36801] "1970-07-09" "1970-07-09" "1970-07-09" "1970-07-09" "1970-07-09"
## [36806] "1970-07-09" "1970-07-09" "1970-07-09" "1970-07-09" "1970-07-09"
## [36811] "1970-07-09" "1970-07-09" "1970-07-09" "1970-07-09" "1970-07-09"
## [36816] "1970-07-09" "1979-07-15" "1979-07-15" "1979-07-15" "1979-07-15"
## [36821] "1979-07-15" "1979-07-15" "1979-07-15" "1979-07-15" "1979-07-15"
## [36826] "1972-04-08" "1972-04-08" "1972-04-08" "1972-04-08" "1972-04-08"
## [36831] "1972-04-08" "1972-04-08" "1972-04-08" "1972-04-08" "1972-04-08"
## [36836] "1972-04-08" "1972-04-08" "1972-04-08" "1972-04-08" "1989-08-03"
## [36841] "1989-08-03" "1989-08-03" "1989-08-03" "1989-08-03" "1989-08-03"
## [36846] "1989-08-03" "1989-08-03" "1991-02-03" "1991-02-03" "1991-02-03"
## [36851] "1991-02-03" "1991-02-03" "1991-02-03" "1991-02-03" "1991-02-03"
## [36856] "1991-02-03" "1991-02-03" "1991-02-03" "1991-02-03" "1987-06-11"
## [36861] "1987-06-11" "1987-06-11" "1987-06-11" "1987-06-11" "1987-06-11"
## [36866] "1987-06-11" "1987-06-11" "1987-06-11" "1987-06-11" "1987-06-11"
## [36871] "1987-06-11" "1987-06-11" "1987-06-11" "1987-06-11" "1987-06-11"
## [36876] "1987-06-11" "1987-06-11" "1987-06-11" "1987-06-11" "1987-06-11"
## [36881] "1987-06-11" "1987-06-11" "1977-06-15" "1977-06-15" "1977-06-15"
## [36886] "1984-06-16" "1984-06-16" "1984-06-16" "1984-06-16" "1984-06-16"
## [36891] "1984-06-16" "1984-06-16" "1984-01-21" "1984-01-21" "1975-06-04"
## [36896] "1975-06-04" "1975-06-04" "1975-06-04" "1975-06-04" "1975-06-04"
## [36901] "1975-06-04" "1975-06-04" "1975-06-04" "1975-06-04" "1975-06-04"
## [36906] "1975-06-04" "1975-06-04" "1975-06-04" "1975-06-04" "1975-06-04"
## [36911] "1975-06-04" "1975-06-04" "1975-06-04" "1981-01-24" "1981-01-24"
## [36916] "1981-01-24" "1981-01-24" "1981-01-24" "1981-01-24" "1981-01-24"
## [36921] "1981-01-24" "1981-01-24" "1981-01-24" "1981-01-24" "1979-07-01"
## [36926] "1979-07-01" "1979-07-01" "1979-07-01" "1979-07-01" "1979-07-01"
## [36931] "1979-07-01" "1979-07-01" "1979-07-01" "1979-07-01" "1979-07-01"
## [36936] "1979-07-01" "1979-07-01" "1979-07-01" "1979-07-01" "1979-07-01"
## [36941] "1983-02-17" "1983-02-17" "1983-02-17" "1982-12-21" "1982-12-21"
## [36946] "1982-12-21" "1982-12-21" "1982-12-21" "1987-06-06" "1987-06-06"
## [36951] "1987-06-06" "1987-06-06" "1987-06-06" "1987-06-06" "1987-06-06"
## [36956] "1987-06-06" "1987-06-06" "1987-06-06" "1990-08-25" "1990-08-25"
## [36961] "1990-08-25" "1990-08-25" "1990-08-25" "1990-08-25" "1990-08-25"
## [36966] "1990-08-25" "1990-08-25" "1990-08-25" "1987-11-07" "1987-11-07"
## [36971] "1987-11-07" "1987-11-07" "1987-11-07" "1987-11-07" "1987-11-07"
## [36976] "1987-11-07" "1987-11-07" "1987-11-07" "1987-11-07" "1987-11-07"
## [36981] "1987-11-07" "1987-11-07" "1987-11-07" "1987-11-07" "1987-11-07"
## [36986] "1987-11-07" "1987-11-07" "1987-11-07" "1987-11-07" "1992-04-21"
## [36991] "1992-04-21" "1992-04-21" "1992-04-21" "1992-04-21" "1975-02-16"
## [36996] "1975-02-16" "1975-02-16" "1975-02-16" "1975-02-16" "1978-02-15"
## [37001] "1978-02-15" "1978-02-15" "1978-02-15" "1978-02-15" "1982-09-28"
## [37006] "1982-09-28" "1982-09-28" "1982-09-28" "1982-09-28" "1982-09-28"
## [37011] "1982-09-28" "1978-03-18" "1978-03-18" "1978-03-18" "1978-03-18"
## [37016] "1989-03-25" "1989-03-25" "1989-03-25" "1989-03-25" "1989-03-25"
## [37021] "1989-03-25" "1989-03-25" "1989-03-25" "1989-03-25" "1989-03-25"
## [37026] "1989-10-18" "1989-10-18" "1989-10-18" "1989-10-18" "1989-10-18"
## [37031] "1991-05-23" "1991-05-23" "1991-05-23" "1991-05-23" "1991-05-23"
## [37036] "1991-05-23" "1991-05-23" "1986-06-02" "1986-06-02" "1986-06-02"
## [37041] "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24" "1973-12-24"
## [37046] "1973-12-24" "1973-12-24" "1973-12-24" "1974-11-11" "1974-11-11"
## [37051] "1974-11-11" "1974-11-11" "1974-11-11" "1974-11-11" "1974-11-11"
## [37056] "1974-11-11" "1974-11-11" "1980-03-03" "1980-03-03" "1976-08-11"
## [37061] "1976-08-11" "1977-11-06" "1977-11-06" "1977-11-06" "1977-11-06"
## [37066] "1977-11-06" "1984-08-03" "1984-08-03" "1984-08-03" "1984-08-03"
## [37071] "1984-08-03" "1984-08-03" "1984-08-03" "1984-08-03" "1984-08-03"
## [37076] "1984-08-03" "1984-08-03" "1984-08-03" "1984-08-03" "1984-08-03"
## [37081] "1990-07-26" "1990-07-26" "1990-07-26" "1990-07-26" "1990-07-26"
## [37086] "1990-07-26" "1990-07-26" "1990-07-26" "1990-07-26" "1990-07-26"
## [37091] "1990-07-26" "1990-07-26" "1990-07-26" "1990-07-26" "1982-03-13"
## [37096] "1982-03-13" "1982-03-13" "1982-03-13" "1982-03-13" "1982-03-13"
## [37101] "1982-03-13" "1982-03-13" "1982-03-13" "1982-03-13" "1982-03-13"
## [37106] "1978-09-14" "1978-09-14" "1978-09-14" "1978-09-14" "1978-09-14"
## [37111] "1978-09-14" "1978-09-14" "1978-09-14" "1978-09-14" "1978-09-14"
## [37116] "1978-09-14" "1978-09-14" "1978-09-14" "1978-09-14" "1980-07-23"
## [37121] "1980-07-23" "1980-07-23" "1980-07-23" "1980-07-23" "1980-07-23"
## [37126] "1989-12-04" "1989-12-04" "1989-12-04" "1989-12-04" "1989-12-04"
## [37131] "1989-12-04" "1989-12-04" "1989-12-04" "1989-12-04" "1989-12-04"
## [37136] "1989-12-04" "1989-12-04" "1989-12-04" "1989-12-04" "1989-12-04"
## [37141] "1989-12-04" "1989-12-04" "1989-12-04" "1989-12-04" "1989-12-04"
## [37146] "1975-01-15" "1975-01-15" "1975-01-15" "1975-01-15" "1981-01-24"
## [37151] "1981-01-24" "1981-01-24" "1981-01-24" "1981-01-24" "1981-01-24"
## [37156] "1981-01-24" "1981-01-24" "1981-01-24" "1981-01-24" "1981-01-24"
## [37161] "1989-03-24" "1989-03-24" "1989-03-24" "1990-10-17" "1990-10-17"
## [37166] "1990-10-17" "1990-10-17" "1990-10-17" "1970-09-06" "1970-09-06"
## [37171] "1970-09-06" "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13"
## [37176] "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13"
## [37181] "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13"
## [37186] "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13"
## [37191] "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13"
## [37196] "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13" "1980-07-13"
## [37201] "1980-07-13" "1980-07-13" "1980-07-13" "1989-08-13" "1989-08-13"
## [37206] "1989-08-13" "1989-08-13" "1989-08-13" "1989-08-13" "1989-08-13"
## [37211] "1989-08-13" "1989-08-13" "1989-08-13" "1989-08-13" "1989-08-13"
## [37216] "1989-08-13" "1989-08-13" "1989-08-13" "1989-08-13" "1988-01-22"
## [37221] "1988-01-22" "1983-10-24" "1983-10-24" "1983-10-24" "1983-10-24"
## [37226] "1983-10-24" "1983-10-24" "1983-10-24" "1983-10-24" "1983-10-24"
## [37231] "1983-10-24" "1983-10-24" "1983-10-24" "1983-10-24" "1983-10-24"
## [37236] "1983-10-24" "1983-10-24" "1983-10-24" "1983-10-24" "1983-10-24"
## [37241] "1983-10-24" "1983-10-24" "1981-06-20" "1981-06-20" "1981-06-20"
## [37246] "1981-06-20" "1981-06-20" "1981-06-20" "1981-06-20" "1981-06-20"
## [37251] "1981-06-20" "1981-06-20" "1981-06-20" "1981-06-20" "1981-06-20"
## [37256] "1981-06-20" "1981-06-20" "1974-11-21" "1974-11-21" "1974-11-21"
## [37261] "1974-11-21" "1974-11-21" "1974-11-21" "1974-11-21" "1974-11-21"
## [37266] "1974-11-21" "1974-11-21" "1974-11-21" "1982-08-26" "1982-08-26"
## [37271] "1982-08-26" "1982-08-26" "1982-08-26" "1982-08-26" "1982-08-26"
## [37276] "1982-08-26" "1982-08-26" "1974-05-15" "1974-05-15" "1974-05-15"
## [37281] "1974-05-15" "1974-05-15" "1974-05-15" "1974-05-15" "1974-05-15"
## [37286] "1974-05-15" "1974-05-15" "1974-05-15" "1974-05-15" "1974-05-15"
## [37291] "1974-05-15" "1974-05-15" "1974-05-15" "1974-05-15" "1974-05-15"
## [37296] "1974-05-15" "1972-03-20" "1972-03-20" "1988-08-10" "1988-08-10"
## [37301] "1988-08-10" "1988-08-10" "1988-08-10" "1988-08-10" "1988-08-10"
## [37306] "1988-08-10" "1988-08-10" "1988-08-10" "1988-08-10" "1988-08-10"
## [37311] "1988-08-10" "1988-08-10" "1988-08-10" "1988-08-10" "1988-08-10"
## [37316] "1988-08-10" "1988-08-10" "1988-08-10" "1988-08-10" "1988-08-10"
## [37321] "1988-08-10" "1988-08-10" "1988-08-10" "1988-08-10" "1988-08-10"
## [37326] "1988-09-26" "1988-09-26" "1991-05-04" "1991-05-04" "1991-05-04"
## [37331] "1991-05-04" "1987-08-09" "1987-08-09" "1983-01-09" "1983-01-09"
## [37336] "1983-01-09" "1983-01-09" "1983-01-09" "1983-01-09" "1983-01-09"
## [37341] "1983-01-09" "1975-08-16" "1975-08-16" "1975-08-16" "1975-08-16"
## [37346] "1975-08-16" "1975-08-16" "1975-08-16" "1975-08-16" "1975-08-16"
## [37351] "1975-08-16" "1975-08-16" "1975-08-16" "1975-08-16" "1971-05-08"
## [37356] "1971-05-08" "1971-05-08" "1970-03-29" "1970-03-29" "1984-11-19"
## [37361] "1984-11-19" "1986-11-03" "1986-11-03" "1986-11-03" "1986-11-03"
## [37366] "1986-11-03" "1986-11-03" "1986-11-03" "1986-11-03" "1986-11-03"
## [37371] "1986-11-03" "1986-11-03" "1986-07-15" "1986-07-15" "1986-07-15"
## [37376] "1986-07-15" "1986-07-15" "1986-07-15" "1986-07-15" "1986-07-15"
## [37381] "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19"
## [37386] "1980-06-19" "1980-06-19" "1980-06-19" "1986-12-24" "1986-12-24"
## [37391] "1986-12-24" "1986-12-24" "1986-12-24" "1986-12-24" "1986-12-24"
## [37396] "1986-12-24" "1986-12-24" "1986-12-24" "1986-12-24" "1986-12-24"
## [37401] "1986-12-24" "1986-12-24" "1973-09-04" "1973-09-04" "1973-09-04"
## [37406] "1973-09-04" "1973-09-04" "1973-09-04" "1973-09-04" "1973-09-04"
## [37411] "1973-09-04" "1973-09-04" "1973-09-04" "1976-02-25" "1976-02-25"
## [37416] "1976-02-25" "1976-02-25" "1976-02-25" "1976-02-25" "1976-02-25"
## [37421] "1976-02-25" "1976-02-25" "1976-02-25" "1976-02-25" "1976-02-25"
## [37426] "1992-07-04" "1992-07-04" "1992-07-04" "1992-07-04" "1992-07-04"
## [37431] "1976-09-29" "1976-09-29" "1976-09-29" "1976-09-29" "1976-09-29"
## [37436] "1976-09-29" "1976-09-29" "1976-09-29" "1976-09-29" "1976-09-29"
## [37441] "1976-09-29" "1976-09-29" "1976-09-29" "1976-09-29" "1976-09-29"
## [37446] "1976-09-29" "1976-09-29" "1976-09-29" "1976-09-29" "1976-09-29"
## [37451] "1983-05-26" "1983-05-26" "1983-05-26" "1983-05-26" "1983-05-26"
## [37456] "1983-05-26" "1983-05-26" "1983-05-26" "1983-05-26" "1983-05-26"
## [37461] "1983-05-26" "1983-05-26" "1983-05-26" "1973-10-05" "1973-10-05"
## [37466] "1973-10-05" "1973-10-05" "1973-10-05" "1973-10-05" "1973-10-05"
## [37471] "1973-10-05" "1973-10-05" "1973-10-05" "1973-10-05" "1973-10-05"
## [37476] "1973-10-05" "1973-10-05" "1973-10-05" "1973-10-05" "1973-10-05"
## [37481] "1973-10-05" "1973-10-05" "1973-10-05" "1973-10-05" "1972-05-23"
## [37486] "1972-05-23" "1972-05-23" "1991-03-01" "1991-03-01" "1991-03-01"
## [37491] "1983-04-05" "1983-04-05" "1992-06-15" "1992-06-15" "1992-06-15"
## [37496] "1992-06-15" "1992-06-15" "1992-06-15" "1992-06-15" "1992-06-15"
## [37501] "1992-06-15" "1992-06-15" "1992-06-15" "1992-06-15" "1980-03-08"
## [37506] "1980-03-08" "1980-03-08" "1980-03-08" "1980-03-08" "1980-03-08"
## [37511] "1980-03-08" "1980-03-08" "1980-03-08" "1980-03-08" "1980-03-08"
## [37516] "1980-03-08" "1980-03-08" "1980-03-08" "1980-03-08" "1980-03-08"
## [37521] "1970-07-01" "1970-07-01" "1970-07-01" "1970-07-01" "1970-07-01"
## [37526] "1970-07-01" "1970-07-01" "1970-07-01" "1970-07-01" "1980-02-08"
## [37531] "1980-02-08" "1980-02-08" "1980-02-08" "1980-02-08" "1976-08-03"
## [37536] "1976-08-03" "1976-08-03" "1976-08-03" "1976-08-03" "1976-08-03"
## [37541] "1976-08-03" "1976-08-03" "1979-01-11" "1979-01-11" "1979-01-11"
## [37546] "1979-01-11" "1979-01-11" "1979-01-11" "1979-01-11" "1979-01-11"
## [37551] "1979-01-11" "1979-01-11" "1979-01-11" "1983-01-16" "1983-01-16"
## [37556] "1983-01-16" "1983-01-16" "1983-01-16" "1983-01-16" "1971-11-28"
## [37561] "1971-11-28" "1971-11-28" "1971-11-28" "1971-11-28" "1977-04-03"
## [37566] "1977-04-03" "1977-04-03" "1977-04-03" "1977-04-03" "1977-04-03"
## [37571] "1977-04-03" "1977-04-03" "1977-04-03" "1977-04-03" "1989-12-07"
## [37576] "1989-12-07" "1989-12-07" "1989-12-07" "1989-12-07" "1989-06-18"
## [37581] "1989-06-18" "1989-06-18" "1989-06-18" "1989-06-18" "1981-07-05"
## [37586] "1981-07-05" "1981-07-05" "1981-07-05" "1981-07-05" "1975-06-15"
## [37591] "1975-06-15" "1975-06-15" "1975-06-15" "1975-06-15" "1987-01-22"
## [37596] "1987-01-22" "1987-01-22" "1987-01-22" "1987-01-22" "1987-01-22"
## [37601] "1987-01-22" "1987-01-22" "1987-01-22" "1987-01-22" "1987-01-22"
## [37606] "1987-01-22" "1976-11-02" "1976-11-02" "1976-11-02" "1976-11-02"
## [37611] "1976-11-02" "1976-11-02" "1976-11-02" "1976-11-02" "1976-11-02"
## [37616] "1976-11-02" "1976-11-02" "1976-11-02" "1976-11-02" "1980-08-05"
## [37621] "1980-08-05" "1970-03-29" "1970-03-29" "1970-03-29" "1979-09-06"
## [37626] "1979-09-06" "1979-09-06" "1979-09-06" "1979-09-06" "1979-09-06"
## [37631] "1979-09-06" "1979-09-06" "1979-09-06" "1979-09-06" "1979-09-06"
## [37636] "1979-09-06" "1979-09-06" "1979-09-06" "1979-09-06" "1979-09-06"
## [37641] "1979-09-06" "1974-11-13" "1974-11-13" "1974-11-13" "1974-11-13"
## [37646] "1974-11-13" "1974-11-13" "1974-11-13" "1974-11-13" "1975-01-19"
## [37651] "1975-01-19" "1975-01-19" "1975-01-19" "1975-01-19" "1975-01-19"
## [37656] "1975-01-19" "1975-01-19" "1975-01-19" "1975-01-19" "1975-01-19"
## [37661] "1975-01-19" "1975-01-19" "1975-01-19" "1975-01-19" "1977-06-14"
## [37666] "1977-06-14" "1977-06-14" "1974-12-07" "1974-12-07" "1986-08-29"
## [37671] "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29"
## [37676] "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29"
## [37681] "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29"
## [37686] "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29" "1986-08-29"
## [37691] "1986-08-29" "1984-10-26" "1984-10-26" "1984-10-26" "1984-10-26"
## [37696] "1984-10-26" "1984-10-26" "1984-10-26" "1984-10-26" "1984-10-26"
## [37701] "1984-10-26" "1976-03-01" "1976-03-01" "1976-03-01" "1976-03-01"
## [37706] "1976-03-01" "1976-03-01" "1976-03-01" "1982-11-16" "1982-11-16"
## [37711] "1982-11-16" "1975-12-06" "1975-12-06" "1975-12-06" "1975-12-06"
## [37716] "1990-11-08" "1990-11-08" "1990-11-08" "1990-11-08" "1990-11-08"
## [37721] "1990-11-08" "1990-11-08" "1990-11-08" "1990-11-08" "1990-11-08"
## [37726] "1975-09-24" "1975-09-24" "1975-09-24" "1975-09-24" "1975-09-24"
## [37731] "1975-09-24" "1975-09-24" "1975-09-24" "1975-09-24" "1975-09-24"
## [37736] "1975-09-24" "1975-09-24" "1975-09-24" "1975-09-24" "1975-09-24"
## [37741] "1975-09-24" "1975-09-24" "1975-09-24" "1975-09-24" "1980-11-27"
## [37746] "1980-11-27" "1980-11-27" "1980-11-27" "1980-11-27" "1980-11-27"
## [37751] "1980-11-27" "1980-11-27" "1980-11-27" "1980-11-27" "1980-11-27"
## [37756] "1992-10-07" "1992-10-07" "1992-10-07" "1992-10-07" "1992-10-07"
## [37761] "1992-10-07" "1992-10-07" "1992-10-07" "1992-10-07" "1992-10-07"
## [37766] "1992-10-07" "1992-10-07" "1992-10-07" "1992-10-07" "1992-10-07"
## [37771] "1992-10-07" "1992-10-07" "1992-10-07" "1992-10-07" "1992-10-07"
## [37776] "1992-10-07" "1992-10-07" "1974-04-02" "1974-04-02" "1974-04-02"
## [37781] "1974-04-02" "1974-04-02" "1974-04-02" "1974-04-02" "1974-04-02"
## [37786] "1974-04-02" "1974-04-02" "1981-03-14" "1981-03-14" "1981-03-14"
## [37791] "1981-03-14" "1981-03-14" "1981-03-14" "1986-04-06" "1986-04-06"
## [37796] "1986-04-06" "1986-04-06" "1986-04-06" "1986-04-06" "1986-04-06"
## [37801] "1989-09-14" "1989-09-14" "1989-09-14" "1974-12-18" "1974-12-18"
## [37806] "1974-12-18" "1974-12-18" "1974-12-18" "1974-12-18" "1974-12-18"
## [37811] "1974-12-18" "1974-12-18" "1974-12-18" "1989-11-01" "1989-11-01"
## [37816] "1989-11-01" "1989-11-01" "1989-11-01" "1989-11-01" "1989-11-01"
## [37821] "1989-11-01" "1989-11-01" "1975-11-16" "1975-11-16" "1975-11-16"
## [37826] "1975-11-16" "1975-11-16" "1975-11-16" "1977-05-20" "1977-05-20"
## [37831] "1977-05-20" "1977-05-20" "1977-05-20" "1977-05-20" "1977-05-20"
## [37836] "1977-05-20" "1977-05-20" "1977-05-20" "1977-05-20" "1977-05-20"
## [37841] "1982-06-03" "1982-06-03" "1982-06-03" "1982-06-03" "1982-06-03"
## [37846] "1982-06-03" "1982-06-03" "1983-07-29" "1983-07-29" "1983-07-29"
## [37851] "1983-07-29" "1983-07-29" "1983-07-29" "1983-07-29" "1983-07-29"
## [37856] "1983-07-29" "1983-07-29" "1983-07-29" "1983-07-29" "1983-07-29"
## [37861] "1978-10-08" "1978-10-08" "1978-10-08" "1978-10-08" "1978-10-08"
## [37866] "1978-10-08" "1978-10-08" "1980-03-27" "1980-03-27" "1980-03-27"
## [37871] "1980-03-27" "1980-03-27" "1980-03-27" "1980-03-27" "1980-03-27"
## [37876] "1980-03-27" "1980-03-27" "1980-03-27" "1980-03-27" "1980-03-27"
## [37881] "1980-03-27" "1980-03-27" "1980-03-27" "1980-03-27" "1980-03-27"
## [37886] "1980-03-27" "1980-03-27" "1980-03-27" "1980-03-27" "1980-03-27"
## [37891] "1980-03-27" "1978-06-08" "1978-06-08" "1978-06-08" "1978-06-08"
## [37896] "1978-06-08" "1975-12-01" "1975-12-01" "1975-12-01" "1975-12-01"
## [37901] "1975-12-01" "1975-12-01" "1975-12-01" "1975-12-01" "1975-12-01"
## [37906] "1975-12-01" "1975-12-01" "1975-12-01" "1975-12-01" "1977-11-24"
## [37911] "1977-11-24" "1977-11-24" "1977-11-24" "1977-11-24" "1977-11-24"
## [37916] "1977-11-24" "1977-11-24" "1977-11-24" "1977-11-24" "1977-11-24"
## [37921] "1977-11-24" "1977-11-24" "1977-11-24" "1979-08-28" "1979-08-28"
## [37926] "1979-08-28" "1979-08-28" "1979-08-28" "1979-08-28" "1979-08-28"
## [37931] "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26"
## [37936] "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26"
## [37941] "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26"
## [37946] "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26"
## [37951] "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26" "1988-09-26"
## [37956] "1988-09-26" "1983-01-23" "1983-01-23" "1983-01-23" "1983-01-23"
## [37961] "1983-01-23" "1983-01-23" "1976-04-27" "1976-04-27" "1976-04-27"
## [37966] "1976-04-27" "1976-04-27" "1976-04-27" "1976-04-27" "1976-04-27"
## [37971] "1976-04-27" "1976-04-27" "1976-04-27" "1976-04-27" "1976-04-27"
## [37976] "1976-04-27" "1976-04-27" "1976-04-27" "1976-04-27" "1970-10-28"
## [37981] "1970-10-28" "1970-10-28" "1970-10-28" "1970-10-28" "1970-10-28"
## [37986] "1970-10-28" "1970-10-28" "1970-10-28" "1979-02-20" "1979-02-20"
## [37991] "1979-02-20" "1979-02-20" "1979-02-20" "1981-12-16" "1981-12-16"
## [37996] "1981-12-16" "1981-12-16" "1981-12-16" "1981-12-16" "1981-12-16"
## [38001] "1981-12-16" "1981-12-16" "1981-12-16" "1981-12-16" "1981-12-16"
## [38006] "1981-12-16" "1981-12-16" "1981-12-16" "1982-09-08" "1982-09-08"
## [38011] "1982-09-08" "1982-09-08" "1982-09-08" "1982-09-08" "1982-09-08"
## [38016] "1982-09-08" "1976-09-22" "1976-09-22" "1976-09-22" "1976-09-22"
## [38021] "1976-09-22" "1976-09-22" "1976-09-22" "1972-05-16" "1972-05-16"
## [38026] "1972-05-16" "1972-05-16" "1972-05-16" "1972-05-16" "1972-05-16"
## [38031] "1972-05-16" "1972-05-16" "1972-05-16" "1972-05-16" "1972-05-16"
## [38036] "1972-05-16" "1972-05-16" "1972-05-16" "1972-05-16" "1972-05-16"
## [38041] "1972-05-16" "1972-05-16" "1975-11-19" "1975-11-19" "1975-11-19"
## [38046] "1975-11-19" "1975-11-19" "1986-04-04" "1986-04-04" "1986-04-04"
## [38051] "1986-04-04" "1986-04-04" "1972-09-09" "1972-09-09" "1972-09-09"
## [38056] "1972-09-09" "1972-09-09" "1972-09-09" "1972-09-09" "1972-09-09"
## [38061] "1977-11-12" "1977-11-12" "1977-11-12" "1977-11-12" "1977-11-12"
## [38066] "1977-11-12" "1977-11-12" "1977-11-12" "1974-01-25" "1974-01-25"
## [38071] "1974-01-25" "1974-01-25" "1974-01-25" "1974-01-25" "1974-01-25"
## [38076] "1974-01-25" "1974-01-25" "1974-01-25" "1983-05-05" "1983-05-05"
## [38081] "1983-05-05" "1983-05-05" "1983-05-05" "1983-05-05" "1983-05-05"
## [38086] "1983-05-05" "1980-04-13" "1980-04-13" "1980-04-13" "1980-04-13"
## [38091] "1980-04-13" "1980-04-13" "1980-04-13" "1980-04-13" "1980-04-13"
## [38096] "1980-04-13" "1981-02-16" "1981-02-16" "1991-08-02" "1991-08-02"
## [38101] "1991-08-02" "1987-09-22" "1987-09-22" "1987-09-22" "1987-09-22"
## [38106] "1987-09-22" "1987-09-22" "1989-03-10" "1989-03-10" "1989-03-10"
## [38111] "1989-03-10" "1989-03-10" "1989-03-10" "1989-03-10" "1989-03-10"
## [38116] "1989-03-10" "1982-09-23" "1982-09-23" "1982-09-23" "1982-09-23"
## [38121] "1982-09-23" "1982-09-23" "1982-09-23" "1982-09-23" "1982-09-23"
## [38126] "1982-09-23" "1982-09-23" "1982-09-23" "1989-07-04" "1989-07-04"
## [38131] "1989-07-04" "1989-07-04" "1989-07-04" "1989-07-04" "1989-07-04"
## [38136] "1981-01-20" "1981-01-20" "1981-01-20" "1981-01-20" "1981-01-20"
## [38141] "1981-01-20" "1981-01-20" "1981-01-20" "1971-05-24" "1971-05-24"
## [38146] "1971-05-24" "1971-05-24" "1971-05-24" "1971-05-24" "1971-05-24"
## [38151] "1986-06-29" "1986-06-29" "1986-06-29" "1986-06-29" "1986-06-29"
## [38156] "1986-06-29" "1983-05-04" "1983-05-04" "1983-05-04" "1983-05-04"
## [38161] "1983-05-04" "1983-05-04" "1983-05-04" "1983-05-04" "1983-05-04"
## [38166] "1983-05-04" "1983-05-04" "1983-05-04" "1983-05-04" "1983-05-04"
## [38171] "1983-05-04" "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24"
## [38176] "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24"
## [38181] "1980-04-24" "1980-04-24" "1980-04-24" "1980-04-24" "1973-10-26"
## [38186] "1973-10-26" "1973-10-26" "1973-10-26" "1973-10-26" "1973-10-26"
## [38191] "1973-10-26" "1973-10-26" "1973-10-26" "1973-10-26" "1984-07-15"
## [38196] "1984-07-15" "1984-07-15" "1984-07-15" "1984-07-15" "1992-04-16"
## [38201] "1992-04-16" "1992-04-16" "1992-04-16" "1992-04-16" "1992-04-16"
## [38206] "1992-04-16" "1992-04-16" "1992-04-16" "1992-04-16" "1992-04-16"
## [38211] "1992-04-16" "1992-04-16" "1992-04-16" "1992-04-16" "1992-04-16"
## [38216] "1992-04-16" "1992-04-16" "1992-04-16" "1992-04-16" "1992-04-16"
## [38221] "1989-07-13" "1989-07-13" "1989-07-13" "1989-07-13" "1989-07-13"
## [38226] "1989-07-13" "1989-07-13" "1989-07-13" "1989-07-13" "1989-07-13"
## [38231] "1985-07-25" "1985-07-25" "1985-07-25" "1980-05-24" "1980-05-24"
## [38236] "1980-05-24" "1980-05-24" "1980-05-24" "1980-05-24" "1980-05-24"
## [38241] "1980-05-24" "1980-05-24" "1980-05-24" "1980-05-24" "1991-10-12"
## [38246] "1991-10-12" "1991-10-12" "1991-10-12" "1978-01-06" "1978-01-06"
## [38251] "1978-01-06" "1978-01-06" "1978-01-06" "1978-01-06" "1978-01-06"
## [38256] "1978-01-06" "1978-01-06" "1978-01-06" "1978-01-06" "1978-01-06"
## [38261] "1978-01-06" "1978-01-06" "1978-01-06" "1978-01-06" "1978-01-06"
## [38266] "1978-01-06" "1979-03-16" "1979-03-16" "1979-03-16" "1979-03-16"
## [38271] "1971-09-07" "1971-09-07" "1985-04-05" "1985-04-05" "1989-07-15"
## [38276] "1989-07-15" "1989-07-15" "1989-07-15" "1989-07-15" "1989-07-15"
## [38281] "1989-07-15" "1991-05-26" "1991-05-26" "1991-05-26" "1991-05-26"
## [38286] "1991-05-26" "1991-05-26" "1991-05-26" "1991-05-26" "1991-05-26"
## [38291] "1981-09-29" "1981-09-29" "1981-09-29" "1981-09-29" "1981-09-29"
## [38296] "1981-09-29" "1981-09-29" "1981-09-29" "1981-09-29" "1981-09-29"
## [38301] "1981-09-29" "1981-09-29" "1981-09-29" "1981-09-29" "1983-10-11"
## [38306] "1983-10-11" "1983-10-11" "1983-10-11" "1983-10-11" "1971-07-29"
## [38311] "1971-07-29" "1984-12-22" "1984-12-22" "1984-12-22" "1984-12-22"
## [38316] "1984-12-22" "1984-12-22" "1984-12-22" "1984-12-22" "1984-12-22"
## [38321] "1984-12-22" "1984-12-22" "1984-12-22" "1984-12-22" "1984-12-22"
## [38326] "1983-06-17" "1983-06-17" "1983-06-17" "1983-06-17" "1983-06-17"
## [38331] "1983-06-17" "1983-06-17" "1983-06-17" "1983-06-17" "1983-06-17"
## [38336] "1983-06-17" "1982-10-08" "1982-10-08" "1982-10-08" "1982-10-08"
## [38341] "1982-10-08" "1982-10-08" "1982-10-08" "1982-10-08" "1982-10-08"
## [38346] "1982-10-08" "1982-10-08" "1982-10-08" "1982-10-08" "1971-05-11"
## [38351] "1971-05-11" "1971-05-11" "1971-05-11" "1971-05-11" "1971-05-11"
## [38356] "1971-05-11" "1971-05-11" "1971-05-11" "1971-05-11" "1971-05-11"
## [38361] "1971-05-11" "1971-05-11" "1971-05-11" "1971-05-11" "1991-02-26"
## [38366] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26"
## [38371] "1991-02-26" "1991-02-26" "1991-02-26" "1991-02-26" "1989-08-06"
## [38376] "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06" "1989-08-06"
## [38381] "1989-08-06" "1975-01-24" "1975-01-24" "1975-01-24" "1975-01-24"
## [38386] "1975-01-24" "1975-01-24" "1975-01-24" "1975-01-24" "1975-01-24"
## [38391] "1975-01-24" "1975-01-24" "1975-01-24" "1975-01-24" "1975-01-24"
## [38396] "1975-07-17" "1975-07-17" "1975-07-17" "1975-07-17" "1975-07-17"
## [38401] "1975-07-17" "1975-07-17" "1975-07-17" "1975-07-17" "1975-07-17"
## [38406] "1975-07-17" "1975-07-17" "1975-07-17" "1982-01-04" "1982-01-04"
## [38411] "1982-01-04" "1982-01-04" "1982-01-04" "1974-09-29" "1974-09-29"
## [38416] "1974-09-29" "1972-04-05" "1972-04-05" "1972-04-05" "1972-04-05"
## [38421] "1972-04-05" "1972-04-05" "1972-04-05" "1972-04-05" "1972-04-05"
## [38426] "1972-04-05" "1972-04-05" "1971-12-23" "1971-12-23" "1971-12-23"
## [38431] "1971-12-23" "1971-12-23" "1971-12-23" "1971-12-23" "1971-12-23"
## [38436] "1971-12-23" "1971-12-23" "1971-12-23" "1971-12-23" "1971-12-23"
## [38441] "1980-09-04" "1980-09-04" "1980-09-04" "1980-09-04" "1980-09-04"
## [38446] "1979-01-21" "1979-01-21" "1979-01-21" "1979-01-21" "1983-11-26"
## [38451] "1983-11-26" "1983-11-26" "1983-11-26" "1983-11-26" "1983-11-26"
## [38456] "1983-11-26" "1983-11-26" "1983-11-26" "1983-11-26" "1973-12-13"
## [38461] "1973-12-13" "1973-12-13" "1973-12-13" "1973-12-13" "1973-12-13"
## [38466] "1973-12-13" "1973-12-13" "1974-06-11" "1974-06-11" "1974-06-11"
## [38471] "1974-06-11" "1970-09-03" "1970-09-03" "1982-11-01" "1982-11-01"
## [38476] "1976-01-06" "1976-01-06" "1976-08-09" "1976-08-09" "1976-08-09"
## [38481] "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09"
## [38486] "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09"
## [38491] "1976-08-09" "1976-08-09" "1976-08-09" "1976-08-09" "1991-01-07"
## [38496] "1991-01-07" "1991-01-07" "1974-02-06" "1974-02-06" "1974-02-06"
## [38501] "1974-02-06" "1974-02-06" "1974-02-06" "1974-02-06" "1974-02-06"
## [38506] "1974-02-06" "1986-10-02" "1986-10-02" "1986-10-02" "1986-10-02"
## [38511] "1986-10-02" "1986-10-02" "1986-10-02" "1986-10-02" "1988-11-04"
## [38516] "1988-11-04" "1988-11-04" "1988-11-04" "1988-11-04" "1988-11-04"
## [38521] "1988-11-04" "1988-11-04" "1988-11-04" "1988-11-04" "1988-11-04"
## [38526] "1988-11-04" "1988-11-04" "1985-02-08" "1985-02-08" "1985-02-08"
## [38531] "1985-02-08" "1985-02-08" "1985-02-08" "1985-02-08" "1985-02-08"
## [38536] "1985-02-08" "1985-02-08" "1985-02-08" "1985-02-08" "1992-06-05"
## [38541] "1992-06-05" "1992-06-05" "1992-06-05" "1992-06-05" "1992-06-05"
## [38546] "1992-06-05" "1992-06-05" "1992-06-05" "1992-06-05" "1992-07-13"
## [38551] "1992-07-13" "1992-07-13" "1992-07-13" "1992-07-13" "1972-02-20"
## [38556] "1972-02-20" "1972-02-20" "1972-02-20" "1972-02-20" "1972-02-20"
## [38561] "1972-02-20" "1972-02-20" "1972-02-20" "1972-02-20" "1972-02-20"
## [38566] "1974-07-20" "1974-07-20" "1974-07-20" "1974-07-20" "1991-07-18"
## [38571] "1991-07-18" "1991-07-18" "1991-07-18" "1991-07-18" "1991-07-18"
## [38576] "1991-07-18" "1991-07-18" "1991-07-18" "1982-05-17" "1982-05-17"
## [38581] "1982-05-17" "1982-05-17" "1982-05-17" "1982-05-17" "1982-05-17"
## [38586] "1982-05-17" "1982-05-17" "1982-05-17" "1982-05-17" "1982-05-17"
## [38591] "1982-05-17" "1983-11-06" "1983-11-06" "1983-11-06" "1983-11-06"
## [38596] "1983-11-06" "1983-11-06" "1983-11-06" "1983-11-06" "1983-11-06"
## [38601] "1983-11-06" "1972-07-13" "1972-07-13" "1972-07-13" "1972-07-13"
## [38606] "1985-11-13" "1985-11-13" "1985-11-13" "1985-11-13" "1985-11-13"
## [38611] "1985-11-13" "1985-11-13" "1985-11-13" "1985-11-13" "1985-11-13"
## [38616] "1985-11-13" "1989-08-16" "1989-08-16" "1989-08-16" "1989-08-16"
## [38621] "1987-05-12" "1987-05-12" "1987-05-12" "1976-10-26" "1976-10-26"
## [38626] "1976-10-26" "1976-10-26" "1976-10-26" "1976-10-26" "1976-10-26"
## [38631] "1976-10-26" "1976-10-26" "1976-10-26" "1976-10-26" "1983-09-19"
## [38636] "1983-09-19" "1983-09-19" "1983-09-19" "1983-09-19" "1983-09-19"
## [38641] "1983-09-19" "1983-09-19" "1983-09-19" "1978-01-27" "1978-01-27"
## [38646] "1978-01-27" "1978-01-27" "1978-01-27" "1978-01-27" "1978-01-27"
## [38651] "1978-01-27" "1978-01-27" "1978-01-27" "1978-01-27" "1981-02-12"
## [38656] "1981-02-12" "1981-02-12" "1987-04-18" "1987-04-18" "1987-04-18"
## [38661] "1987-04-18" "1987-04-18" "1987-04-18" "1987-04-18" "1987-04-18"
## [38666] "1987-04-18" "1987-04-18" "1971-03-18" "1971-03-18" "1971-03-18"
## [38671] "1971-03-18" "1971-03-18" "1971-03-18" "1971-03-18" "1971-03-18"
## [38676] "1971-03-18" "1971-03-18" "1971-03-18" "1971-03-18" "1971-03-18"
## [38681] "1971-03-18" "1987-12-29" "1987-12-29" "1987-12-29" "1987-12-29"
## [38686] "1987-12-29" "1987-12-29" "1985-10-06" "1985-10-06" "1978-08-06"
## [38691] "1978-08-06" "1978-08-06" "1978-08-06" "1978-08-06" "1978-08-06"
## [38696] "1978-08-06" "1988-06-17" "1988-06-17" "1988-06-17" "1988-06-17"
## [38701] "1988-06-17" "1988-06-17" "1988-06-17" "1988-06-17" "1988-06-17"
## [38706] "1988-06-17" "1983-02-05" "1983-02-05" "1983-02-05" "1983-02-05"
## [38711] "1983-02-05" "1983-02-05" "1983-02-05" "1983-02-05" "1983-02-05"
## [38716] "1992-01-22" "1992-01-22" "1992-01-22" "1992-01-22" "1992-01-22"
## [38721] "1992-01-22" "1992-01-22" "1992-01-22" "1992-01-22" "1992-01-22"
## [38726] "1992-01-22" "1992-01-22" "1992-01-22" "1992-01-22" "1992-01-22"
## [38731] "1992-01-22" "1992-01-22" "1992-01-22" "1992-01-22" "1992-01-22"
## [38736] "1992-01-22" "1982-01-09" "1982-01-09" "1982-01-09" "1971-07-10"
## [38741] "1971-07-10" "1971-07-10" "1971-07-10" "1971-07-10" "1971-07-10"
## [38746] "1971-07-10" "1971-07-10" "1971-07-10" "1971-07-10" "1971-07-10"
## [38751] "1971-07-10" "1971-07-10" "1971-07-10" "1991-09-10" "1991-09-10"
## [38756] "1991-09-10" "1991-09-10" "1991-09-10" "1991-09-10" "1991-09-10"
## [38761] "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17"
## [38766] "1982-09-17" "1982-09-17" "1982-09-17" "1982-09-17" "1972-09-04"
## [38771] "1972-09-04" "1972-09-04" "1972-09-04" "1972-09-04" "1972-09-04"
## [38776] "1972-09-04" "1972-09-04" "1972-09-04" "1979-01-27" "1979-01-27"
## [38781] "1979-01-27" "1979-01-27" "1979-01-27" "1979-01-27" "1979-01-27"
## [38786] "1979-01-27" "1979-01-27" "1979-01-27" "1979-01-27" "1979-01-27"
## [38791] "1979-01-27" "1979-01-27" "1979-01-27" "1979-01-27" "1979-01-27"
## [38796] "1979-01-27" "1979-01-27" "1979-01-27" "1971-05-10" "1971-05-10"
## [38801] "1971-05-10" "1971-05-10" "1971-05-10" "1971-05-10" "1971-05-10"
## [38806] "1971-05-10" "1972-08-21" "1972-08-21" "1972-08-21" "1972-08-21"
## [38811] "1972-08-21" "1972-08-21" "1972-08-21" "1972-08-21" "1972-08-21"
## [38816] "1972-08-21" "1972-08-21" "1972-08-21" "1972-08-21" "1972-08-21"
## [38821] "1972-08-21" "1972-08-21" "1972-08-21" "1972-08-21" "1972-08-21"
## [38826] "1972-08-21" "1972-08-21" "1972-08-21" "1972-08-21" "1972-08-21"
## [38831] "1981-08-18" "1981-08-18" "1981-08-18" "1981-08-18" "1981-08-18"
## [38836] "1989-12-01" "1989-12-01" "1989-12-01" "1989-12-01" "1989-12-01"
## [38841] "1989-12-01" "1987-09-04" "1987-09-04" "1987-09-04" "1987-09-04"
## [38846] "1987-09-04" "1980-05-05" "1980-05-05" "1980-05-05" "1980-05-05"
## [38851] "1980-05-05" "1980-05-05" "1980-05-05" "1980-05-05" "1980-05-05"
## [38856] "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01"
## [38861] "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01" "1971-02-01"
## [38866] "1992-08-08" "1992-08-08" "1992-08-08" "1992-08-08" "1992-08-08"
## [38871] "1992-08-08" "1992-08-08" "1992-08-08" "1992-08-08" "1992-08-08"
## [38876] "1992-08-08" "1992-08-08" "1992-08-08" "1992-08-08" "1972-02-03"
## [38881] "1972-02-03" "1972-02-03" "1972-02-03" "1972-02-03" "1972-02-03"
## [38886] "1972-02-03" "1972-02-03" "1972-02-03" "1972-02-03" "1972-02-03"
## [38891] "1972-02-03" "1972-02-03" "1972-02-03" "1972-02-03" "1972-02-03"
## [38896] "1972-02-03" "1972-02-03" "1980-07-07" "1980-07-07" "1980-07-07"
## [38901] "1980-07-07" "1986-12-05" "1986-12-05" "1986-12-05" "1986-12-05"
## [38906] "1986-12-05" "1986-12-05" "1986-12-05" "1986-12-05" "1986-12-05"
## [38911] "1976-09-18" "1976-09-18" "1976-09-18" "1976-09-18" "1978-12-10"
## [38916] "1978-12-10" "1978-12-10" "1978-12-10" "1978-12-10" "1978-12-10"
## [38921] "1978-12-10" "1978-12-10" "1984-01-24" "1984-01-24" "1984-01-24"
## [38926] "1984-01-24" "1984-01-24" "1984-01-24" "1984-01-24" "1984-01-24"
## [38931] "1984-01-24" "1984-01-24" "1984-01-24" "1980-03-15" "1980-03-15"
## [38936] "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15"
## [38941] "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15"
## [38946] "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15"
## [38951] "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15"
## [38956] "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15"
## [38961] "1980-03-15" "1980-03-15" "1980-03-15" "1980-03-15" "1977-11-23"
## [38966] "1977-11-23" "1977-11-23" "1977-11-23" "1982-07-03" "1982-07-03"
## [38971] "1982-07-03" "1982-07-03" "1982-07-03" "1982-07-03" "1982-07-03"
## [38976] "1982-07-03" "1982-07-03" "1982-07-03" "1970-06-10" "1970-06-10"
## [38981] "1970-06-10" "1970-06-10" "1970-06-10" "1970-06-10" "1970-06-10"
## [38986] "1970-06-10" "1970-06-10" "1970-06-10" "1970-06-10" "1973-10-23"
## [38991] "1973-10-23" "1973-10-23" "1973-10-23" "1973-10-23" "1973-10-23"
## [38996] "1973-10-23" "1973-10-23" "1973-10-23" "1973-10-23" "1973-10-23"
## [39001] "1973-10-23" "1973-10-23" "1973-10-23" "1973-10-23" "1973-10-23"
## [39006] "1973-10-23" "1973-10-23" "1973-10-23" "1984-11-09" "1984-11-09"
## [39011] "1984-11-09" "1984-11-09" "1984-11-09" "1984-11-09" "1992-03-21"
## [39016] "1992-03-21" "1992-03-21" "1992-03-21" "1992-03-21" "1972-02-23"
## [39021] "1972-02-23" "1972-02-23" "1973-11-15" "1973-11-15" "1983-03-29"
## [39026] "1983-03-29" "1983-03-29" "1983-03-29" "1984-11-12" "1984-11-12"
## [39031] "1978-05-04" "1978-05-04" "1978-05-04" "1974-09-08" "1974-09-08"
## [39036] "1974-09-08" "1974-09-08" "1974-09-08" "1974-09-08" "1974-09-08"
## [39041] "1974-09-08" "1974-09-08" "1974-09-08" "1974-09-08" "1986-02-16"
## [39046] "1986-02-16" "1986-02-16" "1986-02-16" "1986-02-16" "1986-02-16"
## [39051] "1986-02-16" "1986-03-12" "1986-03-12" "1986-03-12" "1986-03-12"
## [39056] "1986-03-12" "1986-03-12" "1986-03-12" "1986-03-12" "1986-03-12"
## [39061] "1986-03-12" "1986-03-12" "1986-03-12" "1986-03-12" "1986-03-12"
## [39066] "1986-03-12" "1974-02-12" "1974-02-12" "1974-02-12" "1974-02-12"
## [39071] "1974-02-12" "1974-02-12" "1974-02-12" "1974-02-12" "1974-02-12"
## [39076] "1974-02-12" "1974-02-12" "1974-02-12" "1974-02-12" "1974-02-12"
## [39081] "1974-02-12" "1974-02-12" "1974-02-12" "1974-02-12" "1975-05-08"
## [39086] "1975-05-08" "1975-05-08" "1975-05-08" "1975-05-08" "1975-05-08"
## [39091] "1975-05-08" "1975-05-08" "1975-05-08" "1975-05-08" "1975-05-08"
## [39096] "1975-05-08" "1975-05-08" "1974-06-22" "1974-06-22" "1974-06-22"
## [39101] "1974-06-22" "1974-06-22" "1974-06-22" "1974-06-22" "1974-06-22"
## [39106] "1974-06-22" "1974-06-22" "1974-06-22" "1974-06-22" "1974-06-22"
## [39111] "1976-01-13" "1976-01-13" "1976-01-13" "1976-01-13" "1989-04-14"
## [39116] "1989-04-14" "1989-04-14" "1989-04-14" "1989-04-14" "1989-04-14"
## [39121] "1989-04-14" "1989-04-14" "1989-04-14" "1989-04-14" "1989-04-14"
## [39126] "1984-07-21" "1984-07-21" "1984-07-21" "1979-11-05" "1979-11-05"
## [39131] "1979-11-05" "1979-11-05" "1979-05-01" "1979-05-01" "1979-05-01"
## [39136] "1990-08-26" "1990-08-26" "1990-08-26" "1990-08-26" "1990-08-26"
## [39141] "1990-08-26" "1990-08-26" "1990-08-26" "1990-08-26" "1990-08-26"
## [39146] "1990-08-26" "1990-08-26" "1990-08-26" "1983-03-13" "1983-03-13"
## [39151] "1983-03-13" "1983-03-13" "1983-03-13" "1983-03-13" "1983-03-13"
## [39156] "1983-03-13" "1983-03-13" "1983-03-13" "1970-07-24" "1970-07-24"
## [39161] "1970-07-24" "1970-07-24" "1970-07-24" "1970-07-24" "1970-07-24"
## [39166] "1970-07-24" "1970-07-24" "1970-07-24" "1970-07-24" "1970-07-24"
## [39171] "1976-12-08" "1976-12-08" "1976-12-08" "1976-12-08" "1976-12-08"
## [39176] "1978-07-16" "1978-07-16" "1978-07-16" "1978-07-16" "1978-07-16"
## [39181] "1978-07-16" "1978-07-16" "1978-07-16" "1978-07-16" "1978-07-16"
## [39186] "1979-10-14" "1979-10-14" "1979-10-14" "1979-10-14" "1979-10-14"
## [39191] "1979-10-14" "1979-10-14" "1971-08-08" "1971-08-08" "1970-09-14"
## [39196] "1970-09-14" "1970-09-14" "1970-09-14" "1970-09-14" "1970-09-14"
## [39201] "1970-09-14" "1970-09-14" "1970-09-14" "1970-09-14" "1980-04-19"
## [39206] "1980-04-19" "1980-04-19" "1980-04-19" "1980-04-19" "1980-04-19"
## [39211] "1980-04-19" "1984-12-06" "1984-12-06" "1984-12-06" "1988-02-07"
## [39216] "1988-02-07" "1988-02-07" "1988-02-07" "1978-02-10" "1978-02-10"
## [39221] "1978-02-10" "1978-02-10" "1978-02-10" "1978-02-10" "1978-02-10"
## [39226] "1982-04-20" "1982-04-20" "1982-04-20" "1982-04-20" "1982-04-20"
## [39231] "1982-04-20" "1982-04-20" "1984-05-23" "1984-05-23" "1984-05-23"
## [39236] "1984-05-23" "1984-05-23" "1984-05-23" "1984-05-23" "1984-05-23"
## [39241] "1991-03-12" "1991-03-12" "1991-03-12" "1991-03-12" "1991-03-12"
## [39246] "1991-03-12" "1991-03-12" "1989-09-07" "1989-09-07" "1989-09-07"
## [39251] "1989-09-07" "1989-09-07" "1989-09-07" "1989-09-07" "1989-09-07"
## [39256] "1989-09-07" "1989-09-07" "1989-09-07" "1989-09-07" "1989-09-07"
## [39261] "1989-09-07" "1989-09-07" "1970-09-24" "1970-09-24" "1970-09-24"
## [39266] "1970-09-24" "1970-09-24" "1970-09-24" "1970-09-24" "1970-09-24"
## [39271] "1970-09-24" "1970-09-24" "1970-09-24" "1970-09-24" "1970-09-24"
## [39276] "1979-10-16" "1979-10-16" "1979-10-16" "1978-02-17" "1978-02-17"
## [39281] "1978-02-17" "1978-02-17" "1978-02-17" "1978-02-17" "1987-03-15"
## [39286] "1987-03-15" "1987-03-15" "1987-03-15" "1987-03-15" "1987-03-15"
## [39291] "1987-03-15" "1987-03-15" "1989-02-27" "1989-02-27" "1972-08-09"
## [39296] "1972-08-09" "1972-08-09" "1972-08-09" "1972-08-09" "1972-08-09"
## [39301] "1972-08-09" "1972-08-09" "1979-10-16" "1979-10-16" "1975-05-18"
## [39306] "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18"
## [39311] "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18"
## [39316] "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18"
## [39321] "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18"
## [39326] "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18" "1975-05-18"
## [39331] "1986-12-25" "1986-12-25" "1986-12-25" "1986-12-25" "1986-12-25"
## [39336] "1986-12-25" "1986-12-25" "1986-12-25" "1986-12-25" "1986-12-25"
## [39341] "1986-12-25" "1986-12-25" "1986-12-25" "1986-12-25" "1982-11-06"
## [39346] "1982-11-06" "1982-11-06" "1978-01-11" "1978-01-11" "1978-01-11"
## [39351] "1978-01-11" "1978-01-11" "1978-01-11" "1978-01-11" "1978-01-11"
## [39356] "1978-01-11" "1978-01-11" "1978-01-11" "1978-01-11" "1978-01-11"
## [39361] "1978-01-11" "1978-01-11" "1971-01-23" "1971-01-23" "1971-01-23"
## [39366] "1971-01-23" "1971-01-23" "1971-01-23" "1971-01-23" "1971-01-23"
## [39371] "1971-01-23" "1971-01-23" "1971-01-23" "1971-01-23" "1971-01-23"
## [39376] "1971-01-23" "1971-01-23" "1971-01-23" "1971-01-23" "1971-01-23"
## [39381] "1971-01-23" "1984-01-14" "1984-01-14" "1984-01-14" "1984-01-14"
## [39386] "1984-01-14" "1974-01-24" "1974-01-24" "1974-01-24" "1974-01-24"
## [39391] "1974-01-24" "1974-01-24" "1974-01-24" "1974-01-24" "1974-01-24"
## [39396] "1974-01-24" "1974-01-24" "1974-01-24" "1974-01-24" "1974-01-24"
## [39401] "1974-01-24" "1974-01-24" "1974-01-24" "1974-01-24" "1974-01-24"
## [39406] "1979-07-06" "1979-07-06" "1979-07-06" "1979-07-06" "1979-07-06"
## [39411] "1979-07-06" "1979-07-06" "1979-07-06" "1979-07-06" "1979-07-06"
## [39416] "1988-01-21" "1988-01-21" "1988-01-21" "1988-01-21" "1988-01-21"
## [39421] "1988-01-21" "1988-01-21" "1988-01-21" "1988-01-21" "1988-01-21"
## [39426] "1988-01-21" "1988-01-21" "1988-01-21" "1988-01-21" "1988-01-21"
## [39431] "1988-01-21" "1988-01-21" "1988-01-21" "1988-01-21" "1988-01-21"
## [39436] "1988-01-21" "1988-01-21" "1986-07-03" "1986-07-03" "1986-07-03"
## [39441] "1986-07-03" "1986-07-03" "1986-07-03" "1986-07-03" "1986-07-03"
## [39446] "1992-06-12" "1992-06-12" "1992-06-12" "1973-09-23" "1973-09-23"
## [39451] "1973-09-23" "1973-09-23" "1973-09-23" "1973-09-23" "1973-09-23"
## [39456] "1973-09-23" "1973-09-23" "1973-09-23" "1979-02-18" "1979-02-18"
## [39461] "1979-02-18" "1979-02-18" "1979-02-18" "1979-02-18" "1979-02-18"
## [39466] "1979-02-18" "1979-02-18" "1979-02-18" "1979-02-18" "1979-02-18"
## [39471] "1979-02-18" "1979-02-18" "1979-02-18" "1979-02-18" "1979-02-18"
## [39476] "1979-02-18" "1979-02-18" "1979-02-18" "1979-02-18" "1979-02-18"
## [39481] "1979-02-18" "1979-02-18" "1979-02-18" "1979-02-18" "1979-02-18"
## [39486] "1979-02-18" "1979-02-18" "1979-02-18" "1986-06-13" "1986-06-13"
## [39491] "1986-06-13" "1986-06-13" "1986-06-13" "1986-06-13" "1986-06-13"
## [39496] "1986-06-13" "1986-06-13" "1986-06-13" "1986-06-13" "1986-06-13"
## [39501] "1986-06-13" "1992-01-18" "1992-01-18" "1970-09-26" "1970-09-26"
## [39506] "1970-09-26" "1970-09-26" "1970-09-26" "1970-09-26" "1970-09-26"
## [39511] "1970-09-26" "1970-09-26" "1970-09-26" "1970-09-26" "1970-09-26"
## [39516] "1970-09-26" "1970-09-26" "1970-09-26" "1970-09-26" "1986-09-19"
## [39521] "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19"
## [39526] "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19"
## [39531] "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19" "1973-03-17"
## [39536] "1973-03-17" "1973-03-17" "1973-03-17" "1973-03-17" "1973-03-17"
## [39541] "1973-03-17" "1973-03-17" "1973-03-17" "1973-03-17" "1974-11-27"
## [39546] "1974-11-27" "1974-11-27" "1974-11-27" "1974-11-27" "1974-11-27"
## [39551] "1974-11-27" "1974-11-27" "1974-11-27" "1974-11-27" "1983-11-26"
## [39556] "1983-11-26" "1983-11-26" "1983-11-26" "1983-11-26" "1983-11-26"
## [39561] "1983-11-26" "1983-11-26" "1971-12-18" "1971-12-18" "1971-12-18"
## [39566] "1975-10-10" "1975-10-10" "1975-10-10" "1975-10-10" "1975-10-10"
## [39571] "1975-10-10" "1975-10-10" "1975-10-10" "1975-10-10" "1975-10-10"
## [39576] "1975-10-10" "1975-10-10" "1975-10-10" "1986-02-17" "1986-02-17"
## [39581] "1986-02-17" "1986-02-17" "1986-02-17" "1974-06-20" "1974-06-20"
## [39586] "1974-06-20" "1982-12-19" "1982-12-19" "1980-09-22" "1980-09-22"
## [39591] "1980-09-22" "1980-09-22" "1980-07-03" "1980-07-03" "1980-07-03"
## [39596] "1980-07-03" "1991-11-10" "1991-11-10" "1991-11-10" "1991-11-10"
## [39601] "1991-11-10" "1991-11-10" "1991-11-10" "1991-11-10" "1991-11-10"
## [39606] "1991-11-10" "1991-11-10" "1991-11-10" "1991-11-10" "1991-11-10"
## [39611] "1991-11-10" "1979-02-11" "1979-02-11" "1979-02-11" "1979-02-11"
## [39616] "1979-02-11" "1974-12-25" "1974-12-25" "1974-12-25" "1974-12-25"
## [39621] "1987-12-28" "1987-12-28" "1987-12-28" "1987-12-28" "1987-12-28"
## [39626] "1987-12-28" "1987-12-28" "1987-12-28" "1987-12-28" "1986-01-20"
## [39631] "1986-01-20" "1986-01-20" "1986-01-20" "1986-01-20" "1986-01-20"
## [39636] "1986-01-20" "1986-01-20" "1986-01-20" "1986-01-20" "1971-09-21"
## [39641] "1971-09-21" "1971-09-21" "1971-09-21" "1971-09-21" "1971-09-21"
## [39646] "1971-09-21" "1971-09-21" "1971-09-21" "1971-09-21" "1971-09-21"
## [39651] "1977-11-09" "1977-11-09" "1977-11-09" "1977-11-09" "1977-11-09"
## [39656] "1977-11-09" "1977-11-09" "1972-06-06" "1972-06-06" "1972-06-06"
## [39661] "1972-06-06" "1972-06-06" "1972-06-06" "1972-06-06" "1972-06-06"
## [39666] "1972-06-06" "1972-06-06" "1972-06-06" "1972-06-06" "1972-06-06"
## [39671] "1972-06-06" "1972-06-06" "1972-06-06" "1984-01-22" "1984-01-22"
## [39676] "1984-01-22" "1982-11-19" "1982-11-19" "1982-11-19" "1982-11-19"
## [39681] "1985-03-05" "1985-03-05" "1985-03-05" "1985-03-05" "1985-03-05"
## [39686] "1985-03-05" "1985-03-05" "1985-03-05" "1985-03-05" "1985-03-05"
## [39691] "1985-03-05" "1988-01-06" "1988-01-06" "1988-01-06" "1988-01-06"
## [39696] "1988-01-06" "1988-01-06" "1988-01-06" "1988-01-06" "1980-10-01"
## [39701] "1980-10-01" "1980-10-01" "1980-10-01" "1980-10-01" "1980-10-01"
## [39706] "1980-10-01" "1980-10-01" "1981-03-29" "1981-03-29" "1981-03-29"
## [39711] "1981-03-29" "1981-03-29" "1981-03-29" "1981-03-29" "1981-03-29"
## [39716] "1981-03-29" "1981-03-29" "1981-03-29" "1981-03-29" "1981-03-29"
## [39721] "1981-03-29" "1981-03-29" "1981-03-29" "1981-03-29" "1971-11-06"
## [39726] "1971-11-06" "1971-11-06" "1971-11-06" "1971-11-06" "1971-11-06"
## [39731] "1971-11-06" "1971-11-06" "1972-09-05" "1972-09-05" "1972-09-05"
## [39736] "1972-09-05" "1972-09-05" "1972-09-05" "1972-09-05" "1972-09-05"
## [39741] "1972-09-05" "1972-09-05" "1989-06-05" "1989-06-05" "1989-06-05"
## [39746] "1989-06-05" "1989-06-05" "1989-06-05" "1989-06-05" "1987-03-15"
## [39751] "1987-03-15" "1981-08-07" "1981-08-07" "1981-08-07" "1989-10-13"
## [39756] "1989-10-13" "1989-10-13" "1989-10-13" "1989-10-13" "1990-02-13"
## [39761] "1990-02-13" "1990-02-13" "1990-02-13" "1990-02-13" "1990-02-13"
## [39766] "1990-02-13" "1971-07-25" "1971-07-25" "1971-07-25" "1971-07-25"
## [39771] "1971-07-25" "1988-02-17" "1988-02-17" "1988-02-17" "1988-02-17"
## [39776] "1988-02-17" "1988-02-17" "1988-02-17" "1971-11-19" "1971-11-19"
## [39781] "1986-03-26" "1986-03-26" "1986-03-26" "1986-03-26" "1986-03-26"
## [39786] "1986-03-26" "1986-03-26" "1986-03-26" "1987-01-21" "1987-01-21"
## [39791] "1987-01-21" "1987-01-21" "1987-01-21" "1984-09-08" "1984-09-08"
## [39796] "1984-02-07" "1984-02-07" "1984-02-07" "1984-02-07" "1984-02-07"
## [39801] "1984-02-07" "1989-01-12" "1989-01-12" "1989-01-12" "1989-01-12"
## [39806] "1989-01-12" "1989-01-12" "1989-01-12" "1989-01-12" "1989-01-12"
## [39811] "1989-01-12" "1989-01-12" "1989-01-12" "1989-01-12" "1989-01-12"
## [39816] "1989-01-12" "1992-12-29" "1992-12-29" "1992-12-29" "1992-12-29"
## [39821] "1992-12-29" "1992-12-29" "1986-06-15" "1986-06-15" "1986-06-15"
## [39826] "1986-06-15" "1986-06-15" "1986-06-15" "1986-06-15" "1986-06-15"
## [39831] "1986-06-15" "1986-06-15" "1986-06-15" "1986-06-15" "1991-02-23"
## [39836] "1991-02-23" "1991-02-23" "1975-06-22" "1975-06-22" "1975-06-22"
## [39841] "1975-06-22" "1975-06-22" "1982-07-19" "1982-07-19" "1982-07-19"
## [39846] "1982-07-19" "1982-07-19" "1982-07-19" "1982-07-19" "1982-07-19"
## [39851] "1982-07-19" "1982-07-19" "1982-07-19" "1982-07-19" "1982-07-19"
## [39856] "1982-07-19" "1982-07-19" "1987-11-23" "1987-11-23" "1987-11-23"
## [39861] "1987-11-23" "1987-11-23" "1987-11-23" "1987-11-23" "1987-11-23"
## [39866] "1987-11-23" "1987-11-23" "1987-11-23" "1987-11-23" "1987-11-23"
## [39871] "1987-11-23" "1987-11-23" "1987-11-23" "1986-05-16" "1986-05-16"
## [39876] "1986-05-16" "1986-05-16" "1986-05-16" "1986-05-16" "1983-08-09"
## [39881] "1983-08-09" "1983-08-09" "1983-08-09" "1983-08-09" "1983-08-09"
## [39886] "1983-08-09" "1983-08-09" "1983-08-09" "1983-08-09" "1983-08-09"
## [39891] "1981-07-07" "1981-07-07" "1981-07-07" "1981-07-07" "1981-07-07"
## [39896] "1981-07-07" "1975-07-09" "1975-07-09" "1990-08-15" "1990-08-15"
## [39901] "1990-08-15" "1990-08-15" "1978-06-12" "1978-06-12" "1981-03-12"
## [39906] "1981-03-12" "1981-03-12" "1981-03-12" "1981-03-12" "1981-03-12"
## [39911] "1981-03-12" "1973-09-23" "1973-09-23" "1973-09-23" "1973-09-23"
## [39916] "1973-09-23" "1973-09-23" "1973-09-23" "1973-09-23" "1973-09-23"
## [39921] "1973-09-23" "1983-04-07" "1983-04-07" "1983-04-07" "1983-04-07"
## [39926] "1991-02-24" "1991-02-24" "1991-02-24" "1991-02-24" "1991-02-24"
## [39931] "1991-02-24" "1991-02-24" "1991-02-24" "1991-02-24" "1991-02-24"
## [39936] "1991-02-24" "1991-02-24" "1991-02-24" "1991-02-24" "1981-10-01"
## [39941] "1981-10-01" "1989-01-11" "1989-01-11" "1989-01-11" "1989-01-11"
## [39946] "1989-01-11" "1989-01-11" "1989-01-11" "1989-01-11" "1989-01-11"
## [39951] "1989-01-11" "1989-01-11" "1989-01-11" "1989-01-11" "1989-01-11"
## [39956] "1989-01-11" "1989-01-11" "1989-01-11" "1989-01-11" "1989-01-11"
## [39961] "1989-01-11" "1989-01-11" "1989-01-11" "1973-02-01" "1973-02-01"
## [39966] "1973-02-01" "1974-05-25" "1974-05-25" "1974-05-25" "1974-05-25"
## [39971] "1972-04-19" "1972-04-19" "1972-04-19" "1981-05-07" "1981-05-07"
## [39976] "1981-05-07" "1981-05-07" "1981-05-07" "1981-05-07" "1981-05-07"
## [39981] "1992-10-23" "1992-10-23" "1992-10-23" "1992-10-23" "1992-10-23"
## [39986] "1992-10-23" "1992-10-23" "1992-10-23" "1992-10-23" "1992-10-23"
## [39991] "1992-04-08" "1992-04-08" "1992-04-08" "1992-04-08" "1992-04-08"
## [39996] "1986-02-18" "1986-02-18" "1986-02-18" "1986-02-18" "1977-11-29"
## [40001] "1977-11-29" "1977-11-29" "1977-11-29" "1977-11-29" "1977-11-29"
## [40006] "1984-01-02" "1984-01-02" "1984-01-02" "1970-05-16" "1970-05-16"
## [40011] "1970-05-16" "1970-05-16" "1970-05-16" "1970-05-16" "1970-05-16"
## [40016] "1970-05-16" "1970-05-16" "1970-05-16" "1970-05-16" "1970-05-16"
## [40021] "1970-05-16" "1970-05-16" "1970-05-16" "1970-05-16" "1990-04-27"
## [40026] "1990-04-27" "1989-10-09" "1989-10-09" "1989-10-09" "1989-10-09"
## [40031] "1989-10-09" "1989-10-09" "1989-10-09" "1989-10-09" "1989-10-09"
## [40036] "1989-10-09" "1989-10-09" "1973-04-02" "1973-04-02" "1973-04-02"
## [40041] "1973-04-02" "1973-04-02" "1973-04-02" "1973-04-02" "1977-07-21"
## [40046] "1977-07-21" "1977-07-21" "1977-07-21" "1977-07-21" "1977-07-21"
## [40051] "1977-07-21" "1977-07-21" "1977-07-21" "1977-07-21" "1977-07-21"
## [40056] "1977-07-21" "1977-07-21" "1974-08-05" "1974-08-05" "1974-08-05"
## [40061] "1974-08-05" "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08"
## [40066] "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08"
## [40071] "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08"
## [40076] "1987-09-08" "1970-03-14" "1970-03-14" "1970-03-14" "1970-03-14"
## [40081] "1970-03-14" "1970-03-14" "1982-08-01" "1982-08-01" "1982-08-01"
## [40086] "1982-08-01" "1982-08-01" "1982-08-01" "1982-08-01" "1982-08-01"
## [40091] "1982-08-01" "1982-08-01" "1982-08-01" "1973-06-28" "1973-06-28"
## [40096] "1973-06-28" "1973-06-28" "1973-06-28" "1973-04-28" "1973-04-28"
## [40101] "1973-04-28" "1973-04-28" "1973-04-28" "1978-01-28" "1978-01-28"
## [40106] "1978-01-28" "1978-01-28" "1978-01-28" "1978-01-28" "1978-01-28"
## [40111] "1975-12-12" "1975-12-12" "1975-12-12" "1992-11-26" "1992-11-26"
## [40116] "1992-11-26" "1992-11-26" "1992-11-26" "1992-11-26" "1992-11-26"
## [40121] "1992-11-26" "1992-11-26" "1992-11-26" "1992-11-26" "1992-11-26"
## [40126] "1992-11-26" "1992-11-26" "1992-11-26" "1992-11-26" "1992-11-26"
## [40131] "1992-11-26" "1992-11-26" "1992-11-26" "1973-03-14" "1973-03-14"
## [40136] "1973-03-14" "1973-03-14" "1973-03-14" "1973-03-14" "1973-03-14"
## [40141] "1981-01-28" "1981-01-28" "1981-01-28" "1989-02-22" "1989-02-22"
## [40146] "1989-02-22" "1984-05-06" "1984-05-06" "1984-05-06" "1984-05-06"
## [40151] "1979-06-17" "1979-06-17" "1979-06-17" "1991-05-24" "1991-05-24"
## [40156] "1991-05-24" "1991-05-24" "1991-05-24" "1991-05-24" "1991-05-24"
## [40161] "1991-05-24" "1991-05-24" "1991-05-24" "1991-05-24" "1991-05-24"
## [40166] "1991-05-24" "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19"
## [40171] "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19"
## [40176] "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19"
## [40181] "1986-09-19" "1986-09-19" "1986-09-19" "1986-09-19" "1981-09-23"
## [40186] "1981-09-23" "1981-09-23" "1981-09-23" "1981-09-23" "1980-07-21"
## [40191] "1980-07-21" "1980-07-21" "1980-07-21" "1980-07-21" "1977-03-10"
## [40196] "1977-03-10" "1973-09-22" "1973-09-22" "1973-09-22" "1973-09-22"
## [40201] "1973-09-22" "1973-09-22" "1973-09-22" "1973-09-22" "1973-09-22"
## [40206] "1973-09-22" "1973-09-22" "1973-09-22" "1973-09-22" "1973-09-22"
## [40211] "1973-09-22" "1973-09-22" "1973-09-22" "1973-09-22" "1973-09-22"
## [40216] "1973-09-22" "1973-09-22" "1973-09-22" "1973-09-22" "1972-12-01"
## [40221] "1972-12-01" "1972-12-01" "1972-12-01" "1972-12-01" "1972-12-01"
## [40226] "1972-12-01" "1972-12-01" "1972-12-01" "1980-06-19" "1980-06-19"
## [40231] "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19"
## [40236] "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19"
## [40241] "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19"
## [40246] "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19"
## [40251] "1980-06-19" "1980-06-19" "1980-06-19" "1980-06-19" "1981-11-17"
## [40256] "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17" "1981-11-17"
## [40261] "1983-04-07" "1983-04-07" "1983-04-07" "1983-04-07" "1983-04-07"
## [40266] "1983-04-07" "1983-04-07" "1983-04-07" "1983-04-07" "1990-12-10"
## [40271] "1990-12-10" "1990-12-10" "1990-12-10" "1990-12-10" "1990-12-10"
## [40276] "1990-12-10" "1990-12-10" "1990-12-10" "1990-12-10" "1973-12-03"
## [40281] "1973-12-03" "1973-12-03" "1972-02-24" "1972-02-24" "1972-02-24"
## [40286] "1972-02-24" "1972-02-24" "1972-02-24" "1985-11-29" "1985-11-29"
## [40291] "1985-11-29" "1985-11-29" "1985-11-29" "1985-11-29" "1985-11-29"
## [40296] "1985-11-29" "1985-11-29" "1971-06-15" "1971-06-15" "1971-06-15"
## [40301] "1979-05-19" "1979-05-19" "1979-05-19" "1979-05-19" "1979-05-19"
## [40306] "1979-05-19" "1979-05-19" "1979-05-19" "1979-05-19" "1979-05-19"
## [40311] "1979-05-19" "1975-12-05" "1975-12-05" "1975-12-05" "1975-03-04"
## [40316] "1975-03-04" "1975-03-04" "1975-03-04" "1975-03-04" "1975-03-04"
## [40321] "1975-03-04" "1975-03-04" "1975-03-04" "1975-03-04" "1975-03-04"
## [40326] "1975-03-04" "1975-03-04" "1975-03-04" "1975-03-04" "1975-03-04"
## [40331] "1975-03-04" "1975-03-04" "1975-03-04" "1975-03-04" "1975-03-04"
## [40336] "1975-03-04" "1975-03-04" "1971-06-06" "1971-06-06" "1971-06-06"
## [40341] "1971-06-06" "1971-06-06" "1971-06-06" "1971-06-06" "1971-06-06"
## [40346] "1983-03-06" "1983-03-06" "1983-03-06" "1983-03-06" "1983-03-06"
## [40351] "1983-03-06" "1983-03-06" "1983-03-09" "1983-03-09" "1983-03-09"
## [40356] "1983-03-09" "1983-03-09" "1981-05-22" "1981-05-22" "1981-05-22"
## [40361] "1981-05-22" "1981-05-22" "1981-05-22" "1981-05-22" "1981-05-22"
## [40366] "1981-05-22" "1981-05-22" "1981-05-22" "1981-05-22" "1981-05-22"
## [40371] "1981-05-22" "1981-05-22" "1981-05-22" "1981-05-22" "1981-05-22"
## [40376] "1981-05-22" "1981-05-22" "1981-05-22" "1981-05-22" "1981-05-22"
## [40381] "1981-05-22" "1981-05-22" "1981-05-22" "1981-05-22" "1981-05-22"
## [40386] "1981-05-22" "1981-11-08" "1981-11-08" "1981-11-08" "1981-11-08"
## [40391] "1981-11-08" "1981-11-08" "1981-11-08" "1981-11-08" "1981-11-08"
## [40396] "1981-11-08" "1981-11-08" "1981-11-08" "1981-11-08" "1980-06-12"
## [40401] "1980-06-12" "1980-06-12" "1980-06-12" "1980-06-12" "1980-06-12"
## [40406] "1980-06-12" "1980-06-12" "1980-06-12" "1980-06-12" "1980-06-12"
## [40411] "1980-06-12" "1975-06-06" "1975-06-06" "1975-06-06" "1979-01-13"
## [40416] "1979-01-13" "1979-01-13" "1979-01-13" "1979-01-13" "1979-01-13"
## [40421] "1979-01-13" "1979-01-13" "1982-07-16" "1982-07-16" "1982-07-16"
## [40426] "1982-07-16" "1982-07-16" "1982-07-16" "1982-07-16" "1982-07-16"
## [40431] "1982-07-16" "1982-07-16" "1982-07-16" "1982-07-16" "1982-07-16"
## [40436] "1982-07-16" "1982-07-16" "1982-07-16" "1982-07-16" "1982-07-16"
## [40441] "1982-07-16" "1984-05-08" "1984-05-08" "1984-05-08" "1984-05-08"
## [40446] "1984-05-08" "1984-05-08" "1984-05-08" "1984-05-08" "1984-05-08"
## [40451] "1984-05-08" "1984-05-08" "1984-05-08" "1982-05-26" "1982-05-26"
## [40456] "1982-05-26" "1982-05-26" "1982-05-26" "1982-05-26" "1982-05-26"
## [40461] "1982-05-26" "1982-05-26" "1982-05-26" "1982-05-26" "1982-05-26"
## [40466] "1982-05-26" "1982-05-26" "1976-10-14" "1976-10-14" "1976-10-14"
## [40471] "1976-10-14" "1976-10-14" "1976-10-14" "1976-10-14" "1976-10-14"
## [40476] "1978-08-10" "1978-08-10" "1978-08-10" "1978-08-10" "1978-08-10"
## [40481] "1984-02-27" "1984-02-27" "1984-02-27" "1991-11-23" "1991-11-23"
## [40486] "1991-11-23" "1991-11-23" "1991-11-23" "1991-11-23" "1991-11-23"
## [40491] "1991-11-23" "1991-11-23" "1974-02-10" "1974-02-10" "1974-02-10"
## [40496] "1974-02-10" "1974-02-10" "1974-02-10" "1974-02-10" "1974-02-10"
## [40501] "1974-02-10" "1974-02-10" "1974-02-10" "1974-02-10" "1974-02-10"
## [40506] "1976-04-14" "1976-04-14" "1976-04-14" "1976-04-14" "1976-04-14"
## [40511] "1972-08-20" "1972-08-20" "1972-08-20" "1972-08-20" "1972-08-20"
## [40516] "1972-08-20" "1972-08-20" "1972-08-20" "1972-08-20" "1972-08-20"
## [40521] "1972-08-20" "1972-08-20" "1990-02-15" "1990-02-15" "1990-02-15"
## [40526] "1990-02-15" "1990-02-15" "1990-02-15" "1990-02-15" "1990-02-15"
## [40531] "1971-03-22" "1971-03-22" "1971-03-22" "1971-03-22" "1970-08-06"
## [40536] "1970-08-06" "1970-08-06" "1970-08-06" "1970-08-06" "1970-08-06"
## [40541] "1972-12-15" "1972-12-15" "1972-12-15" "1972-12-15" "1972-12-15"
## [40546] "1972-12-15" "1972-12-15" "1972-12-15" "1972-12-15" "1972-12-15"
## [40551] "1972-12-15" "1972-07-24" "1972-07-24" "1972-07-24" "1972-07-24"
## [40556] "1972-07-24" "1972-07-24" "1972-07-24" "1972-07-24" "1972-07-24"
## [40561] "1972-07-24" "1972-07-24" "1972-07-24" "1972-07-24" "1972-07-24"
## [40566] "1972-07-24" "1982-05-05" "1982-05-05" "1982-05-05" "1982-05-05"
## [40571] "1982-05-05" "1973-08-11" "1973-08-11" "1973-08-11" "1970-09-08"
## [40576] "1970-09-08" "1970-09-08" "1970-09-08" "1970-09-08" "1970-09-08"
## [40581] "1970-09-08" "1970-09-08" "1970-09-08" "1970-09-08" "1986-10-28"
## [40586] "1986-10-28" "1986-10-28" "1986-10-28" "1986-10-28" "1986-10-28"
## [40591] "1986-10-28" "1986-10-28" "1986-10-28" "1986-10-28" "1986-10-28"
## [40596] "1986-10-28" "1986-10-28" "1986-10-28" "1986-10-28" "1986-10-28"
## [40601] "1986-10-28" "1977-12-26" "1977-12-26" "1977-12-26" "1977-12-26"
## [40606] "1977-12-26" "1977-12-26" "1977-12-26" "1990-02-13" "1990-02-13"
## [40611] "1990-02-13" "1990-02-13" "1990-02-13" "1990-02-13" "1990-02-13"
## [40616] "1990-02-13" "1990-02-13" "1990-02-13" "1990-02-13" "1990-02-13"
## [40621] "1990-02-13" "1990-02-13" "1976-07-20" "1976-07-20" "1976-07-20"
## [40626] "1976-07-20" "1979-03-06" "1979-03-06" "1979-03-06" "1979-03-06"
## [40631] "1979-03-06" "1979-03-06" "1979-03-06" "1979-03-06" "1979-03-06"
## [40636] "1979-03-06" "1979-03-06" "1979-03-06" "1979-03-06" "1979-03-06"
## [40641] "1979-03-06" "1979-03-06" "1979-03-06" "1979-03-06" "1979-03-06"
## [40646] "1979-03-06" "1979-11-14" "1979-11-14" "1979-11-14" "1979-11-14"
## [40651] "1979-11-14" "1979-11-14" "1979-11-14" "1979-11-14" "1979-11-14"
## [40656] "1979-11-14" "1979-11-14" "1979-11-14" "1979-11-14" "1979-11-14"
## [40661] "1991-02-21" "1991-02-21" "1991-02-21" "1991-02-21" "1991-02-21"
## [40666] "1991-02-21" "1991-02-21" "1991-02-21" "1991-02-21" "1991-02-21"
## [40671] "1991-02-21" "1986-09-12" "1986-09-12" "1986-09-12" "1986-09-12"
## [40676] "1986-09-12" "1986-09-12" "1986-09-12" "1986-09-12" "1986-09-12"
## [40681] "1986-09-12" "1986-09-12" "1986-09-12" "1986-09-12" "1986-09-12"
## [40686] "1986-09-12" "1986-09-12" "1986-09-12" "1985-12-02" "1985-12-02"
## [40691] "1985-12-02" "1992-12-19" "1992-12-19" "1992-12-19" "1992-12-19"
## [40696] "1992-12-19" "1992-12-19" "1992-12-19" "1992-12-19" "1981-09-18"
## [40701] "1981-09-18" "1981-09-18" "1981-09-18" "1981-09-18" "1981-09-18"
## [40706] "1981-09-18" "1981-09-18" "1974-06-03" "1974-06-03" "1974-06-03"
## [40711] "1974-06-03" "1974-06-03" "1974-06-03" "1974-06-03" "1974-06-03"
## [40716] "1974-06-03" "1974-06-03" "1976-10-07" "1976-10-07" "1976-10-07"
## [40721] "1976-10-07" "1976-10-07" "1976-10-07" "1986-06-17" "1986-06-17"
## [40726] "1986-06-17" "1986-06-17" "1986-06-17" "1986-06-17" "1986-06-17"
## [40731] "1986-06-17" "1986-06-17" "1986-06-17" "1986-06-17" "1986-06-17"
## [40736] "1986-06-17" "1989-02-21" "1989-02-21" "1989-02-21" "1989-02-21"
## [40741] "1989-02-21" "1989-02-21" "1989-02-21" "1989-02-21" "1989-02-21"
## [40746] "1989-02-21" "1989-02-21" "1989-02-21" "1989-02-21" "1989-02-21"
## [40751] "1989-02-21" "1989-02-21" "1989-02-21" "1989-02-21" "1989-02-21"
## [40756] "1989-02-21" "1989-02-21" "1987-04-03" "1987-04-03" "1987-04-03"
## [40761] "1987-04-03" "1987-04-03" "1987-04-03" "1987-04-03" "1977-05-26"
## [40766] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [40771] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [40776] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [40781] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [40786] "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26" "1977-05-26"
## [40791] "1977-05-26" "1974-09-01" "1974-09-01" "1974-09-01" "1973-12-23"
## [40796] "1973-12-23" "1973-12-23" "1973-12-23" "1973-12-23" "1973-12-23"
## [40801] "1973-12-23" "1973-12-23" "1973-12-23" "1973-12-23" "1973-12-23"
## [40806] "1973-12-23" "1973-12-23" "1973-12-23" "1973-12-23" "1976-11-13"
## [40811] "1976-11-13" "1976-11-13" "1970-11-29" "1970-11-29" "1970-11-29"
## [40816] "1970-11-29" "1970-11-29" "1970-11-29" "1985-06-23" "1985-06-23"
## [40821] "1985-06-23" "1985-06-23" "1985-06-23" "1985-06-23" "1985-06-23"
## [40826] "1985-06-23" "1985-06-23" "1985-06-23" "1985-06-23" "1985-06-23"
## [40831] "1985-06-23" "1971-08-24" "1971-08-24" "1971-08-24" "1990-07-22"
## [40836] "1990-07-22" "1990-07-22" "1990-07-22" "1973-06-01" "1973-06-01"
## [40841] "1973-06-01" "1973-06-01" "1973-06-01" "1973-06-01" "1973-06-01"
## [40846] "1973-06-01" "1973-06-01" "1973-06-01" "1973-06-01" "1973-06-01"
## [40851] "1973-06-01" "1973-06-01" "1973-06-01" "1973-06-01" "1973-06-01"
## [40856] "1973-06-01" "1973-06-01" "1975-08-21" "1975-08-21" "1975-08-21"
## [40861] "1975-08-21" "1975-08-21" "1975-08-21" "1975-08-21" "1975-08-21"
## [40866] "1975-08-21" "1975-08-21" "1975-08-21" "1975-08-21" "1975-08-21"
## [40871] "1975-08-21" "1975-08-21" "1975-08-21" "1975-08-21" "1975-08-21"
## [40876] "1975-08-21" "1975-08-21" "1970-11-19" "1970-11-19" "1970-11-19"
## [40881] "1970-11-19" "1970-11-19" "1970-11-19" "1970-11-19" "1970-11-19"
## [40886] "1970-11-19" "1970-11-19" "1970-11-19" "1970-11-19" "1989-12-21"
## [40891] "1989-12-21" "1989-12-21" "1989-12-21" "1989-12-21" "1989-12-21"
## [40896] "1989-12-21" "1989-12-21" "1989-12-21" "1974-01-11" "1974-01-11"
## [40901] "1974-01-11" "1974-01-11" "1974-01-11" "1974-01-11" "1974-01-11"
## [40906] "1974-01-11" "1974-01-11" "1974-01-11" "1974-01-11" "1977-05-23"
## [40911] "1977-05-23" "1977-05-23" "1977-05-23" "1977-05-23" "1977-05-23"
## [40916] "1977-05-23" "1977-05-23" "1977-05-23" "1977-05-23" "1977-05-23"
## [40921] "1977-05-23" "1977-05-23" "1977-05-23" "1977-05-23" "1978-11-22"
## [40926] "1978-11-22" "1978-11-22" "1978-11-22" "1978-11-22" "1978-11-22"
## [40931] "1978-11-22" "1988-12-21" "1988-12-21" "1988-12-21" "1988-12-21"
## [40936] "1988-12-21" "1988-12-21" "1988-12-21" "1988-12-21" "1988-12-21"
## [40941] "1988-12-21" "1988-12-21" "1988-12-21" "1988-12-21" "1987-02-10"
## [40946] "1987-02-10" "1987-02-10" "1987-02-10" "1987-02-10" "1987-02-10"
## [40951] "1987-02-10" "1987-02-10" "1987-02-10" "1987-02-10" "1987-02-10"
## [40956] "1987-02-10" "1987-02-10" "1971-12-26" "1971-12-26" "1971-12-26"
## [40961] "1971-12-26" "1971-12-26" "1971-12-26" "1971-12-26" "1971-12-26"
## [40966] "1971-12-26" "1971-12-26" "1971-12-26" "1971-12-26" "1971-12-26"
## [40971] "1978-08-11" "1978-08-11" "1978-08-11" "1978-08-11" "1978-08-11"
## [40976] "1978-08-11" "1978-08-11" "1978-08-11" "1979-06-03" "1979-06-03"
## [40981] "1979-06-03" "1979-06-03" "1979-06-03" "1979-06-03" "1979-06-03"
## [40986] "1979-06-03" "1985-09-20" "1985-09-20" "1985-09-20" "1985-09-20"
## [40991] "1985-09-20" "1985-09-20" "1985-09-20" "1985-09-20" "1985-09-20"
## [40996] "1985-09-20" "1983-07-23" "1983-07-23" "1983-07-23" "1983-07-23"
## [41001] "1983-07-23" "1983-07-23" "1983-07-23" "1983-07-23" "1983-07-23"
## [41006] "1983-07-23" "1983-07-23" "1983-07-23" "1983-07-23" "1971-11-11"
## [41011] "1971-11-11" "1971-11-11" "1971-11-11" "1971-11-11" "1971-11-11"
## [41016] "1971-11-11" "1971-11-11" "1971-11-11" "1971-11-11" "1971-11-11"
## [41021] "1979-06-18" "1979-06-18" "1979-06-18" "1979-06-18" "1979-06-18"
## [41026] "1979-06-18" "1979-06-18" "1979-06-18" "1979-06-18" "1979-06-18"
## [41031] "1976-12-10" "1976-12-10" "1976-12-10" "1976-12-10" "1976-12-10"
## [41036] "1976-12-10" "1976-12-10" "1976-12-10" "1976-12-10" "1976-12-10"
## [41041] "1976-12-10" "1976-12-10" "1976-12-10" "1976-12-10" "1980-05-16"
## [41046] "1980-05-16" "1980-05-16" "1980-05-16" "1980-05-16" "1980-05-16"
## [41051] "1980-05-16" "1980-05-16" "1980-05-16" "1980-05-16" "1971-11-10"
## [41056] "1971-11-10" "1971-11-10" "1971-11-10" "1972-12-16" "1972-12-16"
## [41061] "1972-12-16" "1972-12-16" "1972-12-16" "1972-12-16" "1972-12-16"
## [41066] "1972-12-16" "1972-12-16" "1972-12-16" "1972-12-16" "1972-12-16"
## [41071] "1972-12-16" "1972-12-16" "1972-12-16" "1972-12-16" "1972-12-16"
## [41076] "1990-07-06" "1990-07-06" "1990-07-06" "1990-07-06" "1990-07-06"
## [41081] "1990-07-06" "1990-07-06" "1990-07-06" "1990-07-06" "1973-10-14"
## [41086] "1973-10-14" "1973-10-14" "1973-10-14" "1973-10-14" "1973-10-14"
## [41091] "1973-10-14" "1973-10-14" "1973-10-14" "1973-10-14" "1973-10-14"
## [41096] "1985-11-11" "1985-11-11" "1985-11-11" "1985-11-11" "1985-11-11"
## [41101] "1985-11-11" "1985-11-11" "1985-11-11" "1991-02-10" "1991-02-10"
## [41106] "1991-02-10" "1991-02-10" "1991-02-10" "1991-02-10" "1991-02-10"
## [41111] "1991-02-10" "1991-02-10" "1991-02-10" "1991-02-10" "1991-02-10"
## [41116] "1991-02-10" "1991-02-10" "1991-02-10" "1991-02-10" "1991-02-10"
## [41121] "1991-02-10" "1991-02-10" "1981-05-19" "1981-05-19" "1981-05-19"
## [41126] "1981-05-19" "1981-05-19" "1981-05-19" "1981-05-19" "1981-05-19"
## [41131] "1981-05-19" "1981-05-19" "1987-04-14" "1987-04-14" "1987-04-14"
## [41136] "1987-04-14" "1987-04-14" "1987-04-14" "1987-04-14" "1987-04-14"
## [41141] "1987-04-14" "1987-04-14" "1987-04-14" "1987-04-14" "1987-04-14"
## [41146] "1987-04-14" "1987-04-14" "1970-04-26" "1970-04-26" "1970-04-26"
## [41151] "1970-04-26" "1970-04-26" "1970-04-26" "1970-04-26" "1975-02-12"
## [41156] "1975-02-12" "1975-02-12" "1975-02-12" "1975-02-12" "1975-02-12"
## [41161] "1975-02-12" "1975-02-12" "1975-02-12" "1975-02-12" "1975-02-12"
## [41166] "1975-02-12" "1976-08-12" "1976-08-12" "1976-08-12" "1976-08-12"
## [41171] "1976-08-12" "1976-08-12" "1976-08-12" "1976-08-12" "1987-12-07"
## [41176] "1987-12-07" "1987-12-07" "1983-04-10" "1983-04-10" "1983-04-10"
## [41181] "1983-04-10" "1983-04-10" "1983-04-10" "1983-04-10" "1983-04-10"
## [41186] "1983-04-10" "1983-04-10" "1983-04-10" "1983-04-10" "1983-04-10"
## [41191] "1983-04-10" "1983-04-10" "1983-04-10" "1983-04-10" "1983-04-10"
## [41196] "1983-04-10" "1983-04-10" "1983-04-10" "1980-03-20" "1980-03-20"
## [41201] "1980-03-20" "1980-03-20" "1980-03-20" "1980-03-20" "1980-03-20"
## [41206] "1980-03-20" "1980-03-20" "1980-03-20" "1980-03-20" "1980-03-20"
## [41211] "1980-03-20" "1980-03-20" "1980-03-20" "1980-03-20" "1979-08-19"
## [41216] "1979-08-19" "1979-08-19" "1979-08-19" "1979-08-19" "1979-08-19"
## [41221] "1979-08-19" "1979-08-19" "1979-08-19" "1979-08-19" "1979-08-19"
## [41226] "1979-08-19" "1979-08-19" "1979-08-19" "1979-08-19" "1985-11-29"
## [41231] "1985-11-29" "1970-07-26" "1970-07-26" "1970-07-26" "1970-07-26"
## [41236] "1970-07-26" "1970-07-26" "1970-07-26" "1970-07-26" "1970-07-26"
## [41241] "1970-07-26" "1970-07-26" "1970-07-26" "1976-09-20" "1976-09-20"
## [41246] "1976-09-20" "1971-05-13" "1971-05-13" "1971-05-13" "1971-05-13"
## [41251] "1971-05-13" "1971-05-13" "1971-05-13" "1971-05-13" "1971-05-13"
## [41256] "1972-02-21" "1972-02-21" "1971-05-06" "1971-05-06" "1971-05-06"
## [41261] "1971-05-06" "1971-05-06" "1971-05-06" "1971-05-06" "1971-05-06"
## [41266] "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04"
## [41271] "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04" "1974-08-04"
## [41276] "1974-08-04" "1974-08-04" "1973-11-03" "1973-11-03" "1973-11-03"
## [41281] "1973-11-03" "1973-11-03" "1973-11-03" "1973-11-03" "1973-11-03"
## [41286] "1973-01-10" "1973-01-10" "1973-01-10" "1973-01-10" "1973-01-10"
## [41291] "1973-01-10" "1973-01-10" "1973-01-10" "1973-01-10" "1973-01-10"
## [41296] "1990-11-19" "1990-11-19" "1990-11-19" "1990-11-19" "1990-11-19"
## [41301] "1990-11-19" "1990-11-19" "1990-11-19" "1990-11-19" "1990-11-19"
## [41306] "1990-11-19" "1990-11-19" "1990-11-19" "1990-11-19" "1990-11-19"
## [41311] "1990-11-19" "1990-11-19" "1990-11-19" "1990-11-19" "1990-11-19"
## [41316] "1990-11-19" "1990-11-19" "1991-10-25" "1991-10-25" "1991-10-25"
## [41321] "1971-12-03" "1971-12-03" "1971-12-03" "1971-12-03" "1971-12-03"
## [41326] "1971-12-03" "1971-12-03" "1976-05-24" "1976-05-24" "1976-05-24"
## [41331] "1976-05-24" "1976-05-24" "1976-05-24" "1976-05-24" "1976-05-24"
## [41336] "1976-05-24" "1976-05-24" "1972-10-18" "1972-10-18" "1972-10-18"
## [41341] "1972-10-18" "1984-09-12" "1984-09-12" "1984-09-12" "1984-09-12"
## [41346] "1984-09-12" "1984-09-12" "1984-09-12" "1984-09-12" "1984-09-12"
## [41351] "1984-09-12" "1984-09-12" "1984-09-12" "1984-09-12" "1984-09-12"
## [41356] "1984-09-12" "1984-09-12" "1984-09-12" "1984-09-12" "1977-04-19"
## [41361] "1977-04-19" "1977-04-19" "1977-04-19" "1977-04-19" "1977-04-19"
## [41366] "1977-04-19" "1977-04-19" "1977-04-19" "1977-04-19" "1977-04-19"
## [41371] "1977-04-19" "1974-06-28" "1974-06-28" "1974-06-28" "1992-08-26"
## [41376] "1992-08-26" "1992-08-26" "1992-08-26" "1992-08-26" "1992-08-26"
## [41381] "1992-08-26" "1992-08-26" "1992-08-26" "1992-08-26" "1992-08-26"
## [41386] "1983-05-12" "1983-05-12" "1983-05-12" "1983-05-12" "1988-09-27"
## [41391] "1988-09-27" "1988-09-27" "1988-09-27" "1988-09-27" "1988-09-27"
## [41396] "1988-09-27" "1988-09-27" "1978-12-26" "1978-12-26" "1978-12-26"
## [41401] "1976-10-20" "1976-10-20" "1976-10-20" "1976-10-20" "1976-10-20"
## [41406] "1976-10-20" "1976-10-20" "1976-10-20" "1976-10-20" "1976-10-20"
## [41411] "1976-10-20" "1976-10-20" "1980-08-15" "1980-08-15" "1980-08-15"
## [41416] "1980-08-15" "1980-08-15" "1980-08-15" "1980-08-15" "1980-08-15"
## [41421] "1980-08-15" "1980-08-15" "1980-08-15" "1980-08-15" "1982-12-06"
## [41426] "1982-12-06" "1982-12-06" "1982-12-06" "1982-12-06" "1982-12-06"
## [41431] "1982-12-06" "1982-12-06" "1982-12-06" "1982-12-06" "1982-12-06"
## [41436] "1982-12-06" "1982-12-06" "1982-12-06" "1982-12-06" "1982-12-06"
## [41441] "1982-12-06" "1987-02-22" "1987-02-22" "1987-02-22" "1987-02-22"
## [41446] "1987-02-22" "1987-02-22" "1987-02-22" "1987-02-22" "1987-02-22"
## [41451] "1987-02-22" "1987-02-22" "1977-04-13" "1977-04-13" "1977-04-13"
## [41456] "1977-04-13" "1977-04-13" "1977-04-13" "1977-04-13" "1977-04-13"
## [41461] "1977-04-13" "1977-04-13" "1977-04-13" "1978-10-28" "1978-10-28"
## [41466] "1978-10-28" "1978-10-28" "1970-03-08" "1970-03-08" "1970-03-08"
## [41471] "1970-01-26" "1970-01-26" "1970-01-26" "1970-01-26" "1970-01-26"
## [41476] "1989-01-21" "1989-01-21" "1989-01-21" "1989-01-21" "1989-01-21"
## [41481] "1989-01-21" "1989-01-21" "1989-01-21" "1989-01-21" "1989-01-21"
## [41486] "1989-01-21" "1989-01-21" "1980-04-02" "1980-04-02" "1980-04-02"
## [41491] "1980-04-02" "1980-04-02" "1980-04-02" "1980-04-02" "1980-04-02"
## [41496] "1980-04-02" "1980-04-02" "1972-01-10" "1972-01-10" "1972-01-10"
## [41501] "1991-07-03" "1991-07-03" "1991-07-03" "1991-07-03" "1991-07-03"
## [41506] "1991-07-03" "1970-03-15" "1970-03-15" "1970-03-15" "1970-03-15"
## [41511] "1970-03-15" "1984-02-11" "1984-02-11" "1984-02-11" "1984-02-11"
## [41516] "1984-02-11" "1984-02-11" "1984-02-11" "1984-02-11" "1984-02-11"
## [41521] "1978-11-13" "1978-11-13" "1978-11-13" "1978-11-13" "1978-11-13"
## [41526] "1978-11-13" "1978-11-13" "1992-12-03" "1992-12-03" "1992-12-03"
## [41531] "1992-12-03" "1992-12-03" "1992-12-03" "1992-12-03" "1992-12-03"
## [41536] "1992-12-03" "1992-12-03" "1992-12-03" "1992-12-03" "1985-11-23"
## [41541] "1985-11-23" "1985-11-23" "1985-11-23" "1985-11-23" "1985-11-23"
## [41546] "1985-11-23" "1985-11-23" "1978-02-04" "1978-02-04" "1978-02-04"
## [41551] "1978-02-04" "1978-02-04" "1978-02-04" "1978-02-04" "1978-02-04"
## [41556] "1978-02-04" "1978-02-04" "1978-02-04" "1978-02-04" "1978-02-04"
## [41561] "1978-02-04" "1978-02-04" "1978-02-04" "1978-02-04" "1972-05-02"
## [41566] "1972-05-02" "1991-07-08" "1991-07-08" "1991-07-08" "1991-07-08"
## [41571] "1991-07-08" "1991-07-08" "1991-07-08" "1991-07-08" "1991-07-08"
## [41576] "1991-07-08" "1991-07-08" "1991-07-08" "1991-07-08" "1991-07-08"
## [41581] "1991-07-08" "1990-08-21" "1990-08-21" "1990-08-21" "1990-08-21"
## [41586] "1990-08-21" "1992-12-09" "1992-12-09" "1992-12-09" "1992-12-09"
## [41591] "1992-12-09" "1992-12-09" "1992-12-09" "1992-12-09" "1992-12-09"
## [41596] "1992-12-09" "1992-12-09" "1992-12-09" "1992-12-09" "1980-04-26"
## [41601] "1980-04-26" "1980-04-26" "1980-04-26" "1980-04-26" "1980-04-26"
## [41606] "1980-04-26" "1980-04-26" "1980-04-26" "1984-02-05" "1984-02-05"
## [41611] "1984-02-05" "1984-02-05" "1984-02-05" "1984-02-05" "1984-02-05"
## [41616] "1984-02-05" "1984-02-05" "1980-07-28" "1980-07-28" "1980-07-28"
## [41621] "1980-07-28" "1980-07-28" "1980-07-28" "1980-07-28" "1980-07-28"
## [41626] "1982-06-01" "1982-06-01" "1985-06-24" "1985-06-24" "1985-06-24"
## [41631] "1985-06-24" "1985-06-24" "1985-06-24" "1970-09-04" "1970-09-04"
## [41636] "1970-09-04" "1970-09-04" "1970-09-04" "1970-09-04" "1971-10-20"
## [41641] "1971-10-20" "1971-10-20" "1971-10-20" "1971-10-20" "1971-10-20"
## [41646] "1971-10-20" "1971-10-20" "1971-10-20" "1971-10-20" "1971-10-20"
## [41651] "1971-10-20" "1971-10-20" "1970-02-01" "1970-02-01" "1970-02-01"
## [41656] "1970-02-01" "1970-02-01" "1988-02-16" "1988-02-16" "1988-02-16"
## [41661] "1988-02-16" "1988-02-16" "1988-02-16" "1988-02-16" "1988-02-16"
## [41666] "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15"
## [41671] "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15"
## [41676] "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15"
## [41681] "1980-09-15" "1980-09-15" "1980-09-15" "1980-09-15" "1981-11-14"
## [41686] "1981-11-14" "1981-11-14" "1981-11-14" "1981-11-14" "1982-02-12"
## [41691] "1982-02-12" "1982-02-12" "1982-02-12" "1979-02-07" "1979-02-07"
## [41696] "1979-02-07" "1982-06-18" "1982-06-18" "1982-06-18" "1982-06-18"
## [41701] "1982-06-18" "1982-06-18" "1982-06-18" "1973-02-13" "1973-02-13"
## [41706] "1973-02-13" "1973-02-13" "1973-02-13" "1973-02-13" "1973-02-13"
## [41711] "1973-02-13" "1973-02-13" "1973-02-13" "1973-02-13" "1973-02-13"
## [41716] "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15"
## [41721] "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15"
## [41726] "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15" "1979-03-15"
## [41731] "1979-03-15" "1979-03-15" "1986-12-04" "1986-12-04" "1986-12-04"
## [41736] "1986-12-04" "1985-07-08" "1985-07-08" "1985-07-08" "1985-07-08"
## [41741] "1985-07-08" "1985-07-08" "1985-07-08" "1985-07-08" "1985-07-08"
## [41746] "1985-07-08" "1985-07-08" "1985-07-08" "1985-07-08" "1985-07-08"
## [41751] "1985-07-08" "1985-07-08" "1985-07-08" "1985-07-08" "1985-07-08"
## [41756] "1972-05-26" "1972-05-26" "1972-05-26" "1972-05-26" "1972-05-26"
## [41761] "1972-05-26" "1972-05-26" "1972-05-26" "1972-05-26" "1972-05-26"
## [41766] "1972-05-26" "1972-05-26" "1980-06-23" "1980-06-23" "1980-06-23"
## [41771] "1980-06-23" "1981-12-03" "1981-12-03" "1981-12-03" "1981-12-03"
## [41776] "1981-12-03" "1981-12-03" "1981-12-03" "1981-12-03" "1981-12-03"
## [41781] "1981-12-03" "1981-12-03" "1981-12-03" "1981-12-03" "1981-12-03"
## [41786] "1981-12-03" "1987-02-03" "1987-02-03" "1987-02-03" "1987-02-03"
## [41791] "1987-02-03" "1987-02-03" "1987-02-03" "1987-02-03" "1990-09-09"
## [41796] "1990-09-09" "1990-09-09" "1990-09-09" "1990-09-09" "1990-09-09"
## [41801] "1990-09-09" "1990-09-09" "1988-07-21" "1988-07-21" "1988-07-21"
## [41806] "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21"
## [41811] "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21"
## [41816] "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21"
## [41821] "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21" "1988-07-21"
## [41826] "1971-06-20" "1971-06-20" "1971-06-20" "1971-06-20" "1971-06-20"
## [41831] "1971-06-20" "1971-06-20" "1971-06-20" "1971-06-20" "1971-06-20"
## [41836] "1971-06-20" "1971-06-20" "1971-06-20" "1971-07-15" "1971-07-15"
## [41841] "1971-07-15" "1971-07-15" "1971-07-15" "1982-04-19" "1982-04-19"
## [41846] "1982-04-19" "1982-04-19" "1982-04-19" "1982-04-19" "1982-04-19"
## [41851] "1982-04-19" "1982-04-19" "1982-04-19" "1982-04-19" "1982-04-19"
## [41856] "1973-11-14" "1973-11-14" "1973-11-14" "1973-11-14" "1973-11-14"
## [41861] "1974-12-23" "1974-12-23" "1974-12-23" "1974-12-23" "1974-12-23"
## [41866] "1974-12-23" "1974-12-23" "1974-12-23" "1974-12-23" "1974-12-23"
## [41871] "1971-01-11" "1971-01-11" "1971-01-11" "1971-01-11" "1971-01-11"
## [41876] "1971-01-11" "1971-01-11" "1971-01-11" "1989-05-20" "1989-05-20"
## [41881] "1977-05-27" "1977-05-27" "1977-05-27" "1977-05-27" "1977-05-27"
## [41886] "1977-05-27" "1977-05-27" "1977-05-27" "1977-05-27" "1977-05-27"
## [41891] "1977-05-27" "1977-05-27" "1977-05-27" "1977-05-27" "1977-05-27"
## [41896] "1977-05-27" "1977-05-27" "1977-05-27" "1977-05-27" "1977-05-27"
## [41901] "1977-05-27" "1992-03-07" "1992-03-07" "1992-03-07" "1992-03-07"
## [41906] "1992-03-07" "1992-03-07" "1992-03-07" "1992-03-07" "1992-03-07"
## [41911] "1981-05-14" "1981-05-14" "1981-05-14" "1981-05-14" "1981-05-14"
## [41916] "1981-05-14" "1981-05-14" "1981-05-14" "1981-05-14" "1981-05-14"
## [41921] "1981-05-14" "1981-05-14" "1981-05-14" "1976-01-19" "1976-01-19"
## [41926] "1976-01-19" "1976-01-19" "1976-01-19" "1976-01-19" "1976-01-19"
## [41931] "1976-01-19" "1976-01-19" "1980-06-20" "1980-06-20" "1980-06-20"
## [41936] "1980-06-20" "1980-06-20" "1980-06-20" "1980-06-20" "1980-06-20"
## [41941] "1980-06-20" "1980-06-20" "1980-06-20" "1980-06-20" "1980-06-20"
## [41946] "1980-06-20" "1980-06-20" "1980-06-20" "1980-06-20" "1989-01-21"
## [41951] "1989-01-21" "1989-01-21" "1989-01-21" "1989-01-21" "1977-12-22"
## [41956] "1977-12-22" "1977-12-22" "1977-12-22" "1992-05-14" "1992-05-14"
## [41961] "1992-05-14" "1992-05-14" "1992-05-14" "1992-05-14" "1992-05-14"
## [41966] "1992-05-14" "1992-05-14" "1992-05-14" "1992-05-14" "1982-05-15"
## [41971] "1982-05-15" "1982-05-15" "1982-05-15" "1982-05-15" "1982-05-15"
## [41976] "1982-05-15" "1982-05-15" "1982-05-15" "1975-04-19" "1975-04-19"
## [41981] "1975-04-19" "1975-04-19" "1986-11-22" "1986-11-22" "1986-11-22"
## [41986] "1986-11-22" "1986-11-22" "1986-11-22" "1986-11-22" "1985-03-27"
## [41991] "1985-03-27" "1985-03-27" "1985-03-27" "1985-03-27" "1985-03-27"
## [41996] "1985-03-27" "1979-04-01" "1979-04-01" "1979-04-01" "1979-04-01"
## [42001] "1979-04-01" "1979-04-01" "1979-04-01" "1981-02-23" "1981-02-23"
## [42006] "1981-02-23" "1981-02-23" "1981-02-23" "1981-02-23" "1981-02-23"
## [42011] "1981-02-23" "1981-02-23" "1981-02-23" "1981-02-23" "1981-02-23"
## [42016] "1981-02-23" "1981-02-23" "1981-02-23" "1981-02-23" "1981-02-23"
## [42021] "1981-02-23" "1981-02-23" "1981-02-23" "1981-02-23" "1981-02-23"
## [42026] "1981-02-23" "1977-09-10" "1977-09-10" "1977-09-10" "1977-09-10"
## [42031] "1977-09-10" "1983-09-21" "1983-09-21" "1983-09-21" "1983-09-21"
## [42036] "1983-09-21" "1983-09-21" "1983-09-21" "1983-09-21" "1983-09-21"
## [42041] "1983-09-21" "1983-09-21" "1983-09-21" "1983-09-21" "1983-09-21"
## [42046] "1978-01-29" "1978-01-29" "1978-01-29" "1978-01-29" "1978-01-29"
## [42051] "1978-01-29" "1978-01-29" "1978-01-29" "1978-01-29" "1978-01-29"
## [42056] "1978-01-29" "1978-01-29" "1978-01-29" "1978-01-29" "1978-01-29"
## [42061] "1978-01-29" "1982-06-21" "1982-06-21" "1982-06-21" "1982-06-21"
## [42066] "1982-06-21" "1982-06-21" "1982-06-21" "1982-06-21" "1982-06-21"
## [42071] "1982-06-21" "1982-06-21" "1982-06-21" "1982-06-21" "1988-08-14"
## [42076] "1988-08-14" "1988-08-14" "1988-08-14" "1988-08-14" "1988-08-14"
## [42081] "1988-08-14" "1988-08-14" "1988-08-14" "1988-08-14" "1988-08-14"
## [42086] "1988-08-14" "1988-08-14" "1988-08-14" "1988-08-14" "1988-08-14"
## [42091] "1988-08-14" "1988-08-14" "1987-06-18" "1987-06-18" "1987-06-18"
## [42096] "1987-06-18" "1987-06-18" "1987-06-18" "1984-05-05" "1984-05-05"
## [42101] "1984-05-05" "1984-05-05" "1984-05-05" "1984-05-05" "1984-05-05"
## [42106] "1984-05-05" "1984-05-05" "1981-06-23" "1981-06-23" "1981-06-23"
## [42111] "1978-08-09" "1978-08-09" "1978-08-09" "1978-08-09" "1978-08-09"
## [42116] "1978-08-09" "1990-01-01" "1990-01-01" "1990-01-01" "1990-01-01"
## [42121] "1990-01-01" "1990-01-01" "1990-01-01" "1990-01-01" "1990-01-01"
## [42126] "1990-01-01" "1990-01-01" "1990-01-01" "1990-01-01" "1990-01-01"
## [42131] "1990-01-01" "1990-01-01" "1980-11-27" "1980-11-27" "1980-11-27"
## [42136] "1980-11-27" "1980-11-27" "1980-11-27" "1980-11-27" "1992-07-07"
## [42141] "1992-07-07" "1982-10-25" "1982-10-25" "1982-10-25" "1982-10-25"
## [42146] "1982-10-25" "1982-10-25" "1982-10-25" "1982-10-25" "1991-11-17"
## [42151] "1991-11-17" "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28"
## [42156] "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28"
## [42161] "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28" "1988-02-28"
## [42166] "1977-07-18" "1977-07-18" "1977-07-18" "1977-07-18" "1977-07-18"
## [42171] "1977-07-18" "1977-07-18" "1977-07-18" "1977-07-18" "1977-07-18"
## [42176] "1990-05-27" "1990-05-27" "1985-09-05" "1985-09-05" "1985-09-05"
## [42181] "1985-09-05" "1985-09-05" "1973-09-06" "1973-09-06" "1982-05-20"
## [42186] "1982-05-20" "1982-05-20" "1982-05-20" "1982-05-20" "1982-05-20"
## [42191] "1982-05-20" "1982-05-20" "1982-05-20" "1982-05-20" "1982-05-20"
## [42196] "1982-05-20" "1975-06-18" "1975-06-18" "1975-06-18" "1975-06-18"
## [42201] "1975-06-18" "1975-06-18" "1981-02-01" "1981-02-01" "1981-02-01"
## [42206] "1987-09-07" "1987-09-07" "1987-09-07" "1975-12-01" "1975-12-01"
## [42211] "1975-12-01" "1975-12-01" "1975-12-01" "1975-12-01" "1975-12-01"
## [42216] "1975-12-01" "1975-12-01" "1975-12-01" "1975-12-01" "1975-12-01"
## [42221] "1984-12-18" "1984-12-18" "1984-12-18" "1984-12-18" "1984-12-18"
## [42226] "1976-06-16" "1976-06-16" "1976-06-16" "1976-06-16" "1976-06-16"
## [42231] "1976-06-16" "1991-06-22" "1991-06-22" "1991-06-22" "1991-06-22"
## [42236] "1991-06-22" "1991-06-22" "1991-06-22" "1991-06-22" "1991-06-22"
## [42241] "1991-06-22" "1991-06-22" "1991-06-22" "1991-06-22" "1991-06-22"
## [42246] "1991-06-22" "1991-06-22" "1991-06-22" "1991-06-22" "1991-06-22"
## [42251] "1991-06-22" "1991-06-22" "1991-06-22" "1991-06-22" "1991-06-22"
## [42256] "1991-06-22" "1991-06-22" "1991-06-22" "1982-10-29" "1982-10-29"
## [42261] "1982-10-29" "1982-10-29" "1982-10-29" "1982-10-29" "1982-10-29"
## [42266] "1985-08-23" "1985-08-23" "1985-08-23" "1985-08-23" "1985-08-23"
## [42271] "1985-08-23" "1985-08-23" "1985-08-23" "1985-08-23" "1985-08-23"
## [42276] "1985-08-23" "1985-08-23" "1985-08-23" "1985-08-23" "1987-10-08"
## [42281] "1987-10-08" "1987-10-08" "1987-10-08" "1987-10-08" "1985-05-15"
## [42286] "1985-05-15" "1985-05-15" "1985-05-15" "1985-05-15" "1985-05-15"
## [42291] "1985-05-15" "1985-05-15" "1985-05-15" "1985-05-15" "1985-05-15"
## [42296] "1985-05-15" "1985-05-15" "1985-05-15" "1985-05-15" "1985-05-15"
## [42301] "1985-05-15" "1985-05-15" "1985-05-15" "1985-05-15" "1985-05-15"
## [42306] "1985-05-15" "1985-05-15" "1985-05-15" "1979-05-02" "1979-05-02"
## [42311] "1979-05-02" "1979-05-02" "1979-05-02" "1979-05-02" "1979-05-02"
## [42316] "1979-05-02" "1979-05-02" "1979-05-02" "1974-02-27" "1974-02-27"
## [42321] "1974-02-27" "1974-02-27" "1974-02-27" "1974-02-27" "1974-02-27"
## [42326] "1974-02-27" "1982-04-14" "1982-04-14" "1982-04-14" "1982-04-14"
## [42331] "1982-04-14" "1974-05-04" "1974-05-04" "1974-05-04" "1974-05-04"
## [42336] "1974-05-04" "1983-02-02" "1983-02-02" "1974-11-11" "1974-11-11"
## [42341] "1974-11-11" "1981-07-20" "1981-07-20" "1981-07-20" "1981-07-20"
## [42346] "1981-07-20" "1981-07-20" "1976-12-10" "1976-12-10" "1976-12-10"
## [42351] "1976-12-10" "1976-12-10" "1976-12-10" "1976-12-10" "1976-12-10"
## [42356] "1970-06-17" "1970-06-17" "1970-06-17" "1970-06-17" "1970-06-17"
## [42361] "1970-06-17" "1970-06-17" "1970-06-17" "1970-06-17" "1970-06-17"
## [42366] "1970-06-17" "1970-06-17" "1970-06-17" "1970-06-17" "1970-06-17"
## [42371] "1970-06-17" "1974-08-05" "1974-08-05" "1974-08-05" "1974-08-05"
## [42376] "1974-08-05" "1974-08-05" "1974-08-05" "1974-08-05" "1974-08-05"
## [42381] "1974-08-05" "1974-08-05" "1974-08-05" "1974-08-05" "1974-08-05"
## [42386] "1974-08-05" "1971-11-21" "1971-11-21" "1971-11-21" "1987-09-01"
## [42391] "1987-09-01" "1987-09-01" "1987-09-01" "1987-09-01" "1987-09-01"
## [42396] "1987-09-01" "1987-09-01" "1987-09-01" "1987-09-01" "1987-09-01"
## [42401] "1987-09-01" "1987-09-01" "1987-09-01" "1987-09-01" "1987-09-01"
## [42406] "1973-05-01" "1973-05-01" "1973-05-01" "1973-05-01" "1973-05-01"
## [42411] "1973-05-01" "1973-05-01" "1973-05-01" "1973-05-01" "1973-05-01"
## [42416] "1973-05-01" "1982-05-03" "1982-05-03" "1982-05-03" "1982-05-03"
## [42421] "1982-05-03" "1982-05-03" "1974-05-07" "1974-05-07" "1974-05-07"
## [42426] "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07"
## [42431] "1974-05-07" "1974-05-07" "1974-05-07" "1974-05-07" "1975-07-12"
## [42436] "1975-07-12" "1975-07-12" "1991-05-19" "1991-05-19" "1991-05-19"
## [42441] "1991-05-19" "1991-05-19" "1991-05-19" "1991-05-19" "1991-05-19"
## [42446] "1991-05-19" "1991-05-19" "1991-05-19" "1977-02-20" "1977-02-20"
## [42451] "1977-02-20" "1977-02-20" "1977-02-20" "1977-02-20" "1977-02-20"
## [42456] "1977-02-20" "1973-08-22" "1973-08-22" "1973-08-22" "1973-08-22"
## [42461] "1973-08-22" "1973-08-22" "1973-08-22" "1973-08-22" "1973-08-22"
## [42466] "1973-08-22" "1973-08-22" "1981-09-01" "1981-09-01" "1981-09-01"
## [42471] "1981-09-01" "1981-09-01" "1981-09-01" "1981-09-01" "1981-09-01"
## [42476] "1981-09-01" "1981-09-01" "1981-09-01" "1981-09-01" "1981-09-01"
## [42481] "1981-09-01" "1981-09-01" "1981-09-01" "1990-12-25" "1990-12-25"
## [42486] "1990-12-25" "1990-12-25" "1990-12-25" "1990-12-25" "1984-04-13"
## [42491] "1984-04-13" "1984-04-13" "1984-04-13" "1984-04-13" "1984-04-13"
## [42496] "1984-04-13" "1984-04-13" "1984-04-13" "1980-11-06" "1980-11-06"
## [42501] "1980-11-06" "1980-11-06" "1980-11-06" "1980-11-06" "1980-11-06"
## [42506] "1980-11-06" "1980-11-06" "1980-11-06" "1989-04-22" "1989-04-22"
## [42511] "1989-04-22" "1989-04-22" "1989-04-22" "1989-04-22" "1989-04-22"
## [42516] "1989-04-22" "1989-04-22" "1989-04-22" "1989-04-22" "1989-04-22"
## [42521] "1989-04-22" "1989-04-22" "1989-04-22" "1989-04-22" "1989-04-22"
## [42526] "1989-04-22" "1989-04-22" "1975-10-25" "1975-10-25" "1975-10-25"
## [42531] "1975-10-25" "1975-10-25" "1975-10-25" "1981-01-25" "1981-01-25"
## [42536] "1981-01-25" "1981-01-25" "1981-01-25" "1976-11-08" "1976-11-08"
## [42541] "1976-11-08" "1976-11-08" "1976-11-08" "1971-10-28" "1971-10-28"
## [42546] "1971-10-28" "1971-10-28" "1971-10-28" "1971-10-28" "1971-10-28"
## [42551] "1971-10-28" "1971-10-28" "1971-10-28" "1982-07-17" "1982-07-17"
## [42556] "1982-07-17" "1988-10-25" "1988-10-25" "1988-10-25" "1988-10-25"
## [42561] "1988-10-25" "1988-10-25" "1988-10-25" "1985-09-07" "1985-09-07"
## [42566] "1985-09-07" "1985-09-07" "1985-09-07" "1985-09-07" "1985-09-07"
## [42571] "1985-09-07" "1985-09-07" "1985-09-07" "1983-01-15" "1983-01-15"
## [42576] "1983-01-15" "1983-01-15" "1983-01-15" "1983-01-15" "1983-01-15"
## [42581] "1983-01-15" "1971-03-28" "1971-03-28" "1971-03-28" "1971-03-28"
## [42586] "1979-11-22" "1979-11-22" "1979-11-22" "1979-11-22" "1979-11-22"
## [42591] "1979-11-22" "1990-12-02" "1990-12-02" "1990-12-02" "1990-12-02"
## [42596] "1990-12-02" "1979-07-11" "1979-07-11" "1979-07-11" "1979-07-11"
## [42601] "1979-07-11" "1979-07-11" "1979-07-11" "1979-07-11" "1979-07-11"
## [42606] "1979-07-11" "1979-07-11" "1980-04-20" "1980-04-20" "1980-04-20"
## [42611] "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20"
## [42616] "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20"
## [42621] "1980-04-20" "1980-04-20" "1980-04-20" "1980-04-20" "1977-03-21"
## [42626] "1977-03-21" "1977-03-21" "1977-03-21" "1987-10-02" "1987-10-02"
## [42631] "1987-10-02" "1987-10-02" "1987-10-02" "1987-10-02" "1987-10-02"
## [42636] "1987-10-02" "1987-10-02" "1987-10-02" "1987-10-02" "1987-10-02"
## [42641] "1987-10-02" "1979-08-03" "1979-08-03" "1979-08-03" "1979-08-03"
## [42646] "1979-08-03" "1979-08-03" "1979-08-03" "1979-08-03" "1979-08-03"
## [42651] "1979-08-03" "1979-08-03" "1979-08-03" "1979-08-03" "1989-02-01"
## [42656] "1989-02-01" "1989-02-01" "1989-02-01" "1989-02-01" "1989-02-01"
## [42661] "1989-02-01" "1988-09-06" "1988-09-06" "1988-09-06" "1988-09-06"
## [42666] "1988-09-06" "1988-09-06" "1988-09-06" "1988-09-06" "1988-09-06"
## [42671] "1988-09-06" "1988-09-06" "1971-05-08" "1971-05-08" "1971-05-08"
## [42676] "1971-05-08" "1971-05-08" "1971-05-08" "1971-05-08" "1991-01-08"
## [42681] "1991-01-08" "1991-01-08" "1991-01-08" "1991-01-08" "1991-01-08"
## [42686] "1991-01-08" "1991-08-07" "1991-08-07" "1991-08-07" "1991-08-07"
## [42691] "1991-08-07" "1991-08-07" "1991-08-07" "1991-08-07" "1991-08-07"
## [42696] "1991-08-07" "1991-08-07" "1991-08-07" "1991-08-07" "1992-09-12"
## [42701] "1992-09-12" "1992-09-12" "1992-09-12" "1992-09-12" "1978-09-24"
## [42706] "1978-09-24" "1986-11-02" "1986-11-02" "1986-11-02" "1986-11-02"
## [42711] "1986-11-02" "1988-12-27" "1988-12-27" "1977-12-10" "1977-12-10"
## [42716] "1984-09-05" "1984-09-05" "1984-09-05" "1984-09-05" "1984-09-05"
## [42721] "1984-09-05" "1984-09-05" "1984-09-05" "1984-09-05" "1984-09-05"
## [42726] "1984-09-05" "1984-09-05" "1987-03-26" "1987-03-26" "1979-08-23"
## [42731] "1979-08-23" "1979-08-23" "1979-08-23" "1979-08-23" "1979-08-23"
## [42736] "1979-08-23" "1979-08-23" "1979-08-23" "1979-08-23" "1979-08-23"
## [42741] "1979-08-23" "1979-08-23" "1979-08-23" "1979-08-23" "1979-08-23"
## [42746] "1979-08-23" "1979-08-23" "1979-08-23" "1979-08-23" "1979-08-23"
## [42751] "1978-06-09" "1978-06-09" "1978-06-09" "1978-06-09" "1978-06-09"
## [42756] "1978-06-09" "1978-06-09" "1970-04-02" "1970-04-02" "1970-04-02"
## [42761] "1970-04-02" "1970-04-02" "1970-04-02" "1970-04-02" "1970-04-02"
## [42766] "1991-08-26" "1991-08-26" "1991-08-26" "1991-08-26" "1991-08-26"
## [42771] "1991-08-26" "1991-08-26" "1991-08-26" "1991-08-26" "1971-03-19"
## [42776] "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19"
## [42781] "1971-03-19" "1971-03-19" "1971-03-19" "1971-03-19" "1983-01-06"
## [42786] "1983-01-06" "1983-01-06" "1983-01-06" "1983-01-06" "1983-01-06"
## [42791] "1983-01-06" "1983-01-06" "1983-01-06" "1983-01-06" "1983-01-06"
## [42796] "1983-01-06" "1983-01-06" "1983-01-06" "1983-01-06" "1983-01-06"
## [42801] "1983-01-06" "1985-10-28" "1985-10-28" "1985-10-28" "1985-10-28"
## [42806] "1985-10-28" "1985-10-28" "1985-10-28" "1985-10-28" "1989-09-04"
## [42811] "1989-09-04" "1989-09-04" "1989-09-04" "1989-09-04" "1989-09-04"
## [42816] "1987-07-25" "1987-07-25" "1987-07-25" "1987-07-25" "1987-07-25"
## [42821] "1987-07-25" "1987-07-25" "1987-07-25" "1976-06-15" "1976-06-15"
## [42826] "1976-06-15" "1976-06-15" "1976-06-15" "1976-06-15" "1976-06-15"
## [42831] "1976-06-15" "1976-06-15" "1976-06-15" "1976-06-15" "1976-06-15"
## [42836] "1976-06-15" "1985-04-24" "1985-04-24" "1985-04-24" "1978-02-07"
## [42841] "1978-02-07" "1978-02-07" "1978-02-07" "1978-02-07" "1978-02-07"
## [42846] "1978-02-07" "1978-02-07" "1978-02-07" "1978-02-07" "1978-02-07"
## [42851] "1978-02-07" "1978-02-07" "1978-02-07" "1978-02-07" "1978-02-07"
## [42856] "1978-02-07" "1978-02-07" "1978-02-07" "1978-02-07" "1978-02-07"
## [42861] "1978-02-07" "1978-02-07" "1978-02-07" "1978-02-07" "1978-02-07"
## [42866] "1978-02-07" "1985-12-17" "1985-12-17" "1985-12-17" "1985-12-17"
## [42871] "1985-12-17" "1989-05-09" "1989-05-09" "1989-05-09" "1989-05-09"
## [42876] "1989-05-09" "1989-05-09" "1983-07-04" "1983-07-04" "1983-07-04"
## [42881] "1983-07-04" "1983-07-04" "1983-07-04" "1983-07-04" "1983-07-04"
## [42886] "1983-07-04" "1989-05-18" "1989-05-18" "1989-05-18" "1989-05-18"
## [42891] "1989-05-18" "1989-05-18" "1989-05-18" "1980-03-04" "1980-03-04"
## [42896] "1970-10-18" "1970-10-18" "1970-10-18" "1973-07-23" "1973-07-23"
## [42901] "1973-07-23" "1973-07-23" "1973-07-23" "1973-07-23" "1973-07-23"
## [42906] "1973-07-23" "1973-07-23" "1973-07-23" "1973-06-14" "1973-06-14"
## [42911] "1973-06-14" "1973-06-14" "1973-06-14" "1973-06-14" "1973-06-14"
## [42916] "1973-06-14" "1973-06-14" "1973-06-14" "1973-06-14" "1973-06-14"
## [42921] "1973-06-14" "1973-06-14" "1984-02-16" "1984-02-16" "1984-02-16"
## [42926] "1974-10-14" "1974-10-14" "1974-10-14" "1974-10-14" "1974-10-14"
## [42931] "1974-10-14" "1992-11-09" "1992-11-09" "1992-11-09" "1992-11-09"
## [42936] "1992-11-09" "1992-11-09" "1992-11-09" "1977-03-21" "1977-03-21"
## [42941] "1977-03-21" "1977-03-21" "1977-03-21" "1977-03-21" "1984-12-02"
## [42946] "1984-12-02" "1984-12-02" "1984-12-02" "1984-12-02" "1984-12-02"
## [42951] "1984-12-02" "1984-12-02" "1984-12-02" "1984-12-02" "1984-12-02"
## [42956] "1984-12-02" "1984-12-02" "1983-05-16" "1983-05-16" "1983-05-16"
## [42961] "1983-05-16" "1983-05-16" "1983-05-16" "1986-04-01" "1986-04-01"
## [42966] "1986-04-01" "1986-04-01" "1986-04-01" "1986-04-01" "1986-04-01"
## [42971] "1986-04-01" "1986-04-01" "1983-09-18" "1983-09-18" "1974-03-29"
## [42976] "1974-03-29" "1974-03-29" "1974-03-29" "1974-03-29" "1974-03-29"
## [42981] "1974-03-29" "1974-03-29" "1974-03-29" "1974-03-29" "1974-03-29"
## [42986] "1974-03-29" "1974-03-29" "1974-03-29" "1974-03-29" "1974-03-29"
## [42991] "1974-03-29" "1974-03-29" "1974-03-29" "1974-03-29" "1974-03-29"
## [42996] "1974-03-29" "1974-03-29" "1974-03-29" "1974-03-29" "1974-03-29"
## [43001] "1981-06-02" "1981-06-02" "1981-06-02" "1981-06-02" "1981-06-02"
## [43006] "1981-06-02" "1981-06-02" "1989-11-19" "1989-11-19" "1989-11-19"
## [43011] "1989-11-19" "1989-11-19" "1989-11-19" "1989-11-19" "1989-11-19"
## [43016] "1974-01-16" "1974-01-16" "1974-01-16" "1974-01-16" "1974-01-16"
## [43021] "1974-01-16" "1975-07-01" "1975-07-01" "1975-07-01" "1975-07-01"
## [43026] "1975-07-01" "1975-07-01" "1975-07-01" "1975-07-01" "1975-07-01"
## [43031] "1975-07-01" "1975-07-01" "1975-07-01" "1987-09-16" "1987-09-16"
## [43036] "1987-09-16" "1987-09-16" "1987-09-16" "1977-05-17" "1977-05-17"
## [43041] "1977-05-17" "1977-05-17" "1977-05-17" "1977-05-17" "1977-05-17"
## [43046] "1977-05-17" "1977-05-17" "1977-05-17" "1977-05-17" "1986-09-23"
## [43051] "1986-09-23" "1986-09-23" "1986-09-23" "1986-09-23" "1986-09-23"
## [43056] "1986-09-23" "1986-09-23" "1986-09-23" "1986-09-23" "1986-09-23"
## [43061] "1981-01-07" "1981-01-07" "1981-01-07" "1981-01-07" "1981-01-07"
## [43066] "1981-01-07" "1981-01-07" "1981-01-07" "1981-01-07" "1981-01-07"
## [43071] "1981-01-07" "1981-01-07" "1980-05-09" "1980-05-09" "1980-05-09"
## [43076] "1980-05-09" "1980-05-09" "1980-05-09" "1980-05-09" "1980-05-09"
## [43081] "1980-05-09" "1971-02-02" "1971-02-02" "1971-02-02" "1971-02-02"
## [43086] "1971-02-02" "1971-02-02" "1971-02-02" "1971-02-02" "1992-06-11"
## [43091] "1992-06-11" "1992-06-11" "1991-07-15" "1991-07-15" "1991-07-15"
## [43096] "1983-05-22" "1983-05-22" "1983-05-22" "1983-05-22" "1983-05-22"
## [43101] "1983-05-22" "1983-05-22" "1983-05-22" "1983-05-22" "1983-05-22"
## [43106] "1983-05-22" "1983-05-22" "1983-05-22" "1983-05-22" "1983-05-22"
## [43111] "1983-05-22" "1983-05-22" "1983-05-22" "1983-05-22" "1987-12-14"
## [43116] "1987-12-14" "1987-12-14" "1982-02-05" "1982-02-05" "1982-02-05"
## [43121] "1982-02-05" "1982-02-05" "1982-02-05" "1987-09-08" "1987-09-08"
## [43126] "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08"
## [43131] "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08" "1987-09-08"
## [43136] "1987-09-08" "1987-09-08" "1990-07-21" "1990-07-21" "1990-07-21"
## [43141] "1981-01-10" "1981-01-10" "1981-01-10" "1981-01-10" "1981-01-10"
## [43146] "1981-01-10" "1981-01-10" "1981-01-10" "1981-01-10" "1981-01-10"
## [43151] "1981-01-10" "1981-01-10" "1981-01-10" "1986-10-20" "1986-10-20"
## [43156] "1986-10-20" "1986-10-20" "1986-10-20" "1986-10-20" "1986-10-20"
## [43161] "1986-10-20" "1986-10-20" "1986-10-20" "1986-10-20" "1986-10-20"
## [43166] "1986-10-20" "1986-10-20" "1971-10-06" "1971-10-06" "1971-10-06"
## [43171] "1971-10-06" "1971-10-06" "1971-10-06" "1971-10-06" "1974-06-07"
## [43176] "1974-06-07" "1974-06-07" "1974-06-07" "1974-06-07" "1974-06-07"
## [43181] "1974-06-07" "1974-06-07" "1974-06-07" "1974-06-07" "1981-09-21"
## [43186] "1981-09-21" "1981-09-21" "1981-09-21" "1981-09-21" "1981-09-21"
## [43191] "1981-09-21" "1981-09-21" "1981-09-21" "1981-09-21" "1981-09-21"
## [43196] "1981-09-21" "1981-09-21" "1986-06-29" "1986-06-29" "1983-03-22"
## [43201] "1983-03-22" "1983-03-22" "1983-03-22" "1983-03-22" "1983-03-22"
## [43206] "1983-03-22" "1983-03-22" "1983-03-22" "1983-03-22" "1983-03-22"
## [43211] "1983-03-22" "1983-03-22" "1983-03-22" "1983-03-22" "1983-03-22"
## [43216] "1982-10-10" "1982-10-10" "1982-10-10" "1982-10-10" "1982-10-10"
## [43221] "1982-10-10" "1982-10-10" "1982-10-10" "1982-10-10" "1982-10-10"
## [43226] "1972-01-24" "1972-01-24" "1972-01-24" "1972-01-24" "1972-01-24"
## [43231] "1972-01-24" "1972-01-24" "1982-05-04" "1982-05-04" "1982-05-04"
## [43236] "1974-01-29" "1974-01-29" "1974-01-29" "1974-01-29" "1974-01-29"
## [43241] "1974-01-29" "1974-01-29" "1974-01-29" "1974-01-29" "1974-01-29"
## [43246] "1978-01-11" "1978-01-11" "1978-01-11" "1978-01-11" "1978-01-11"
## [43251] "1978-01-11" "1978-01-11" "1978-01-11" "1978-01-11" "1978-01-11"
## [43256] "1978-01-11" "1978-01-11" "1978-01-11" "1985-02-08" "1985-02-08"
## [43261] "1985-02-08" "1985-02-08" "1985-02-08" "1972-10-14" "1972-10-14"
## [43266] "1972-10-14" "1972-10-14" "1972-10-14" "1984-12-16" "1984-12-16"
## [43271] "1984-12-16" "1984-12-16" "1984-12-16" "1984-12-16" "1984-12-16"
## [43276] "1984-12-16" "1984-12-16" "1984-12-16" "1984-12-16" "1984-12-16"
## [43281] "1984-12-16" "1984-12-16" "1984-12-16" "1984-12-16" "1984-12-16"
## [43286] "1984-12-16" "1984-12-16" "1984-12-16" "1984-12-16" "1984-12-16"
## [43291] "1981-12-10" "1981-12-10" "1981-12-10" "1981-12-10" "1981-12-10"
## [43296] "1981-12-10" "1981-12-10" "1981-12-10" "1981-12-10" "1981-12-10"
## [43301] "1981-12-10" "1981-12-10" "1981-12-10" "1981-12-10" "1981-12-10"
## [43306] "1976-07-19" "1976-07-19" "1976-07-19" "1976-07-19" "1976-07-19"
## [43311] "1976-07-19" "1976-07-19" "1976-07-19" "1983-05-21" "1983-05-21"
## [43316] "1983-05-21" "1983-05-21" "1983-05-21" "1983-05-21" "1983-05-21"
## [43321] "1983-05-21" "1983-05-21" "1983-05-21" "1983-05-21" "1983-05-21"
## [43326] "1983-05-21" "1983-05-21" "1983-05-21" "1981-09-02" "1981-09-02"
## [43331] "1981-09-02" "1981-09-02" "1981-09-02" "1981-09-02" "1981-09-02"
## [43336] "1981-09-02" "1981-09-02" "1981-09-02" "1981-09-02" "1981-09-02"
## [43341] "1981-09-02" "1981-09-02" "1981-09-02" "1981-09-02" "1981-09-02"
## [43346] "1981-09-02" "1981-09-02" "1981-09-02" "1981-03-28" "1981-03-28"
## [43351] "1981-03-28" "1981-03-28" "1981-03-28" "1981-03-28" "1981-03-28"
## [43356] "1981-03-28" "1981-03-28" "1981-03-28" "1981-03-28" "1981-03-28"
## [43361] "1971-04-24" "1971-04-24" "1971-04-24" "1971-04-24" "1971-04-24"
## [43366] "1971-04-24" "1971-04-24" "1971-04-24" "1971-04-24" "1971-04-24"
## [43371] "1971-04-24" "1971-04-24" "1971-04-24" "1971-04-24" "1983-06-24"
## [43376] "1983-06-24" "1983-06-24" "1983-06-24" "1983-06-24" "1983-06-24"
## [43381] "1983-06-24" "1983-06-24" "1983-06-24" "1984-05-29" "1984-05-29"
## [43386] "1984-05-29" "1984-05-29" "1984-05-29" "1984-05-29" "1984-05-29"
## [43391] "1984-05-29" "1984-05-29" "1984-05-29" "1984-05-29" "1984-05-29"
## [43396] "1984-05-29" "1984-05-29" "1984-05-29" "1980-06-20" "1980-06-20"
## [43401] "1980-06-20" "1980-06-20" "1980-06-20" "1990-05-12" "1990-05-12"
## [43406] "1990-05-12" "1990-05-12" "1990-05-12" "1990-05-12" "1990-05-12"
## [43411] "1990-05-12" "1990-05-12" "1990-05-12" "1990-05-12" "1990-05-12"
## [43416] "1990-05-12" "1990-05-12" "1990-05-12" "1976-11-06" "1976-11-06"
## [43421] "1976-11-06" "1976-11-06" "1976-11-06" "1976-11-06" "1976-11-06"
## [43426] "1976-06-23" "1976-06-23" "1976-06-23" "1976-06-23" "1976-06-23"
## [43431] "1976-06-23" "1984-06-19" "1984-06-19" "1984-06-19" "1978-03-25"
## [43436] "1978-03-25" "1978-03-25" "1978-03-25" "1978-03-25" "1971-02-26"
## [43441] "1971-02-26" "1971-02-26" "1971-02-26" "1971-02-26" "1971-02-26"
## [43446] "1971-02-26" "1971-02-26" "1971-02-26" "1971-02-26" "1971-02-26"
## [43451] "1971-02-26" "1971-02-26" "1984-01-02" "1984-01-02" "1984-01-02"
## [43456] "1984-01-02" "1979-03-05" "1979-03-05" "1979-03-05" "1979-03-05"
## [43461] "1979-03-05" "1979-03-05" "1979-03-05" "1979-03-05" "1979-03-05"
## [43466] "1988-03-15" "1988-03-15" "1988-03-15" "1988-03-15" "1988-03-15"
## [43471] "1988-03-15" "1978-12-09" "1978-12-09" "1978-12-09" "1983-10-08"
## [43476] "1983-10-08" "1983-10-08" "1983-10-08" "1983-10-08" "1983-10-08"
## [43481] "1983-10-08" "1983-10-08" "1983-10-08" "1983-10-08" "1983-10-08"
## [43486] "1983-10-08" "1983-10-08" "1983-10-08" "1988-06-14" "1988-06-14"
## [43491] "1988-06-14" "1988-06-14" "1988-06-14" "1988-06-14" "1988-06-14"
## [43496] "1971-01-10" "1971-01-10" "1971-01-10" "1971-01-10" "1985-03-21"
## [43501] "1985-03-21" "1985-03-21" "1985-03-21" "1985-03-21" "1985-03-21"
## [43506] "1985-03-21" "1985-03-21" "1985-03-21" "1985-03-21" "1989-11-20"
## [43511] "1989-11-20" "1989-11-20" "1989-11-20" "1989-11-20" "1989-11-20"
## [43516] "1989-11-20" "1989-11-20" "1989-11-20" "1984-03-19" "1984-03-19"
## [43521] "1984-03-19" "1974-11-05" "1974-11-05" "1974-11-05" "1974-11-05"
## [43526] "1974-11-05" "1974-11-05" "1988-01-15" "1988-01-15" "1988-01-15"
## [43531] "1988-01-15" "1988-01-15" "1988-01-15" "1988-01-15" "1972-02-01"
## [43536] "1972-02-01" "1972-02-01" "1972-02-01" "1972-02-01" "1972-02-01"
## [43541] "1972-02-01" "1972-02-01" "1972-02-01" "1972-02-01" "1972-07-29"
## [43546] "1972-07-29" "1972-07-29" "1972-07-29" "1972-07-29" "1977-10-15"
## [43551] "1977-10-15" "1977-10-15" "1977-10-15" "1977-10-15" "1977-10-15"
## [43556] "1977-10-15" "1977-10-15" "1977-10-15" "1985-11-11" "1985-11-11"
## [43561] "1985-11-11" "1985-11-11" "1985-11-11" "1985-11-11" "1985-11-11"
## [43566] "1985-11-11" "1985-11-11" "1985-11-11" "1985-11-11" "1985-11-11"
## [43571] "1985-11-11" "1985-11-11" "1985-11-11" "1985-11-11" "1985-11-11"
## [43576] "1985-11-11" "1985-11-11" "1975-04-27" "1975-04-27" "1975-04-27"
## [43581] "1975-04-27" "1975-04-27" "1988-08-19" "1988-08-19" "1988-08-19"
## [43586] "1988-08-19" "1988-08-19" "1988-08-19" "1988-08-19" "1988-08-19"
## [43591] "1988-08-19" "1988-08-19" "1988-08-19" "1988-08-19" "1988-08-19"
## [43596] "1970-08-12" "1970-08-12" "1970-08-12" "1970-08-12" "1970-08-12"
## [43601] "1970-08-12" "1986-07-10" "1986-07-10" "1986-07-10" "1986-07-10"
## [43606] "1986-07-10" "1986-07-10" "1986-07-10" "1986-07-10" "1978-11-29"
## [43611] "1978-11-29" "1978-11-29" "1978-11-29" "1978-11-29" "1978-11-29"
## [43616] "1978-11-29" "1978-11-29" "1978-11-29" "1978-11-29" "1978-11-29"
## [43621] "1978-11-29" "1978-11-29" "1978-11-29" "1978-11-29" "1978-11-29"
## [43626] "1978-11-29" "1978-11-29" "1978-11-29" "1978-11-29" "1989-08-14"
## [43631] "1989-08-14" "1989-08-14" "1989-08-14" "1989-08-14" "1989-08-14"
## [43636] "1989-08-14" "1989-08-14" "1989-08-14" "1989-08-14" "1989-08-14"
## [43641] "1989-08-14" "1977-10-14" "1977-10-14" "1977-10-14" "1977-10-14"
## [43646] "1977-10-14" "1976-06-23" "1976-06-23" "1976-06-23" "1976-06-23"
## [43651] "1976-06-23" "1976-06-23" "1976-06-23" "1976-06-23" "1976-06-23"
## [43656] "1976-06-23" "1976-06-23" "1976-06-23" "1976-06-25" "1976-06-25"
## [43661] "1976-06-25" "1976-06-25" "1976-06-25" "1971-03-09" "1971-03-09"
## [43666] "1971-03-09" "1971-03-09" "1976-03-20" "1976-03-20" "1984-05-29"
## [43671] "1984-05-29" "1984-05-29" "1984-05-29" "1984-05-29" "1984-05-29"
## [43676] "1984-05-29" "1987-09-18" "1987-09-18" "1987-09-18" "1987-08-07"
## [43681] "1987-08-07" "1987-08-07" "1987-08-07" "1987-08-07" "1987-08-07"
## [43686] "1987-08-07" "1987-08-07" "1987-08-07" "1987-08-07" "1987-08-07"
## [43691] "1976-10-08" "1976-10-08" "1976-10-08" "1976-10-08" "1976-10-08"
## [43696] "1976-10-08" "1976-10-08" "1976-10-08" "1976-10-08" "1976-10-08"
## [43701] "1976-10-08" "1976-10-08" "1976-10-08" "1976-10-08" "1976-10-08"
## [43706] "1976-10-08" "1976-10-08" "1976-10-08" "1976-10-08" "1976-10-08"
## [43711] "1976-10-08" "1977-03-11" "1977-03-11" "1977-03-11" "1977-03-11"
## [43716] "1977-03-11" "1971-10-21" "1971-10-21" "1971-10-21" "1971-10-21"
## [43721] "1971-10-21" "1970-01-18" "1970-01-18" "1970-01-18" "1970-01-18"
## [43726] "1970-01-18" "1970-01-18" "1970-01-18" "1970-01-18" "1970-01-18"
## [43731] "1970-01-18" "1970-01-18" "1970-01-18" "1970-01-18" "1970-01-18"
## [43736] "1970-01-18" "1970-01-18" "1970-01-18" "1970-01-18" "1970-01-18"
## [43741] "1970-01-18" "1980-04-12" "1980-04-12" "1980-04-12" "1980-04-12"
## [43746] "1980-04-12" "1980-04-12" "1980-04-12" "1978-07-20" "1978-07-20"
## [43751] "1978-07-20" "1978-07-20" "1978-07-20" "1979-02-19" "1979-02-19"
## [43756] "1979-02-19" "1979-02-19" "1979-02-19" "1979-02-19" "1979-02-19"
## [43761] "1979-02-19" "1979-02-19" "1979-02-19" "1979-02-19" "1979-01-26"
## [43766] "1979-01-26" "1979-01-26" "1979-01-26" "1979-01-26" "1979-01-26"
## [43771] "1991-10-14" "1991-10-14" "1991-10-14" "1991-10-14" "1991-10-14"
## [43776] "1991-10-14" "1991-10-14" "1991-10-14" "1991-10-14" "1977-08-02"
## [43781] "1977-08-02" "1977-08-02" "1977-08-02" "1985-06-11" "1985-06-11"
## [43786] "1985-06-11" "1985-06-11" "1985-06-11" "1985-06-11" "1972-11-08"
## [43791] "1972-11-08" "1972-11-08" "1972-11-08" "1972-11-08" "1972-11-08"
## [43796] "1972-11-08" "1972-11-08" "1972-11-08" "1972-11-08" "1987-03-13"
## [43801] "1987-03-13" "1987-03-13" "1987-03-13" "1987-03-13" "1987-03-13"
## [43806] "1987-03-13" "1987-03-13" "1987-03-13" "1989-06-27" "1989-06-27"
## [43811] "1989-06-27" "1989-06-27" "1989-06-27" "1973-03-10" "1973-03-10"
## [43816] "1973-03-10" "1973-03-10" "1973-03-10" "1973-03-10" "1987-06-06"
## [43821] "1987-06-06" "1987-06-06" "1987-06-06" "1987-06-06" "1987-06-06"
## [43826] "1987-06-06" "1987-06-06" "1987-06-06" "1987-06-06" "1987-06-06"
## [43831] "1987-06-06" "1987-06-06" "1987-06-06" "1987-06-06" "1987-06-06"
## [43836] "1987-06-06" "1983-09-01" "1983-09-01" "1983-09-01" "1983-09-01"
## [43841] "1983-09-01" "1992-12-04" "1992-12-04" "1992-12-04" "1992-12-04"
## [43846] "1992-12-04" "1992-12-04" "1992-12-04" "1992-12-04" "1992-12-04"
## [43851] "1992-12-04" "1992-12-04" "1992-12-04" "1992-12-04" "1992-12-04"
## [43856] "1992-12-04" "1980-04-22" "1980-04-22" "1980-04-22" "1980-04-22"
## [43861] "1975-04-25" "1975-04-25" "1985-12-05" "1985-12-05" "1985-12-05"
## [43866] "1985-12-05" "1985-12-05" "1985-12-05" "1985-12-05" "1985-12-05"
## [43871] "1985-12-05" "1985-12-05" "1980-09-17" "1980-09-17" "1980-09-17"
## [43876] "1980-09-17" "1980-09-17" "1980-09-17" "1980-09-17" "1980-09-17"
## [43881] "1980-09-17" "1980-09-17" "1980-09-17" "1977-12-03" "1977-12-03"
## [43886] "1974-02-27" "1974-02-27" "1974-02-27" "1974-02-27" "1974-02-27"
## [43891] "1974-02-27" "1974-02-27" "1974-02-27" "1974-02-27" "1977-08-16"
## [43896] "1977-08-16" "1977-08-16" "1977-08-16" "1977-08-16" "1977-08-16"
## [43901] "1977-08-16" "1977-08-16" "1977-08-16" "1977-08-16" "1977-08-16"
## [43906] "1977-08-16" "1977-08-16" "1977-08-16" "1978-08-05" "1978-08-05"
## [43911] "1978-08-05" "1978-08-05" "1978-08-05" "1978-08-05" "1978-08-05"
## [43916] "1973-11-13" "1973-11-13" "1973-11-13" "1973-11-13" "1973-11-13"
## [43921] "1973-11-13" "1973-11-13" "1973-11-13" "1973-11-13" "1973-11-13"
## [43926] "1973-11-13" "1973-11-13" "1973-11-13" "1973-11-13" "1973-11-13"
## [43931] "1973-11-13" "1973-11-13" "1973-11-13" "1985-09-16" "1985-09-16"
## [43936] "1981-02-14" "1981-02-14" "1981-02-14" "1981-02-14" "1981-02-14"
## [43941] "1981-02-14" "1981-02-14" "1981-02-14" "1981-02-14" "1985-10-01"
## [43946] "1985-10-01" "1985-10-01" "1978-04-15" "1978-04-15" "1978-04-15"
## [43951] "1978-04-15" "1978-04-15" "1978-04-15" "1978-04-15" "1978-04-15"
## [43956] "1978-04-15" "1978-04-15" "1978-04-15" "1978-04-15" "1978-04-15"
## [43961] "1978-04-15" "1978-04-15" "1986-07-26" "1986-07-26" "1986-07-26"
## [43966] "1986-07-26" "1986-07-26" "1986-07-26" "1986-07-26" "1986-07-26"
## [43971] "1986-07-26" "1986-07-26" "1986-07-26" "1986-07-26" "1986-07-26"
## [43976] "1986-07-26" "1986-07-26" "1986-07-26" "1986-07-26" "1986-07-26"
## [43981] "1986-07-26" "1984-10-01" "1984-10-01" "1984-10-01" "1986-08-18"
## [43986] "1986-08-18" "1986-08-18" "1986-08-18" "1986-08-18" "1986-08-18"
## [43991] "1986-08-18" "1986-08-18" "1978-11-06" "1978-11-06" "1978-11-06"
## [43996] "1978-11-06" "1978-11-06" "1983-11-08" "1983-11-08" "1988-04-01"
## [44001] "1988-04-01" "1988-04-01" "1988-04-01" "1988-04-01" "1988-04-01"
## [44006] "1988-04-01" "1988-04-01" "1988-04-01" "1988-04-01" "1988-04-01"
## [44011] "1988-04-01" "1988-04-01" "1988-04-01" "1988-04-01" "1988-04-01"
## [44016] "1988-04-01" "1988-04-01" "1988-04-01" "1988-04-01" "1972-07-11"
## [44021] "1972-07-11" "1972-07-11" "1972-07-11" "1983-12-16" "1983-12-16"
## [44026] "1983-12-16" "1983-12-16" "1983-12-16" "1983-12-16" "1983-12-16"
## [44031] "1974-01-21" "1974-01-21" "1974-01-21" "1974-01-21" "1975-04-17"
## [44036] "1975-04-17" "1975-04-17" "1975-04-17" "1975-04-17" "1975-04-17"
## [44041] "1972-06-23" "1972-06-23" "1972-06-23" "1972-06-23" "1972-06-23"
## [44046] "1972-06-23" "1972-06-23" "1972-06-23" "1972-06-23" "1972-06-23"
## [44051] "1972-06-23" "1972-06-23" "1972-06-23" "1972-06-23" "1987-09-10"
## [44056] "1987-09-10" "1987-09-10" "1987-09-10" "1987-09-10" "1987-09-10"
## [44061] "1987-09-10" "1987-09-10" "1990-11-22" "1990-11-22" "1973-03-26"
## [44066] "1973-03-26" "1973-03-26" "1973-03-26" "1973-03-26" "1973-03-26"
## [44071] "1973-03-26" "1973-03-26" "1973-03-26" "1973-03-26" "1973-03-26"
## [44076] "1980-05-29" "1980-05-29" "1982-03-23" "1982-03-23" "1982-03-23"
## [44081] "1982-03-23" "1982-03-23" "1982-03-23" "1975-10-17" "1975-10-17"
## [44086] "1975-10-17" "1975-10-17" "1975-10-17" "1975-10-17" "1975-10-17"
## [44091] "1975-10-17" "1975-10-17" "1975-10-17" "1975-10-17" "1971-11-29"
## [44096] "1971-11-29" "1971-11-29" "1975-09-08" "1975-09-08" "1975-09-08"
## [44101] "1971-08-18" "1971-08-18" "1971-08-18" "1971-08-18" "1971-08-18"
## [44106] "1981-08-16" "1981-08-16" "1971-11-04" "1971-11-04" "1971-11-04"
## [44111] "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04"
## [44116] "1971-11-04" "1971-11-04" "1971-11-04" "1971-11-04" "1971-01-12"
## [44121] "1971-01-12" "1971-01-12" "1971-01-12" "1971-01-12" "1971-01-12"
## [44126] "1971-01-12" "1971-01-12" "1975-06-06" "1975-06-06" "1975-06-06"
## [44131] "1975-06-06" "1975-06-06" "1975-06-06" "1975-06-06" "1975-06-06"
## [44136] "1975-06-06" "1975-06-06" "1975-06-06" "1975-06-06" "1975-06-06"
## [44141] "1975-06-06" "1984-12-28" "1984-12-28" "1984-12-28" "1984-12-28"
## [44146] "1984-12-28" "1984-12-28" "1984-12-28" "1984-12-28" "1984-12-28"
## [44151] "1984-12-28" "1984-12-28" "1984-12-28" "1984-12-28" "1984-12-28"
## [44156] "1984-12-28" "1984-12-28" "1984-12-28" "1984-12-28" "1984-12-28"
## [44161] "1984-12-28" "1989-06-13" "1989-06-13" "1989-06-13" "1989-06-13"
## [44166] "1989-06-13" "1989-06-13" "1989-06-13" "1989-06-13" "1989-06-13"
## [44171] "1989-06-13" "1989-06-13" "1989-06-13" "1989-06-13" "1989-07-05"
## [44176] "1989-07-05" "1989-07-05" "1989-07-05" "1989-07-05" "1989-07-05"
## [44181] "1989-07-05" "1989-07-05" "1989-07-05" "1989-07-05" "1989-07-05"
## [44186] "1989-07-05" "1989-07-05" "1989-07-05" "1989-07-05" "1989-07-05"
## [44191] "1989-07-05" "1989-07-05" "1970-11-23" "1970-11-23" "1970-11-23"
## [44196] "1970-11-23" "1970-11-23" "1970-11-23" "1970-11-23" "1970-11-23"
## [44201] "1970-11-23" "1970-11-23" "1970-11-23" "1970-11-23" "1970-11-23"
## [44206] "1970-11-23" "1975-09-19" "1975-09-19" "1975-09-19" "1975-09-19"
## [44211] "1975-09-19" "1975-09-19" "1975-09-19" "1975-09-19" "1975-09-19"
## [44216] "1982-04-25" "1982-04-25" "1982-04-25" "1982-04-25" "1982-04-25"
## [44221] "1988-12-22" "1988-12-22" "1988-12-22" "1988-12-22" "1988-12-22"
## [44226] "1988-12-22" "1988-12-22" "1988-12-22" "1990-09-29" "1990-09-29"
## [44231] "1990-09-29" "1990-09-29" "1983-04-08" "1983-04-08" "1983-04-08"
## [44236] "1983-04-08" "1983-04-08" "1983-04-08" "1983-04-08" "1983-04-08"
## [44241] "1983-04-08" "1983-04-08" "1983-04-08" "1983-04-08" "1983-04-08"
## [44246] "1983-04-08" "1983-04-08" "1983-04-08" "1983-04-08" "1983-04-08"
## [44251] "1983-04-08" "1983-04-08" "1983-04-08" "1970-09-02" "1970-09-02"
## [44256] "1970-09-02" "1970-09-02" "1970-09-02" "1970-09-02" "1970-09-02"
## [44261] "1973-04-06" "1973-04-06" "1973-04-06" "1973-04-06" "1973-04-06"
## [44266] "1988-03-08" "1988-03-08" "1988-03-08" "1988-03-08" "1988-03-08"
## [44271] "1988-03-08" "1988-03-08" "1986-01-28" "1986-01-28" "1986-01-28"
## [44276] "1986-01-28" "1986-01-28" "1979-06-12" "1979-06-12" "1979-06-12"
## [44281] "1979-06-12" "1979-06-12" "1979-06-12" "1979-06-12" "1979-06-12"
## [44286] "1979-06-12" "1979-06-12" "1979-06-12" "1979-06-12" "1979-06-12"
## [44291] "1979-06-12" "1979-06-12" "1979-06-12" "1989-12-22" "1989-12-22"
## [44296] "1989-12-22" "1989-12-22" "1989-12-22" "1980-05-13" "1980-05-13"
## [44301] "1980-05-13" "1980-05-13" "1980-05-13" "1980-05-13" "1980-05-13"
## [44306] "1980-05-13" "1980-05-13" "1980-05-13" "1980-05-13" "1980-05-13"
## [44311] "1982-08-08" "1982-08-08" "1982-08-08" "1982-08-08" "1982-08-08"
## [44316] "1982-08-08" "1982-08-08" "1983-01-13" "1983-01-13" "1983-01-13"
## [44321] "1983-01-13" "1983-01-13" "1983-01-13" "1983-01-13" "1983-01-13"
## [44326] "1983-01-13" "1991-12-04" "1991-12-04" "1991-12-04" "1977-08-06"
## [44331] "1977-08-06" "1977-08-06" "1977-08-06" "1977-08-06" "1977-08-06"
## [44336] "1977-08-06" "1977-08-06" "1977-08-06" "1979-09-08" "1979-09-08"
## [44341] "1979-09-08" "1979-09-08" "1979-09-08" "1979-09-08" "1979-09-08"
## [44346] "1979-09-08" "1979-09-08" "1979-09-08" "1979-09-08" "1970-01-16"
## [44351] "1970-01-16" "1970-01-16" "1970-01-16" "1989-05-05" "1989-05-05"
## [44356] "1989-05-05" "1989-05-05" "1986-06-13" "1986-06-13" "1986-06-13"
## [44361] "1986-06-13" "1986-06-13" "1986-06-13" "1986-06-13" "1986-06-13"
## [44366] "1986-06-13" "1980-05-10" "1980-05-10" "1980-05-10" "1992-05-24"
## [44371] "1992-05-24" "1992-05-24" "1992-05-24" "1992-05-24" "1992-05-24"
## [44376] "1992-05-24" "1976-12-04" "1976-12-04" "1976-12-04" "1976-12-04"
## [44381] "1991-06-19" "1991-06-19" "1991-06-19" "1991-06-19" "1991-06-19"
## [44386] "1991-06-19" "1976-11-05" "1976-11-05" "1976-11-05" "1976-11-05"
## [44391] "1976-11-05" "1976-11-05" "1976-11-05" "1976-11-05" "1976-11-05"
## [44396] "1976-11-05" "1976-11-05" "1976-11-05" "1985-05-10" "1985-05-10"
## [44401] "1985-05-10" "1985-05-10" "1985-05-10" "1985-05-10" "1985-05-10"
## [44406] "1970-11-05" "1970-11-05" "1970-11-05" "1970-11-05" "1970-11-05"
## [44411] "1970-11-05" "1987-09-12" "1987-09-12" "1987-09-12" "1987-09-12"
## [44416] "1987-09-12" "1987-09-12" "1987-09-12" "1987-09-12" "1992-04-29"
## [44421] "1992-04-29" "1992-04-29" "1992-04-29" "1992-04-29" "1992-04-29"
## [44426] "1992-04-29" "1992-04-29" "1992-04-29" "1980-06-20" "1980-06-20"
## [44431] "1980-06-20" "1980-06-20" "1980-06-20" "1980-06-20" "1980-06-20"
## [44436] "1980-06-20" "1974-02-09" "1974-02-09" "1974-02-09" "1971-03-16"
## [44441] "1971-03-16" "1971-03-16" "1971-03-16" "1992-05-20" "1992-05-20"
## [44446] "1992-05-20" "1992-05-20" "1992-05-20" "1992-05-20" "1992-05-20"
## [44451] "1992-05-20" "1992-05-20" "1992-05-20" "1992-05-20" "1992-05-20"
## [44456] "1992-05-20" "1992-05-20" "1992-05-20" "1971-05-27" "1971-05-27"
## [44461] "1971-05-27" "1971-05-27" "1971-05-27" "1971-05-27" "1971-05-27"
## [44466] "1971-05-27" "1971-05-27" "1971-05-27" "1971-05-27" "1982-09-26"
## [44471] "1982-09-26" "1982-09-26" "1982-09-26" "1982-09-26" "1982-09-26"
## [44476] "1982-09-26" "1982-09-26" "1982-09-26" "1982-09-26" "1982-09-26"
## [44481] "1984-01-23" "1984-01-23" "1984-01-23" "1984-01-23" "1984-01-23"
## [44486] "1984-01-23" "1984-01-23" "1984-01-23" "1984-01-23" "1984-01-23"
## [44491] "1987-02-27" "1987-02-27" "1987-02-27" "1987-02-27" "1987-02-27"
## [44496] "1987-02-27" "1987-02-27" "1987-02-27" "1987-02-27" "1987-02-27"
## [44501] "1987-02-27" "1987-02-27" "1987-02-27" "1987-02-27" "1987-02-27"
## [44506] "1987-02-27" "1977-05-16" "1977-05-16" "1977-05-16" "1977-05-16"
## [44511] "1977-05-16" "1977-05-16" "1977-05-16" "1977-05-16" "1979-01-10"
## [44516] "1979-01-10" "1979-01-10" "1979-01-10" "1979-01-10" "1979-01-10"
## [44521] "1979-01-10" "1979-01-10" "1979-01-10" "1979-01-10" "1983-02-03"
## [44526] "1983-02-03" "1983-02-03" "1983-02-03" "1983-02-03" "1983-02-03"
## [44531] "1983-02-03" "1976-11-01" "1976-11-01" "1976-11-01" "1976-11-01"
## [44536] "1976-11-01" "1976-11-01" "1976-11-01" "1976-11-01" "1974-05-06"
## [44541] "1974-05-06" "1974-05-06" "1974-05-06" "1974-05-06" "1974-05-06"
## [44546] "1974-05-06" "1974-05-06" "1984-07-04" "1984-07-04" "1980-12-29"
## [44551] "1980-12-29" "1980-12-29" "1980-12-29" "1980-12-29" "1980-12-29"
## [44556] "1980-12-29" "1980-12-29" "1980-12-29" "1980-12-29" "1980-12-29"
## [44561] "1980-12-29" "1980-12-29" "1980-12-29" "1987-06-08" "1987-06-08"
## [44566] "1987-06-08" "1987-06-08" "1987-06-08" "1987-06-08" "1987-06-08"
## [44571] "1987-06-08" "1987-06-08" "1987-06-08" "1987-06-08" "1987-11-18"
## [44576] "1987-11-18" "1987-11-18" "1987-11-18" "1987-11-18" "1987-11-18"
## [44581] "1987-11-18" "1987-11-18" "1987-11-18" "1987-11-18" "1987-11-18"
## [44586] "1987-11-18" "1987-11-18" "1986-04-06" "1986-04-06" "1986-04-06"
## [44591] "1986-04-06" "1986-04-06" "1986-04-06" "1986-04-06" "1986-04-06"
## [44596] "1986-04-06" "1979-07-10" "1979-07-10" "1979-07-10" "1979-07-10"
## [44601] "1979-07-10" "1979-07-10" "1970-12-04" "1970-12-04" "1970-12-04"
## [44606] "1973-01-24" "1973-01-24" "1973-01-24" "1973-01-24" "1973-01-24"
## [44611] "1973-01-24" "1973-01-24" "1973-01-24" "1973-01-24" "1978-07-15"
## [44616] "1978-07-15" "1978-07-15" "1978-07-15" "1978-07-15" "1978-07-15"
## [44621] "1984-12-22" "1984-12-22" "1984-12-22" "1984-12-22" "1984-12-22"
## [44626] "1984-12-22" "1984-12-22" "1973-09-13" "1973-09-13" "1988-05-23"
## [44631] "1988-05-23" "1988-05-23" "1988-05-23" "1988-05-23" "1984-06-04"
## [44636] "1984-06-04" "1984-06-04" "1984-06-04" "1988-03-08" "1988-03-08"
## [44641] "1988-03-08" "1988-03-08" "1988-03-08" "1988-03-08" "1988-03-08"
## [44646] "1988-03-08" "1988-03-08" "1988-03-08" "1988-03-08" "1988-03-08"
## [44651] "1988-03-08" "1988-03-08" "1988-03-08" "1988-03-08" "1988-03-08"
## [44656] "1988-03-08" "1985-12-01" "1985-12-01" "1985-12-01" "1985-12-01"
## [44661] "1985-12-01" "1985-12-01" "1985-12-01" "1985-12-01" "1985-12-01"
## [44666] "1985-12-01" "1985-12-01" "1985-12-01" "1985-12-01" "1985-12-01"
## [44671] "1985-10-04" "1985-10-04" "1985-10-04" "1985-10-04" "1985-10-04"
## [44676] "1985-10-04" "1985-10-04" "1985-10-04" "1985-10-04" "1985-10-04"
## [44681] "1985-10-04" "1985-10-04" "1985-10-04" "1985-10-04" "1979-10-28"
## [44686] "1979-10-28" "1979-10-28" "1979-10-28" "1985-09-19" "1985-09-19"
## [44691] "1985-09-19" "1985-09-19" "1985-09-19" "1985-09-19" "1985-09-19"
## [44696] "1985-09-19" "1985-09-19" "1989-12-02" "1989-12-02" "1989-12-02"
## [44701] "1989-12-02" "1989-12-02" "1989-12-02" "1989-12-02" "1989-12-02"
## [44706] "1980-05-26" "1980-05-26" "1980-05-26" "1978-11-15" "1978-11-15"
## [44711] "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15"
## [44716] "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15"
## [44721] "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15" "1978-11-15"
## [44726] "1978-11-15" "1978-11-15" "1973-10-26" "1973-10-26" "1973-10-26"
## [44731] "1973-10-26" "1973-10-26" "1973-10-26" "1973-10-26" "1973-10-26"
## [44736] "1973-10-26" "1973-10-26" "1989-09-23" "1989-09-23" "1988-11-16"
## [44741] "1988-11-16" "1988-11-16" "1988-11-16" "1988-11-16" "1988-11-16"
## [44746] "1988-11-16" "1988-11-16" "1990-06-28" "1990-06-28" "1990-06-28"
## [44751] "1990-06-28" "1990-06-28" "1990-06-28" "1984-02-18" "1984-02-18"
## [44756] "1984-02-18" "1984-02-18" "1984-02-18" "1984-02-18" "1984-02-18"
## [44761] "1984-02-18" "1984-02-18" "1984-02-18" "1984-02-18" "1973-03-17"
## [44766] "1973-03-17" "1973-03-17" "1973-03-17" "1973-03-17" "1973-03-17"
## [44771] "1973-03-17" "1973-03-17" "1973-03-17" "1972-06-08" "1972-06-08"
## [44776] "1972-06-08" "1972-06-08" "1989-03-16" "1989-03-16" "1989-03-16"
## [44781] "1989-03-16" "1989-03-16" "1989-03-16" "1989-03-16" "1991-01-04"
## [44786] "1991-01-04" "1988-09-03" "1988-09-03" "1988-09-03" "1988-09-03"
## [44791] "1988-09-03" "1979-02-01" "1979-02-01" "1979-02-01" "1979-02-01"
## [44796] "1979-02-01" "1979-02-01" "1979-02-01" "1979-02-01" "1979-02-01"
## [44801] "1979-02-01" "1979-02-01" "1981-01-07" "1981-01-07" "1981-01-07"
## [44806] "1981-01-07" "1981-01-07" "1981-01-07" "1970-06-25" "1970-06-25"
## [44811] "1970-06-25" "1970-06-25" "1970-06-25" "1970-06-25" "1970-06-25"
## [44816] "1970-06-25" "1970-06-25" "1970-06-25" "1970-06-25" "1970-06-25"
## [44821] "1970-06-25" "1970-06-25" "1970-06-25" "1970-06-25" "1984-10-19"
## [44826] "1984-10-19" "1984-10-19" "1984-10-19" "1982-07-20" "1982-07-20"
## [44831] "1982-07-20" "1982-07-20" "1982-07-20" "1982-07-20" "1982-07-20"
## [44836] "1982-07-20" "1970-05-02" "1970-05-02" "1970-05-02" "1970-05-02"
## [44841] "1970-05-02" "1970-05-02" "1970-05-02" "1970-05-02" "1970-05-02"
## [44846] "1970-05-02" "1970-05-02" "1970-05-02" "1970-05-02" "1970-05-02"
## [44851] "1970-05-02" "1970-05-02" "1970-05-02" "1970-05-02" "1970-05-02"
## [44856] "1970-05-02" "1970-05-02" "1970-05-02" "1970-05-02" "1970-05-02"
## [44861] "1970-05-02" "1991-09-14" "1991-09-14" "1977-03-09" "1977-03-09"
## [44866] "1977-03-09" "1977-03-09" "1977-03-09" "1977-03-09" "1977-03-09"
## [44871] "1977-03-09" "1977-03-09" "1977-03-09" "1977-03-09" "1977-03-09"
## [44876] "1977-03-09" "1977-03-09" "1977-03-09" "1977-03-09" "1977-03-09"
## [44881] "1977-03-09" "1977-03-09" "1977-03-09" "1987-10-25" "1987-10-25"
## [44886] "1987-10-25" "1987-10-25" "1987-10-25" "1987-10-25" "1987-10-25"
## [44891] "1987-10-25" "1987-10-25" "1973-03-21" "1973-03-21" "1973-03-21"
## [44896] "1973-03-21" "1973-03-21" "1973-03-21" "1973-03-21" "1973-03-21"
## [44901] "1973-03-21" "1973-03-21" "1973-03-21" "1973-03-21" "1973-03-21"
## [44906] "1973-03-21" "1973-06-06" "1973-06-06" "1990-01-01" "1990-01-01"
## [44911] "1990-01-01" "1990-01-01" "1990-01-01" "1990-01-01"
library(eeptools)
Customer_Final$Age <- floor(age_calc(Customer_Final$DOB,enddate = Sys.Date(), units = "years"))

library(dplyr)

age1 <-Customer_Final%>% filter( between(Age, 25, 35))%>% group_by(prod_cat)%>%summarise(Total_Amount =sum(total_amt,na.rm = TRUE))

age1
#b. What was the total amount spent by these customers between 1st Jan, 2014 to 1st Mar, 2014?

age2<- Customer_Final%>%filter(between(Age, 25, 35))
age2
age2%>%filter(tran_date >= "2014-01-01", tran_date <= "2014-03-01")%>%summarise(Total_Amount =sum(total_amt,na.rm = TRUE))